Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

Bumps the minor-and-patch group with 16 updates in the / directory:

Package From To
@babel/traverse 7.28.4 7.28.5
@graphql-tools/graphql-tag-pluck 8.3.21 8.3.26
@salesforce/core 8.23.2 8.23.4
vscode-html-languageservice 5.5.2 5.6.0
yaml 2.8.1 2.8.2
@babel/core 7.28.4 7.28.5
@babel/preset-env 7.28.3 7.28.5
@typescript-eslint/eslint-plugin 8.46.1 8.48.0
@vscode/vsce 3.6.2 3.7.1
esbuild 0.25.10 0.27.0
graphql 16.11.0 16.12.0
minimatch 10.0.3 10.1.1
mocha 11.7.4 11.7.5
ovsx 0.10.6 0.10.7
prettier 3.6.2 3.7.3
rimraf 6.0.1 6.1.2

Updates @babel/traverse from 7.28.4 to 7.28.5

Release notes

Sourced from @​babel/traverse's releases.

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Committers: 8

Changelog

Sourced from @​babel/traverse's changelog.

v7.28.5 (2025-10-23)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​babel/traverse since your current version.


Updates @graphql-tools/graphql-tag-pluck from 8.3.21 to 8.3.26

Changelog

Sourced from @​graphql-tools/graphql-tag-pluck's changelog.

8.3.26

Patch Changes

  • Updated dependencies [2118a80]:
    • @​graphql-tools/utils@​10.11.0

8.3.25

Patch Changes

  • Updated dependencies [2fe123a]:
    • @​graphql-tools/utils@​10.10.3

8.3.24

Patch Changes

  • Updated dependencies [dddc5f6]:
    • @​graphql-tools/utils@​10.10.2

8.3.23

Patch Changes

  • Updated dependencies [fbb58b5]:
    • @​graphql-tools/utils@​10.10.1

8.3.22

Patch Changes

Commits
  • 7b17d1f chore(release): update monorepo packages versions (#7722)
  • ef2d312 chore(deps): update all non-major dependencies (#7733)
  • 5285668 build(deps-dev): bump the actions-deps group with 2 updates (#7731)
  • 9860fc4 chore(deps): update dependency svelte to v5.44.0 (#7728)
  • 2b99ff2 chore(deps): update dependency svelte to v5.43.15 (#7727)
  • e107b6f chore(deps): update all non-major dependencies (#7719)
  • 4ed3ee3 chore(deps): update all non-major dependencies (#7710)
  • ba841fd chore(deps): update all non-major dependencies (#7707)
  • ce69eaa chore(deps): update dependency svelte to v5.43.8 (#7698)
  • 8e2f481 chore(release): update monorepo packages versions (#7684)
  • Additional commits viewable in compare view

Updates @graphql-tools/utils from 10.9.1 to 10.11.0

Changelog

Sourced from @​graphql-tools/utils's changelog.

10.11.0

Minor Changes

  • #7588 2118a80 Thanks @​EmrysMyrddin! - Add optional schema coordinate in error extensions. This extension allows to precisely identify the source of the error by automated tools like tracing or monitoring.

    This new feature is opt-in, you have to enable it using schemaCoordinateInErrors executor option.

    Caution: This feature, when enabled, will expose information about your schema. If you need to keep your schema private and secret, you should strip this attribute at serialization time before sending errors to the client.

    import { parse } from 'graphql'
    import { normalizedExecutor } from '@graphql-tools/executor'
    import { getSchemaCoordinate } from '@graphql-tools/utils'
    import schema from './schema'
    const result = await normalizedExecutor({
    schema,
    document: parse(...),
    schemaCoordinateInErrors: true // enable adding schema coordinate to graphql errors
    })
    if (result.errors) {
    for (const error of result.errors) {
    console.log('Error in resolver ', error.coordinate, ':', error.message)
    // or with getSchemaCoordinate util, to workaround types if needed
    console.log('Error in resolver', getSchemaCoordinate(error), ':', error.message)
    }
    }

10.10.3

Patch Changes

10.10.2

... (truncated)

Commits
  • 7b17d1f chore(release): update monorepo packages versions (#7722)
  • 2118a80 feat(executor): add schema coordinate to graphql errors (#7588)
  • 8e2f481 chore(release): update monorepo packages versions (#7684)
  • 2fe123a Revert "fix(utils/astFromSchema): support GraphQLSchema instances without o...
  • 53fdba6 chore(release): update monorepo packages versions (#7680)
  • dddc5f6 fix(utils/astFromSchema): support GraphQLSchema instances without operation...
  • 7f1859f build(deps): bump the actions-deps group with 5 updates (#7667)
  • 5b26b6d chore(release): update monorepo packages versions (#7655)
  • fbb58b5 enhance(utils/mergeIncrementalResults): remove dset\ dependency
  • 823336c chore(release): update monorepo packages versions (#7514)
  • Additional commits viewable in compare view

Updates @salesforce/core from 8.23.2 to 8.23.4

Release notes

Sourced from @​salesforce/core's releases.

8.23.4

Bug Fixes

  • add OAuth server default timeout W-19549750 (#1245) (7889fda)
  • make oauth server timeout configurable (#1246) (3a4658e)

8.23.3

Bug Fixes

  • bump salesforce/schemas (cf6aaf3)
  • bump ts-types (6ad56a9)
  • bump versions (9920c39)
  • handle options object in readFile/readFileSync for isomorphic-git compatibility (6239350)
  • writefile api consistency (fc8a88d)

Performance Improvements

  • only instantiate stateAggregator if no connection passed in (6636048)
Changelog

Sourced from @​salesforce/core's changelog.

8.23.4 (2025-10-28)

Bug Fixes

  • add OAuth server default timeout W-19549750 (#1245) (7889fda)
  • make oauth server timeout configurable (#1246) (3a4658e)

8.23.3 (2025-10-21)

Bug Fixes

  • bump salesforce/schemas (cf6aaf3)
  • bump ts-types (6ad56a9)
  • bump versions (9920c39)
  • handle options object in readFile/readFileSync for isomorphic-git compatibility (6239350)
  • writefile api consistency (fc8a88d)

Performance Improvements

  • only instantiate stateAggregator if no connection passed in (6636048)
Commits

Updates vscode-html-languageservice from 5.5.2 to 5.6.0

Release notes

Sourced from vscode-html-languageservice's releases.

v5.6.0

Changes:

  • #221: release 5.6.0
  • #219: Add setting to disable end tag suggestions
  • #216: Setting to disable end tag suggestions
  • #220: doc[README.md]: add notes about syntax highlighting and web-data source near API section

This list of changes was auto generated.

Changelog

Sourced from vscode-html-languageservice's changelog.

5.6.0 / 2025-10-16

  • New settings CompletionConfiguration.hideEndTagSuggestions. If set, doComplete will not propose closing tags.

5.2.0 / 2024-03-22

  • Added HTMLFormatConfiguration.templating now also take a list of template languages.

5.1.0 / 2022-09-11

  • Added LanguageService.findDocumentSymbols2. Returns the symbols found in a document as DocumentSymbol[].

5.0.0 / 2022-05-18

4.2.0 / 2021-11-29

  • Added new API htmlLanguageService.doQuoteComplete. Called after an attribute=, it will compute either "" or '' depending on CompletionConfiguration.attributeDefaultValue or null, if no quote completion should be performed.

4.1.0 / 2021-09-27

  • New settings CompletionConfiguration.attributeDefaultValue. Defines how attribute values are completed: With single or double quotes, or no quotes.

4.0.0 / 2020-12-14

3.2.0 / 2020-11-30

  • New parameter HoverSettings for LanguageService.doHover: Defines whether the hover contains element documentation and/or a reference to MDN.
  • Deprecated LanguageService.findOnTypeRenameRanges, replaced by New API LanguageService.findLinkedEditingRanges.

3.1.0 / 2020-07-29

  • Use TextDocument from vscode-languageserver-textdocument
  • Fix formatting for <p> tags with optional closing
  • New API LanguageService.findOnTypeRenameRanges. For a given position, find the matching close tag so they can be renamed synchronously.
  • New API LanguageServiceOptions.customDataProviders to add the knowledge of custom tags, attributes and attribute-values and LanguageService.setDataProviders to update the data providers.
  • New API getDefaultHTMLDataProvider to get the default HTML data provider and newHTMLDataProvider to create a new provider from data.
  • New API LanguageServiceOptions.fileSystemProvider with FileSystemProvider to query the file system (currently used for path completion)
  • New API LanguageService.doComplete2 which is synchronous and also returns path completion proposals when LanguageServiceOptions.fileSystemProvider is provided.

3.0.3 / 2019-07-25

  • DocumentContext.resolveReference can also return undefined (if the ref is invalid)

3.0.0 / 2019-06-12

... (truncated)

Commits
  • 144f3b5 release 5.6.0 (#221)
  • 28e96e4 Add setting to disable end tag suggestions (#219)
  • 6d8c8cf doc[README.md]: add notes about syntax highlighting and web-data source near ...
  • See full diff in compare view

Updates yaml from 2.8.1 to 2.8.2

Release notes

Sourced from yaml's releases.

v2.8.2

  • Serialize -0 as -0 (#638)
  • Do not double newlines for empty map values (#642)
Commits
  • 086fa6b 2.8.2
  • 95f01e9 chore: Add funding to package.json
  • 152e204 style: Apply updated Prettier rules & satisfy updated ESLint
  • 3f3378c chore: Drop unused dependency cross-env
  • f0b9af7 chore: Update to @​rollup/plugin-replace v6
  • e3cafc7 chore: Update to eslint-config-prettier v10
  • 553c1b5 chore: Refresh lockfile
  • 70a8db3 fix: Do not double newlines for empty map values (#642)
  • 92821f2 ci: Limit action permissions to minimum required
  • 95285f8 fix: Serialize -0 as -0 (fixes #638)
  • Additional commits viewable in compare view

Updates @babel/core from 7.28.4 to 7.28.5

Release notes

Sourced from @​babel/core's releases.

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Committers: 8

Changelog

Sourced from @​babel/core's changelog.

v7.28.5 (2025-10-23)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​babel/core since your current version.


Updates @babel/preset-env from 7.28.3 to 7.28.5

Release notes

Sourced from @​babel/preset-env's releases.

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Committers: 8

v7.28.4 (2025-09-05)

Thanks @​gwillen and @​mrginglymus for your first PRs!

🏠 Internal

  • babel-core, babel-helper-check-duplicate-nodes, babel-traverse, babel-types
  • babel-plugin-transform-regenerator

... (truncated)

Changelog

Sourced from @​babel/preset-env's changelog.

v7.28.5 (2025-10-23)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

v7.28.4 (2025-09-05)

🏠 Internal

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​babel/preset-env since your current version.


Updates @typescript-eslint/eslint-plugin from 8.46.1 to 8.48.0

Release notes

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

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

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

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

... (truncated)

Changelog

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

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)

🩹 Fixes

  • typescript-estree: disallow binding patterns in parameter properties (#11760)
  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)

❤️ Thank You

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

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

8.46.4 (2025-11-10)

🩹 Fixes

  • parser: error when both projectService and project are set (#11333)
  • eslint-plugin: handle override modifier in promise-function-async fixer (#11730)
  • eslint-plugin: [no-deprecated] fix double-report on computed literal identifiers (#11006, #10958)

❤️ Thank You

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

8.46.3 (2025-11-03)

... (truncated)

Commits
  • 6fb1551 chore(release): publish 8.48.0
  • d26e9de chore(eslint-plugin): correct TODO comment on the wrong line (#11773)
  • 5f04910 fix(typescript-estree): disallow binding patterns in parameter properties (#1...
  • a4dc42a chore: migrate to nx 22 (#11780)
  • 2ffb168 feat(eslint-plugin): [no-redundant-type-constituents] use assignability check...
  • 5ea21f1 fix(eslint-plugin): [consistent-generic-constructors] ignore when constructor...
  • 28cf803 chore(release): publish 8.47.0
  • 6c6db24 feat(eslint-plugin): [no-unused-private-class-members] new extension rule (#1...
  • 843f144 chore(release): publish 8.46.4
  • 997e0c0 fix(parser): error when both projectService and project are set (#11333)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 8.46.1 to 8.48.0

Release notes

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

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (

…updates

Bumps the minor-and-patch group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse) | `7.28.4` | `7.28.5` |
| [@graphql-tools/graphql-tag-pluck](https://github.com/ardatan/graphql-tools/tree/HEAD/packages/graphql-tag-pluck) | `8.3.21` | `8.3.26` |
| [@salesforce/core](https://github.com/forcedotcom/sfdx-core) | `8.23.2` | `8.23.4` |
| [vscode-html-languageservice](https://github.com/Microsoft/vscode-html-languageservice) | `5.5.2` | `5.6.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.1` | `2.8.2` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.28.4` | `7.28.5` |
| [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) | `7.28.3` | `7.28.5` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.46.1` | `8.48.0` |
| [@vscode/vsce](https://github.com/Microsoft/vsce) | `3.6.2` | `3.7.1` |
| [esbuild](https://github.com/evanw/esbuild) | `0.25.10` | `0.27.0` |
| [graphql](https://github.com/graphql/graphql-js) | `16.11.0` | `16.12.0` |
| [minimatch](https://github.com/isaacs/minimatch) | `10.0.3` | `10.1.1` |
| [mocha](https://github.com/mochajs/mocha) | `11.7.4` | `11.7.5` |
| [ovsx](https://github.com/eclipse/openvsx/tree/HEAD/cli) | `0.10.6` | `0.10.7` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.2` |



Updates `@babel/traverse` from 7.28.4 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-traverse)

Updates `@graphql-tools/graphql-tag-pluck` from 8.3.21 to 8.3.26
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/graphql-tag-pluck/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/graphql-tag-pluck)

Updates `@graphql-tools/utils` from 10.9.1 to 10.11.0
- [Release notes](https://github.com/ardatan/graphql-tools/releases)
- [Changelog](https://github.com/ardatan/graphql-tools/blob/master/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/ardatan/graphql-tools/commits/@graphql-tools/[email protected]/packages/utils)

Updates `@salesforce/core` from 8.23.2 to 8.23.4
- [Release notes](https://github.com/forcedotcom/sfdx-core/releases)
- [Changelog](https://github.com/forcedotcom/sfdx-core/blob/main/CHANGELOG.md)
- [Commits](forcedotcom/sfdx-core@8.23.2...8.23.4)

Updates `vscode-html-languageservice` from 5.5.2 to 5.6.0
- [Release notes](https://github.com/Microsoft/vscode-html-languageservice/releases)
- [Changelog](https://github.com/microsoft/vscode-html-languageservice/blob/main/CHANGELOG.md)
- [Commits](microsoft/vscode-html-languageservice@v5.5.2...v5.6.0)

Updates `yaml` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.1...v2.8.2)

Updates `@babel/core` from 7.28.4 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-core)

Updates `@babel/preset-env` from 7.28.3 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-preset-env)

Updates `@typescript-eslint/eslint-plugin` from 8.46.1 to 8.48.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.48.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.46.1 to 8.48.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.48.0/packages/parser)

Updates `@vscode/vsce` from 3.6.2 to 3.7.1
- [Release notes](https://github.com/Microsoft/vsce/releases)
- [Commits](microsoft/vscode-vsce@v3.6.2...v3.7.1)

Updates `esbuild` from 0.25.10 to 0.27.0
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.25.10...v0.27.0)

Updates `graphql` from 16.11.0 to 16.12.0
- [Release notes](https://github.com/graphql/graphql-js/releases)
- [Commits](graphql/graphql-js@v16.11.0...v16.12.0)

Updates `minimatch` from 10.0.3 to 10.1.1
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v10.0.3...v10.1.1)

Updates `mocha` from 11.7.4 to 11.7.5
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/v11.7.5/CHANGELOG.md)
- [Commits](mochajs/mocha@v11.7.4...v11.7.5)

Updates `ovsx` from 0.10.6 to 0.10.7
- [Release notes](https://github.com/eclipse/openvsx/releases)
- [Changelog](https://github.com/eclipse/openvsx/blob/master/cli/CHANGELOG.md)
- [Commits](https://github.com/eclipse/openvsx/commits/HEAD/cli)

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

Updates `rimraf` from 6.0.1 to 6.1.2
- [Changelog](https://github.com/isaacs/rimraf/blob/main/CHANGELOG.md)
- [Commits](isaacs/rimraf@v6.0.1...v6.1.2)

---
updated-dependencies:
- dependency-name: "@babel/traverse"
  dependency-version: 7.28.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@graphql-tools/graphql-tag-pluck"
  dependency-version: 8.3.26
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@graphql-tools/utils"
  dependency-version: 10.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@salesforce/core"
  dependency-version: 8.23.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: vscode-html-languageservice
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: yaml
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@babel/core"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@babel/preset-env"
  dependency-version: 7.28.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@vscode/vsce"
  dependency-version: 3.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: esbuild
  dependency-version: 0.27.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: graphql
  dependency-version: 16.12.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: minimatch
  dependency-version: 10.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: mocha
  dependency-version: 11.7.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ovsx
  dependency-version: 0.10.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: rimraf
  dependency-version: 6.1.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 1, 2025
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant