Skip to content

Commit 2d3d8ee

Browse files
committed
NO-SNOW: release update (#3150)
1 parent 6e4fae3 commit 2d3d8ee

File tree

125 files changed

+144
-13
lines changed

Some content is hidden

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

125 files changed

+144
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions

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.29.0" %}
2+
{% set version = "1.29.1" %}
33
{% set noarch_build = (os.environ.get('SNOWFLAKE_SNOWPARK_PYTHON_NOARCH_BUILD', 'false')) == 'true' %}
44

55
package:

src/snowflake/snowpark/_internal/proto/ast.proto

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ message PivotValue_Dataframe {
306306
DataframeRef v = 1;
307307
}
308308

309-
// const.ir:81
309+
// const.ir:84
310310
message PythonTimeZone {
311311
google.protobuf.StringValue name = 1;
312312
int64 offset_seconds = 2;
@@ -440,7 +440,7 @@ message Assign {
440440
VarId var_id = 4;
441441
}
442442

443-
// const.ir:28
443+
// const.ir:31
444444
message BigDecimalVal {
445445
int64 scale = 1;
446446
google.protobuf.StringValue special = 2;
@@ -450,8 +450,9 @@ message BigDecimalVal {
450450

451451
// const.ir:24
452452
message BigIntVal {
453-
SrcPosition src = 1;
454-
bytes v = 2;
453+
bool is_negative = 1;
454+
SrcPosition src = 2;
455+
bytes v = 3;
455456
}
456457

457458
message BinOp {
@@ -476,7 +477,7 @@ message BinOp {
476477
}
477478
}
478479

479-
// const.ir:42
480+
// const.ir:45
480481
message BinaryVal {
481482
SrcPosition src = 1;
482483
bytes v = 2;
@@ -1292,7 +1293,7 @@ message DataframeWrite {
12921293
SrcPosition src = 5;
12931294
}
12941295

1295-
// const.ir:46
1296+
// const.ir:49
12961297
message DatatypeVal {
12971298
DataType datatype = 1;
12981299
SrcPosition src = 2;
@@ -1582,7 +1583,7 @@ message Flatten {
15821583
SrcPosition src = 6;
15831584
}
15841585

1585-
// const.ir:34
1586+
// const.ir:37
15861587
message Float64Val {
15871588
SrcPosition src = 1;
15881589
double v = 2;
@@ -1960,15 +1961,15 @@ message Pow {
19601961
SrcPosition src = 3;
19611962
}
19621963

1963-
// const.ir:65
1964+
// const.ir:68
19641965
message PythonDateVal {
19651966
int64 day = 1;
19661967
int64 month = 2;
19671968
SrcPosition src = 3;
19681969
int64 year = 4;
19691970
}
19701971

1971-
// const.ir:71
1972+
// const.ir:74
19721973
message PythonTimeVal {
19731974
int64 hour = 1;
19741975
int64 microsecond = 2;
@@ -1978,7 +1979,7 @@ message PythonTimeVal {
19781979
PythonTimeZone tz = 6;
19791980
}
19801981

1981-
// const.ir:54
1982+
// const.ir:57
19821983
message PythonTimestampVal {
19831984
int64 day = 1;
19841985
int64 hour = 2;
@@ -2198,7 +2199,7 @@ message StoredProcedure {
21982199
bool strict = 21;
21992200
}
22002201

2201-
// const.ir:38
2202+
// const.ir:41
22022203
message StringVal {
22032204
SrcPosition src = 1;
22042205
string v = 2;

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, 29, 0)
5+
VERSION = (1, 29, 1)

tests/ast/data/DataFrame.agg.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,4 +523,5 @@ client_language {
523523
client_version {
524524
major: 1
525525
minor: 29
526+
patch: 1
526527
}

tests/ast/data/DataFrame.collect.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,4 +343,5 @@ client_language {
343343
client_version {
344344
major: 1
345345
minor: 29
346+
patch: 1
346347
}

tests/ast/data/DataFrame.count.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,5 @@ client_language {
176176
client_version {
177177
major: 1
178178
minor: 29
179+
patch: 1
179180
}

tests/ast/data/DataFrame.count2.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,5 @@ client_language {
207207
client_version {
208208
major: 1
209209
minor: 29
210+
patch: 1
210211
}

tests/ast/data/DataFrame.create_or_replace.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,4 +631,5 @@ client_language {
631631
client_version {
632632
major: 1
633633
minor: 29
634+
patch: 1
634635
}

tests/ast/data/DataFrame.cross_join.lsuffix.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,4 +184,5 @@ client_language {
184184
client_version {
185185
major: 1
186186
minor: 29
187+
patch: 1
187188
}

0 commit comments

Comments
 (0)