Skip to content

Commit 2646228

Browse files
Merge branch 'main' into feature/aherrera/SNOW-2443512-StringAndBinaryPart2
2 parents 4e8a883 + df6da5d commit 2646228

File tree

132 files changed

+1025
-147
lines changed

Some content is hidden

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

132 files changed

+1025
-147
lines changed

CHANGELOG.md

Lines changed: 34 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

@@ -69,9 +69,41 @@
6969
- `str.lower`
7070
- `str.upper`
7171
- `str.title`
72-
72+
- `str.match`
73+
- `str.capitalize`
74+
- `str.__getitem__`
75+
- `str.center`
76+
- `str.count`
77+
- `str.get`
78+
- `str.pad`
79+
- `str.len`
80+
- `str.ljust`
81+
- `str.rjust`
82+
- `str.split`
83+
- `str.replace`
84+
- `str.strip`
85+
- `str.lstrip`
86+
- `str.rstrip`
87+
- `str.translate`
88+
- `dt.tz_localize`
89+
- `dt.tz_convert`
90+
- `dt.ceil`
91+
- `dt.round`
92+
- `dt.floor`
93+
- `dt.normalize`
94+
- `dt.month_name`
95+
- `dt.day_name`
96+
- `dt.strftime`
7397
- Make faster pandas disabled by default (opt-in instead of opt-out).
7498

99+
## 1.42.0 (2025-10-28)
100+
101+
### Snowpark Python API Updates
102+
103+
#### New Features
104+
105+
- 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.
106+
75107
## 1.41.0 (2025-10-23)
76108

77109
### 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.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)