Skip to content

Commit

Permalink
SNOW-1846098: v1.26.0 release preparation (#2715)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-aling authored Dec 5, 2024
1 parent a40e6dd commit 86d5c66
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
16 changes: 3 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.26.0 (TBD)
## 1.26.0 (2024-12-05)

### Snowpark Python API Updates

Expand Down Expand Up @@ -51,7 +51,6 @@
dynamic pivot is now generally available.
- Fixed a bug in `session.read.options` where `False` Boolean values were incorrectly parsed as `True` in the generated file format.


#### Dependency Updates

- Added a runtime dependency on `python-dateutil`.
Expand All @@ -71,24 +70,15 @@
- Added partial support for the dataframe interchange protocol method
`DataFrame.__dataframe__()`.

#### Dependency Updates

#### Bug Fixes
- Fixed a bug in `df.loc` where setting a single column from a series results in unexpected `None` values.

- Fixed a bug in `df.loc` where setting a single column from a series results in unexpected `None` values.

#### Improvements

- Use UNPIVOT INCLUDE NULLS for unpivot operations in pandas instead of sentinel values.
- Improved documentation for pd.read_excel.

### Snowpark Local Testing Updates

#### New Features


#### Bug Fixes


## 1.25.0 (2024-11-14)

### Snowpark Python API Updates
Expand Down
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "snowflake-snowpark-python" %}
{% set version = "1.25.0" %}
{% set version = "1.26.0" %}
{% set noarch_build = (os.environ.get('SNOWFLAKE_SNOWPARK_PYTHON_NOARCH_BUILD', 'false')) == 'true' %}

package:
Expand Down Expand Up @@ -33,7 +33,7 @@ requirements:
run:
- python
- cloudpickle >=1.6.0,<=2.2.1,!=2.1.0,!=2.2.0
- snowflake-connector-python >=3.10.0,<4.0.0
- snowflake-connector-python >=3.12.0,<4.0.0
- typing-extensions >=4.1.0,<5.0.0
# need to pin libffi because of problems in cryptography.
# This might no longer hold true but keep it just to avoid it from biting us again
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/snowpark/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

# Update this for the versions
VERSION = (1, 25, 0)
VERSION = (1, 26, 0)

0 comments on commit 86d5c66

Please sign in to comment.