Skip to content

Commit aa998d5

Browse files
authored
Merge branch 'main' into jkew/apply.axis.1.row.index.0
2 parents 7a6161b + 7412bf4 commit aa998d5

File tree

142 files changed

+1541
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+1541
-198
lines changed

CHANGELOG.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.42.0 (YYYY-MM-DD)
3+
## 1.43.0 (YYYY-MM-DD)
44

55
### Snowpark Python API Updates
66

@@ -58,9 +58,41 @@
5858
- `str.lower`
5959
- `str.upper`
6060
- `str.title`
61-
61+
- `str.match`
62+
- `str.capitalize`
63+
- `str.__getitem__`
64+
- `str.center`
65+
- `str.count`
66+
- `str.get`
67+
- `str.pad`
68+
- `str.len`
69+
- `str.ljust`
70+
- `str.rjust`
71+
- `str.split`
72+
- `str.replace`
73+
- `str.strip`
74+
- `str.lstrip`
75+
- `str.rstrip`
76+
- `str.translate`
77+
- `dt.tz_localize`
78+
- `dt.tz_convert`
79+
- `dt.ceil`
80+
- `dt.round`
81+
- `dt.floor`
82+
- `dt.normalize`
83+
- `dt.month_name`
84+
- `dt.day_name`
85+
- `dt.strftime`
6286
- Make faster pandas disabled by default (opt-in instead of opt-out).
6387

88+
## 1.42.0 (2025-10-28)
89+
90+
### Snowpark Python API Updates
91+
92+
#### New Features
93+
94+
- Snowpark python DB-api is now generally available. Access this feature with `DataFrameReader.dbapi()` to read data from a database table or query into a DataFrame using a DBAPI connection.
95+
6496
## 1.41.0 (2025-10-23)
6597

6698
### Snowpark Python API Updates
@@ -157,6 +189,11 @@
157189
- `skew()` with `axis=1` or `numeric_only=False` parameters
158190
- `round()` with `decimals` parameter as a Series
159191
- `corr()` with `method!=pearson` parameter
192+
- `df.groupby()` with `axis=1`, `by!=None and level!=None`, or by containing any non-pandas hashable labels.
193+
- `groupby_fillna()` with `downcast` parameter
194+
- `groupby_first()` with `min_count>1`
195+
- `groupby_last()` with `min_count>1`
196+
- `shift()` with `freq` parameter
160197
- Set `cte_optimization_enabled` to True for all Snowpark pandas sessions.
161198
- Add support for the following in faster pandas:
162199
- `isin`

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.41.0" %}
2+
{% set version = "1.42.0" %}
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

0 commit comments

Comments
 (0)