Skip to content
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

chore(deps): bump the javascript-minor-patch group in /src with 14 updates #2666

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 3, 2025

Bumps the javascript-minor-patch group in /src with 14 updates:

Package From To
@types/node 22.13.5 22.13.8
eslint-config-prettier 10.0.1 10.0.2
happy-dom 17.1.4 17.1.8
prettier 3.5.2 3.5.3
sass 1.85.0 1.85.1
typescript 5.7.3 5.8.2
vite 6.1.1 6.2.0
vitest 3.0.6 3.0.7
vue-tsc 2.2.4 2.2.8
@fontsource/open-sans 5.1.1 5.2.5
axios 1.7.9 1.8.1
vuetify 3.7.13 3.7.14
@typescript-eslint/eslint-plugin 8.24.1 8.25.0
@typescript-eslint/parser 8.24.1 8.25.0

Updates @types/node from 22.13.5 to 22.13.8

Commits

Updates eslint-config-prettier from 10.0.1 to 10.0.2

Release notes

Sourced from eslint-config-prettier's releases.

v10.0.2

Patch Changes

Changelog

Sourced from eslint-config-prettier's changelog.

10.0.2

Patch Changes

10.0.0

Major Changes

Versions before 10.0.0

Version 9.1.0 (2023-12-02)

  • Added: [unicorn/template-indent], (as a [special rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (@​gurgunday)!
  • Changed: All the [formatting rules that were deprecated in ESLint 8.53.0][deprecated-8.53.0] are now excluded if you set the ESLINT_CONFIG_PRETTIER_NO_DEPRECATED environment variable.

Version 9.0.0 (2023-08-05)

  • Added: The CLI helper tool now works with eslint.config.js (flat config). Just like ESLint itself, the CLI tool automatically first tries eslint.config.js and then eslintrc, and you can force which one to use by setting the [ESLINT_USE_FLAT_CONFIG] environment variable. Note that the config of eslint-config-prettier has always been compatible with eslint.config.js (flat config) – it was just the CLI tool that needed updating. On top of that, the docs have been updated to mention how to use both eslint.config.js (flat config) and eslintrc, and the tests now test both config systems.
  • Changed: [unicode-bom] is no longer turned off. Prettier preserves the BOM if you have one, and does not add one if missing. It was wrong of eslint-config-prettier to disable that rule. If you get ESLint errors after upgrading, either add "unicode-bom": "off" to your config to disable it again, or run ESLint with --fix to fix all files according to the rule (add or remove BOM). Thanks to Nicolas Stepien (@​nstepien)!

Version 8.10.0 (2023-08-03)

  • Added: [max-statements-per-line]. Thanks to @​Zamiell!

Version 8.9.0 (2023-07-27)

  • Added: [vue/array-element-newline]. Thanks to @​xcatliu!

Version 8.8.0 (2023-03-20)

  • Added: [@​typescript-eslint/lines-around-comment]. Thanks to @​ttionya!

Version 8.7.0 (2023-03-06)

  • Added: [@​typescript-eslint/block-spacing]. Thanks to @​ttionya!
  • Added: [@​typescript-eslint/key-spacing]. Thanks to @​ttionya!

Version 8.6.0 (2023-01-02)

  • Added: [vue/multiline-ternary]. Thanks to @​xcatliu!

Version 8.5.0 (2022-03-02)

  • Added: [@​typescript-eslint/space-before-blocks]. Thanks to Masafumi Koba (@​ybiquitous)!

Version 8.4.0 (2022-02-19)

... (truncated)

Commits

Updates happy-dom from 17.1.4 to 17.1.8

Release notes

Sourced from happy-dom's releases.

v17.1.8

👷‍♂️ Patch fixes

  • Fixes issue where change event wasn't triggered for an input inside of a label - By @​SCPF-Archive in task #1614

v17.1.7

👷‍♂️ Patch fixes

v17.1.6

🎨 Features

  • Adds support for sending AbortSignal as option to EventTarget.addEventListener() - By @​karpiuMG in task #1540

v17.1.5

👷‍♂️ Patch fixes

  • HTMLElement.dataset should return undefined for properties not found - By @​karpiuMG in task #1689
Commits
  • 73a3672 fix: #1614 Fixes issue where change event wasn't triggered for an input ins...
  • baaeeb9 fix: #1741 Adds missing end boundary to FormData requests (#1742)
  • d66de2d feature: #1540 Adds support for sending AbortSignal as option to EventTarge...
  • 33f1beb fix: #1689 HTMLElement.dataset should return undefined for properties not f...
  • See full diff in compare view

Updates prettier from 3.5.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

Commits

Updates sass from 1.85.0 to 1.85.1

Release notes

Sourced from sass's releases.

Dart Sass 1.85.1

To install Sass 1.85.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.85.1

  • Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, round(-$var / 2) previously threw an error but now works as intended.
Commits

Updates typescript from 5.7.3 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates vite from 6.1.1 to 6.2.0

Release notes

Sourced from vite's releases.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.2.0 (2025-02-25)

6.2.0-beta.1 (2025-02-21)

  • fix(css): temporary add ?. after this.getModuleInfo in vite:css-post (#19478) (12b0b8a), closes #19478

6.2.0-beta.0 (2025-02-21)

Commits

Updates vitest from 3.0.6 to 3.0.7

Release notes

Sourced from vitest's releases.

v3.0.7

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits

Updates vue-tsc from 2.2.4 to 2.2.8

Release notes

Sourced from vue-tsc's releases.

v2.2.8

Bug Fixes

  • revert "fix(language-core): validate v-model variable against model type"

Please refer to CHANGELOG.md for details.

Sponsors

... (truncated)

Changelog

Sourced from vue-tsc's changelog.

2.2.8 official, 2.2.9 insiders (2025-03-02)

Bug Fixes

  • revert "fix(language-core): validate v-model variable against model type"

2.2.6 official, 2.2.7 insiders (2025-03-01)

Features

  • feat(language-core): infer prop JSDoc from defineModel's leading comments (#5211) - Thanks to @​KazariEX!

Bug Fixes

  • fix(language-core): map camelized prop name correctly (#5207) - Thanks to @​KazariEX!
  • fix(component-meta): resolve defineModel options to collect default value (#5209) - Thanks to @​KazariEX!
  • fix(language-core): avoid duplicate generation of defineExpose's codes - Thanks to @​KazariEX!
  • fix(language-core): generate camelized prop name for defineModel (#5213) - Thanks to @​KazariEX!
  • fix(language-core): validate v-model variable against model type (#5214) - Thanks to @​KazariEX!
  • fix(language-core): use keywords instead of semicolons to separate script sections (#5217) - Thanks to @​KazariEX!

Other Changes

  • ci: auto close issues with can't reproduce label - Thanks to @​KazariEX!
  • refactor(language-core): defer the calculation of linkedCodeMappings offsets (#5220) - Thanks to @​KazariEX!
Commits
  • b924de9 v2.2.8
  • 3cef963 v2.2.6 (#5222)
  • 130e3b8 fix(language-core): generate camelized prop name for defineModel (#5213)
  • 6bd7c03 feat(language-core): infer prop JSDoc from defineModel's leading comments (...
  • 810123c fix(component-meta): resolve defineModel options to collect default value...
  • See full diff in compare view
Maintainer changes

This version was pushed to npm by kazariex, a new releaser for vue-tsc since your current version.


Updates @fontsource/open-sans from 5.1.1 to 5.2.5

Commits

Updates axios from 1.7.9 to 1.8.1

Release notes

Sourced from axios's releases.

Release v1.8.1

Release notes:

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

Release v1.8.0

Release notes:

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.8.1 (2025-02-26)

Bug Fixes

  • utils: move generateString to platform utils to avoid importing crypto module into client builds; (#6789) (36a5a62)

Contributors to this release

1.8.0 (2025-02-25)

Bug Fixes

  • examples: application crashed when navigating examples in browser (#5938) (1260ded)
  • missing word in SUPPORT_QUESTION.yml (#6757) (1f890b1)
  • utils: replace getRandomValues with crypto module (#6788) (23a25af)

Features

Reverts

BREAKING CHANGES

  • code relying on the above will now combine the URLs instead of prefer request URL

  • feat: add config option for allowing absolute URLs

  • fix: add default value for allowAbsoluteUrls in buildFullPath

  • fix: typo in flow control when setting allowAbsoluteUrls

Contributors to this release

... (truncated)

Commits
  • 2e64afd chore(release): v1.8.1 (#6800)
  • 36a5a62 fix(utils): move generateString to platform utils to avoid importing crypto...
  • cceb7b1 chore(release): v1.8.0 (#6795)
  • 23a25af fix(utils): replace getRandomValues with crypto module (#6788)
  • 32c7bcc feat: Add config for ignoring absolute URLs (#5902) (#6192)
  • 4a3e26c chore(config): adjust rollup config to preserve license header to minified Ja...
  • 30966a7 docs(type): fix typo in index.ts (#6030)
  • e7a9cbe test(transform): add test case for issue 5853 on response type to 'json' (#5901)
  • 51c1d7b chore(docs): typo in README (#6771)
  • b5b063e docs(readme): fix Request Config options code highlight (#6480)
  • Additional commits viewable in compare view

Updates vuetify from 3.7.13 to 3.7.14

Release notes

Sourced from vuetify's releases.

v3.7.14

🔧 Bug Fixes

🔬 Code Refactoring

  • VTreeview/VTreeviewChildren: pass through density for checkbox btn (a5cd6f3)

🧪 Labs

  • VDateInput: add missing slot types (d32fa31)
  • VNumberInput: apply precision even when disabled/readonly (#21010) (389be09), closes #21005
  • VTreeview: indentation parity with v2 (#21007) (7f02244)
Commits
  • c7c2fa4 chore(release): publish v3.7.14
  • e3ef513 fix(VFileInput): closable slotted chips (#20250)
  • 98003f2 fix(DateAdapter): update date formats to match interface (#20229)
  • 389be09 fix(VNumberInput): apply precision even when disabled/readonly (#21010)
  • d518fc1 fix(locale): add missing japanese translations (#21009)
  • 6893c16 docs: typos (#21020)
  • a5cd6f3 refactor(VTreeview/VTreeviewChildren): pass through density for checkbox btn
  • 7f02244 fix(VTreeview): indentation parity with v2 (#21007)
  • d32fa31 fix(VDateInput): add missing slot types
  • 809a300 chore(VTreeview): remove empty line
  • Additional commits viewable in compare view

Updates @typescript-eslint/eslint-plugin from 8.24.1 to 8.25.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v8.25.0

8.25.0 (2025-02-24)

🚀 Features

  • eslint-plugin: [no-misused-spread] add suggestions (#10719)

🩹 Fixes

  • ast-spec: replace attributes with options property in TSImportType (#10691)
  • eslint-plugin: [unified-signatures] handle getter-setter (#10818)
  • eslint-plugin: [no-deprecated] report usage of deprecated private identifiers (#10844)
  • eslint-plugin: [prefer-nullish-coalescing] report on chain expressions in a ternary (#10708)
  • typescript-estree: align TS module nodes to namespaces (#10504)
  • visitor-keys: update keys for ImportAttribute (#10649)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

8.25.0 (2025-02-24)

🚀 Features

  • eslint-plugin: [no-misused-spread] add suggestions (#10719)

🩹 Fixes

  • eslint-plugin: [prefer-nullish-coalescing] report on chain expressions in a ternary (#10708)
  • eslint-plugin: [no-deprecated] report usage of deprecated private identifiers (#10844)
  • eslint-plugin: [unified-signatures] handle getter-setter (#10818)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Commits
  • 1a9ab8f chore(release): publish 8.25.0
  • a43c199 feat(eslint-plugin): [no-misused-spread] add suggestions (#10719)
  • 0a0a085 fix(eslint-plugin): [strict-boolean-expressions] allowNullableBoolean - suppo...
  • b688380 fix(eslint-plugin): [no-invalid-void-type] don't flag function overloading wi...
  • f22de04 fix(eslint-plugin): [prefer-nullish-coalescing] report on chain expressions i...
  • 6f87c20 docs(eslint-plugin): [consistent-type-definitions] add FAQs (#10731)
  • fb790dc fix(eslint-plugin): [no-deprecated] report usage of deprecated private identi...
  • 5d503b9 fix(eslint-plugin): [unified-signatures] handle getter-setter (#10818)
  • f3ef20e chore: update to latest nx and use project references first approach (#10361)
  • See full diff in compare view

Updates @typescript-eslint/parser from 8.24.1 to 8.25.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.25.0

8.25.0 (2025-02-24)

🚀 Features

  • eslint-plugin: [no-misused-spread] add suggestions (#10719)

🩹 Fixes

  • ast-spec: replace attributes with options property in TSImportType (#10691)
  • eslint-plugin: [unified-signatures] handle getter-setter (#10818)
  • eslint-plugin: [no-deprecated] report usage of deprecated private identifiers (#10844)
  • eslint-plugin: [prefer-nullish-coalescing] report on chain expressions in a ternary (#10708)
  • typescript-estree: align TS module nodes to namespaces (#10504)
  • visitor-keys: update keys for ImportAttribute (#10649)

❤️ Thank You

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.25.0 (2025-02-24)

This was a version bump only for parser to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and s...

Description has been truncated

Bumps the javascript-minor-patch group in /src with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.5` | `22.13.8` |
| [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | `10.0.1` | `10.0.2` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `17.1.4` | `17.1.8` |
| [prettier](https://github.com/prettier/prettier) | `3.5.2` | `3.5.3` |
| [sass](https://github.com/sass/dart-sass) | `1.85.0` | `1.85.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.1.1` | `6.2.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.6` | `3.0.7` |
| [vue-tsc](https://github.com/vuejs/language-tools/tree/HEAD/packages/tsc) | `2.2.4` | `2.2.8` |
| [@fontsource/open-sans](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/open-sans) | `5.1.1` | `5.2.5` |
| [axios](https://github.com/axios/axios) | `1.7.9` | `1.8.1` |
| [vuetify](https://github.com/vuetifyjs/vuetify/tree/HEAD/packages/vuetify) | `3.7.13` | `3.7.14` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.24.1` | `8.25.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.24.1` | `8.25.0` |


Updates `@types/node` from 22.13.5 to 22.13.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint-config-prettier` from 10.0.1 to 10.0.2
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-config-prettier@v10.0.1...v10.0.2)

Updates `happy-dom` from 17.1.4 to 17.1.8
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v17.1.4...v17.1.8)

Updates `prettier` from 3.5.2 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.5.2...3.5.3)

Updates `sass` from 1.85.0 to 1.85.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.85.0...1.85.1)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `vite` from 6.1.1 to 6.2.0
- [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/create-vite@6.2.0/packages/vite)

Updates `vitest` from 3.0.6 to 3.0.7
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.0.7/packages/vitest)

Updates `vue-tsc` from 2.2.4 to 2.2.8
- [Release notes](https://github.com/vuejs/language-tools/releases)
- [Changelog](https://github.com/vuejs/language-tools/blob/master/CHANGELOG.md)
- [Commits](https://github.com/vuejs/language-tools/commits/v2.2.8/packages/tsc)

Updates `@fontsource/open-sans` from 5.1.1 to 5.2.5
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/open-sans)

Updates `axios` from 1.7.9 to 1.8.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.7.9...v1.8.1)

Updates `vuetify` from 3.7.13 to 3.7.14
- [Release notes](https://github.com/vuetifyjs/vuetify/releases)
- [Commits](https://github.com/vuetifyjs/vuetify/commits/v3.7.14/packages/vuetify)

Updates `@typescript-eslint/eslint-plugin` from 8.24.1 to 8.25.0
- [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.25.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.24.1 to 8.25.0
- [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.25.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: eslint-config-prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: happy-dom
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: vue-tsc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: "@fontsource/open-sans"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: vuetify
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: javascript-minor-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: javascript-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 3, 2025
@dependabot dependabot bot requested review from a team and nortaljevgenikr and removed request for a team March 3, 2025 05:10
Copy link

sonarqubecloud bot commented Mar 3, 2025

Copy link

github-actions bot commented Mar 3, 2025

Job Summary for Gradle

Build and test :: BuildAndPackageWithUnitTests
Gradle Root Project Requested Tasks Gradle Version Build Outcome Build Scan®
x-road-core build sonar test intTest jacocoTestReport 8.12 Build Scan not published

@ovidijusnortal
Copy link
Contributor

@dependabot merge

@dependabot dependabot bot merged commit e058253 into develop Mar 3, 2025
10 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/src/javascript-minor-patch-40380a2a3d branch March 3, 2025 13:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant