Skip to content

Commit 570d192

Browse files
updated changelog
1 parent 52e09cc commit 570d192

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,11 @@
130130
- `skew()` with `axis=1` or `numeric_only=False` parameters
131131
- `round()` with `decimals` parameter as a Series
132132
- `corr()` with `method!=pearson` parameter
133+
- `df.groupby()` with `axis=1`, `by!=None and level!=None`, or by containing any non-pandas hashable labels.
134+
- `groupby_fillna()` with `downcast` parameter
135+
- `groupby_first()` with `min_count>1`
136+
- `groupby_last()` with `min_count>1`
137+
- `shift()` with `freq` parameter
133138
- Set `cte_optimization_enabled` to True for all Snowpark pandas sessions.
134139
- Add support for the following in faster pandas:
135140
- `isin`

tests/integ/modin/hybrid/test_switch_operations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1520,12 +1520,12 @@ def test_method_callable_non_string_reason(self):
15201520
(
15211521
"first",
15221522
{"min_count": 2},
1523-
"does not yet support min_count",
1523+
"does not yet support min_count > 1",
15241524
),
15251525
(
15261526
"last",
15271527
{"min_count": 2},
1528-
"does not yet support min_count",
1528+
"does not yet support min_count > 1",
15291529
),
15301530
(
15311531
"shift",

0 commit comments

Comments
 (0)