Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-1846098: v1.26.0 release preparation #2715

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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)
Loading