Merged
Conversation
neomatamune
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release Notes - CosmoTech Acceleration Library v2.3.0
Release Date: April 2026
Overview
Version 2.3.0 introduces a new input collection framework for lazily resolving datasets, workspace files, and parameters, as well as native Parquet support in the Store and a new CLI command. This release also includes several important bug fixes for PostgreSQL metadata management and foreign key constraint handling.
✨ New Features
Input Collector Framework
InputCollectorabstraction (cosmotech/coal/utils/input_collector.py) — Provides a unified interface for lazily resolving simulation inputs from environment-configured pathsDatasetCollector— Resolves dataset files by name from the configured dataset pathWorkspaceCollector— Resolves workspace files from the configured workspace pathParameterCollector— Resolves parameter values by name from the configured parameters pathENVIRONMENT_INPUT_COLLECTORsingleton — A ready-to-use collector instance pre-configured from environment variablesParquet Store Support
store_parquet_file— Reads a.parquetfile into aStoretable with sanitized column namesconvert_store_table_to_parquet— Exports aStoretable to a.parquetfileload-parquet-folderCLI command — Newcsm-datacommand that loads all.parquetfiles from a folder into the Store (options:--store-folder,--parquet-folder)Configuration Enhancements
outputandtmpCosmo environment variable mappings to the configuration object🔧 Improvements
Dataset API
part_nameis now derived from the file name without its extension (Path(file_name).stem), producing cleaner part identifiers🐛 Bug Fixes
PostgreSQL — Runner Metadata
add_foreign_keymethod drops any pre-existingmetadataconstraint before re-adding it (DROP CONSTRAINT IF EXISTS metadata)ADD CONSTRAINTSQL syntax — Corrected malformedALTER TABLEstatement inadd_foreign_keyON DELETE CASCADEto the runner metadata foreign key to automatically clean up dependent rowsautocommitflag —add_foreign_keynow usesautocommit=Falseto properly participate in transactionsidbefore inserting to avoid conflicts with theUNIQUEconstraint onlast_csm_run_idUNIQUEconstraint onlast_csm_run_idin the runner metadata tableStore
execute_querywith empty parameters — Queries with no bind parameters no longer raise an errorCode Quality
csv.py,native_python.py,pandas.py,parquet.py, andpyarrow.pystore modules following Copilot review🔄 Breaking Changes
None. This release maintains backward compatibility with version 2.2.x.