chore(dev-deps): bump the dev-minor-patch group across 1 directory with 9 updates#387
Merged
umair-ably merged 2 commits intomainfrom May 8, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Collaborator
|
@dependabot recreate |
…th 9 updates Bumps the dev-minor-patch group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.58.2` | `8.59.2` | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.58.2` | `8.59.2` | | [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.4` | `4.1.5` | | [@vitest/ui](https://github.com/vitest-dev/vitest/tree/HEAD/packages/ui) | `4.1.4` | `4.1.5` | | [eslint](https://github.com/eslint/eslint) | `10.2.0` | `10.3.0` | | [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `7.1.0` | `7.1.1` | | [globals](https://github.com/sindresorhus/globals) | `17.5.0` | `17.6.0` | | [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.4` | `4.1.5` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.9` | `8.0.10` | Updates `@typescript-eslint/eslint-plugin` from 8.58.2 to 8.59.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.2/packages/eslint-plugin) Updates `@typescript-eslint/parser` from 8.58.2 to 8.59.2 - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.2/packages/parser) Updates `@vitest/coverage-v8` from 4.1.4 to 4.1.5 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/coverage-v8) Updates `@vitest/ui` from 4.1.4 to 4.1.5 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/ui) Updates `eslint` from 10.2.0 to 10.3.0 - [Release notes](https://github.com/eslint/eslint/releases) - [Commits](eslint/eslint@v10.2.0...v10.3.0) Updates `eslint-plugin-react-hooks` from 7.1.0 to 7.1.1 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/eslint-plugin-react-hooks@7.1.1/packages/eslint-plugin-react-hooks) Updates `globals` from 17.5.0 to 17.6.0 - [Release notes](https://github.com/sindresorhus/globals/releases) - [Commits](sindresorhus/globals@v17.5.0...v17.6.0) Updates `vitest` from 4.1.4 to 4.1.5 - [Release notes](https://github.com/vitest-dev/vitest/releases) - [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.5/packages/vitest) Updates `vite` from 8.0.9 to 8.0.10 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v8.0.10/packages/vite) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-version: 8.59.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-minor-patch - dependency-name: "@typescript-eslint/parser" dependency-version: 8.59.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-minor-patch - dependency-name: "@vitest/coverage-v8" dependency-version: 4.1.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-minor-patch - dependency-name: "@vitest/ui" dependency-version: 4.1.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-minor-patch - dependency-name: eslint dependency-version: 10.3.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-minor-patch - dependency-name: eslint-plugin-react-hooks dependency-version: 7.1.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-minor-patch - dependency-name: globals dependency-version: 17.6.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dev-minor-patch - dependency-name: vite dependency-version: 8.0.10 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-minor-patch - dependency-name: vitest dependency-version: 4.1.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: dev-minor-patch ... Signed-off-by: dependabot[bot] <support@github.com>
54b5b9c to
704f3c2
Compare
The no-unnecessary-type-assertion rule in 8.59.2 now correctly detects when type assertions don't change the inferred type (e.g. `flags as BaseFlags` when flags already satisfies BaseFlags). Removing those casts exposed three secondary issues that needed explicit fixes: - Unused BaseFlags/BatchContent imports (only referenced via the now- removed casts) — deleted the dead imports - no-base-to-string in json-formatter.ts: the rule doesn't track narrowing of `unknown` through chained typeof guards, so replaced String(data) with explicit per-type branches (function/symbol/bigint/ number/boolean each handled individually) - no-unsafe-assignment in config-manager.ts: the legacy `app?` migration field wasn't declared in AblyConfig.current, which caused a TS error after removing the intersection cast — added `app?: string` to the interface with a deprecation note - no-base-to-string in push/batch-publish.ts: error.code (unknown) was passed to String() — replaced with an explicit typeof guard Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Dependabot Fix AssessmentPackage: What changed upstream
Migration concerns checked
What broke
What was fixed
Verification
Notes for reviewer
|
umair-ably
approved these changes
May 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the dev-minor-patch group with 9 updates in the / directory:
8.58.28.59.28.58.28.59.24.1.44.1.54.1.44.1.510.2.010.3.07.1.07.1.117.5.017.6.04.1.44.1.58.0.98.0.10Updates
@typescript-eslint/eslint-pluginfrom 8.58.2 to 8.59.2Release notes
Sourced from @typescript-eslint/eslint-plugin's releases.
... (truncated)
Changelog
Sourced from @typescript-eslint/eslint-plugin's changelog.
... (truncated)
Commits
2ec35f1chore(release): publish 8.59.2ec3ef25test: make no-useless-empty-export tests fully static (#12260)60d0a51chore(eslint-plugin): switch auto-generated test cases to hand-written in no-...5c53da2fix(eslint-plugin): [no-deprecated] object destructuring values should be tre...80c28a1fix(eslint-plugin): [no-unsafe-type-assertion] handle crash on recursive temp...b7b2670test: make no-this-alias tests fully static (#12258)5245793chore(release): publish 8.59.13cef124chore(eslint-plugin): switch auto-generated test cases to hand-written in dot...27c507btest: make sort-type-constituents tests fully static (#12262)a03b31dchore(eslint-plugin): switch auto-generated test cases to hand-written in no-...Updates
@typescript-eslint/parserfrom 8.58.2 to 8.59.2Release notes
Sourced from @typescript-eslint/parser's releases.
... (truncated)
Changelog
Sourced from @typescript-eslint/parser's changelog.
Commits
2ec35f1chore(release): publish 8.59.25245793chore(release): publish 8.59.1ea9ae4fchore(release): publish 8.59.0Updates
@vitest/coverage-v8from 4.1.4 to 4.1.5Release notes
Sourced from @vitest/coverage-v8's releases.
Commits
e399846chore: release v4.1.5Updates
@vitest/uifrom 4.1.4 to 4.1.5Release notes
Sourced from @vitest/ui's releases.
Commits
e399846chore: release v4.1.5596f739fix: project color label on html reporter (#10142)f1b1f6cfix(ui): fix jsx/tsx syntax highlight (#10152)Updates
eslintfrom 10.2.0 to 10.3.0Release notes
Sourced from eslint's releases.
... (truncated)
Commits
788920410.3.05b69b4fBuild: changelog update for 10.3.0d32235eci: use pnpm ineslint-flat-config-utilstype integration test (#20826)b6ae5cffix: handle unavailable require cache (#20812)3ffb14echore: clean up typos in comments and JSDoc (#20821)6fb3685fix: rule suggestions cause continuation in class body (#20787)22eb58achore: add missing continue-on-error to ecosystem-tests.yml (#20818)88bf002ci: bump pnpm/action-setup from 6.0.1 to 6.0.3 (#20815)379571afeat: add suggestions for no-unused-private-class-members (#20773)97c8c33chore: update ilshidur/action-discord action to v0.4.0 (#20811)Updates
eslint-plugin-react-hooksfrom 7.1.0 to 7.1.1Release notes
Sourced from eslint-plugin-react-hooks's releases.
Changelog
Sourced from eslint-plugin-react-hooks's changelog.
Commits
d1727fb[eprh] Update changelog for 7.1.1 (#36308)bc24980[eprh] Add back a no-op for removed component-hook-factories rule (#36307)Updates
globalsfrom 17.5.0 to 17.6.0Release notes
Sourced from globals's releases.
Commits
6b1587017.6.000a4dd9Update globals (2026-05-01) (#343)Updates
vitestfrom 4.1.4 to 4.1.5Release notes
Sourced from vitest's releases.
Commits
e399846chore: release v4.1.57dc6d54Revert "fix: respect diff config options in soft assertions (#8696)"9787dedfix: respect diff config options in soft assertions (#8696)325463afix(ast-collect): recognize _vi_import prefix in static test discovery (#10...0e0ff41feat(coverage): istanbul to supportinstrumenteroption (#10119)663b99ffix: aliasagentreporter tominimal(#10157)122c25bfix: fixvi.defineHelpercalled as object method (#10163)6abd557feat(api): make test-specification options writable (#10154)596f739fix: project color label on html reporter (#10142)9423dc0fix: --project negation excludes browser instances (#10131)Updates
vitefrom 8.0.9 to 8.0.10Release notes
Sourced from vite's releases.
Changelog
Sourced from vite's changelog.
Commits
32c2978release: v8.0.10a4d06d9feat: update rolldown to 1.0.0-rc.17 (#22299)a4d828ffix:hmrClient.logger.debugandhmrClient.logger.errorlooked different f...83f0a78fix(css): show filename in CSS minification warnings for.css?inline(#22292)b8a21ccfix: remove format sniffing module resolution from JS resolver (#22297)40a0847refactor: typecheck client directory (#22284)5c7cec6fix(optimizer): allow user transform.target to override default in optimizeDe...9437518refactor: enable some typecheck rules (#22278)