Skip to content

fix(funnels): replace deprecated rust group_by#42289

Merged
thmsobrmlr merged 1 commit into
masterfrom
fix_funnels_replace_deprecated_rust_group_by
Dec 4, 2025
Merged

fix(funnels): replace deprecated rust group_by#42289
thmsobrmlr merged 1 commit into
masterfrom
fix_funnels_replace_deprecated_rust_group_by

Conversation

@thmsobrmlr

@thmsobrmlr thmsobrmlr commented Nov 28, 2025

Copy link
Copy Markdown
Collaborator

Problem

"group by" was renamed to "chunk by" rust-lang/rust#117678

warning: use of deprecated method itertools::Itertools::group_by: Use .chunk_by() instead
--> src/steps.rs:125:14
|
125 | .group_by(|e| e.timestamp);
| ^^^^^^^^
|
= note: #[warn(deprecated)] on by default

warning: use of deprecated method itertools::Itertools::group_by: Use .chunk_by() instead
--> src/trends.rs:137:14
|
137 | .group_by(|e| e.timestamp);
| ^^^^^^^^

Changes

Updates code usages.

How did you test this code?

CI run

thmsobrmlr commented Nov 28, 2025

Copy link
Copy Markdown
Collaborator Author

@greptile-apps greptile-apps Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 files reviewed, no comments

Edit Code Review Agent Settings | Greptile

@thmsobrmlr thmsobrmlr changed the base branch from feat_funnels_expose_faulty_inputs_when_parsing_args_in_udf to graphite-base/42289 December 4, 2025 10:02
@thmsobrmlr thmsobrmlr force-pushed the fix_funnels_replace_deprecated_rust_group_by branch from 809915b to 99f0ef8 Compare December 4, 2025 10:03
@graphite-app graphite-app Bot changed the base branch from graphite-base/42289 to master December 4, 2025 10:04
@thmsobrmlr thmsobrmlr force-pushed the fix_funnels_replace_deprecated_rust_group_by branch from 99f0ef8 to d13615b Compare December 4, 2025 10:04
@thmsobrmlr thmsobrmlr merged commit 3f92060 into master Dec 4, 2025
118 checks passed

Copy link
Copy Markdown
Collaborator Author

Merge activity

@thmsobrmlr thmsobrmlr deleted the fix_funnels_replace_deprecated_rust_group_by branch December 4, 2025 10:18
sakce pushed a commit that referenced this pull request Dec 5, 2025
## Problem

"group by" was renamed to "chunk by" rust-lang/rust#117678

```
warning: use of deprecated method itertools::Itertools::group_by: Use .chunk_by() instead
--> src/steps.rs:125:14
|
125 | .group_by(|e| e.timestamp);
| ^^^^^^^^
|
= note: #[warn(deprecated)] on by default

warning: use of deprecated method itertools::Itertools::group_by: Use .chunk_by() instead
--> src/trends.rs:137:14
|
137 | .group_by(|e| e.timestamp);
| ^^^^^^^^
```

## Changes

Updates code usages.

## How did you test this code?

CI run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants