Skip to content

Commit 79c90c9

Browse files
NO-SNOW: Mergeback release-v1.39.1 (#3842)
Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
1 parent 785a680 commit 79c90c9

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#### Bug Fixes
88

99
- Fixed a bug that `DataFrame.limit()` fail if there is parameter binding in the executed SQL when used in non-stored-procedure/udxf environment.
10-
- Added an experimental fix for a bug in schema query generation that could cause invalid sql to be genrated when using nested structured types.
1110

1211
#### New Features
1312

@@ -140,6 +139,16 @@
140139
- When hybrid execution is enabled, `pd.merge`, `pd.concat`, `DataFrame.merge`, and `DataFrame.join` may now move arguments to backends other than those among the function arguments.
141140
- Improved performance of `DataFrame.to_snowflake` and `pd.to_snowflake(dataframe)` for large data by uploading data via a parquet file. You can control the dataset size at which Snowpark pandas switches to parquet with the variable `modin.config.PandasToSnowflakeParquetThresholdBytes`.
142141

142+
## 1.39.1 (2025-09-25)
143+
144+
### Snowpark Python API Updates
145+
146+
#### Bug Fixes
147+
148+
149+
- Added an experimental fix for a bug in schema query generation that could cause invalid sql to be generated when using nested structured types.
150+
151+
143152
## 1.39.0 (2025-09-17)
144153

145154
### Snowpark Python API Updates

recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "snowflake-snowpark-python" %}
2-
{% set version = "1.39.0" %}
2+
{% set version = "1.39.1" %}
33
{% set noarch_build = (os.environ.get('SNOWFLAKE_SNOWPARK_PYTHON_NOARCH_BUILD', 'false')) == 'true' %}
44
{% set build_number = os.environ.get('SNOWFLAKE_SNOWPARK_PYTHON_BUILD_NUMBER', 0) %}
55

src/snowflake/snowpark/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
# Update this for the versions
5-
VERSION = (1, 39, 0)
5+
VERSION = (1, 39, 1)

0 commit comments

Comments
 (0)