Skip to content

chore: Lint changelog and migration guide #10142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ const job = scheduleWithCheckIn.scheduleJob('my-cron-job', '* * * * *', () => {
- fix(node): Revert to only use sync debugger for `LocalVariables` (#10077)
- fix(node): Update ANR min node version to v16.17.0 (#10107)


## 7.92.0

### Important Changes
Expand Down
6 changes: 3 additions & 3 deletions MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ changes!

## Changed integration interface

In v8, integrations passed to a client will have an optional `setupOnce()` hook.
Currently, this hook is always present, but in v8 you will not be able to rely on this always existing anymore -
any integration _may_ have a `setup` and/or a `setupOnce` hook. Additionally, `setupOnce()` will not receive any arguments anymore.
In v8, integrations passed to a client will have an optional `setupOnce()` hook. Currently, this hook is always present,
but in v8 you will not be able to rely on this always existing anymore - any integration _may_ have a `setup` and/or a
`setupOnce` hook. Additionally, `setupOnce()` will not receive any arguments anymore.

This should not affect most people, but in the case that you are manually calling `integration.setupOnce()` right now,
make sure to guard it's existence properly.
Expand Down