Skip to content

fix(deps): bump the minor-and-patch group across 1 directory with 21 updates#207

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-and-patch-7cd28fe9f0
Closed

fix(deps): bump the minor-and-patch group across 1 directory with 21 updates#207
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-and-patch-7cd28fe9f0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2026

Bumps the minor-and-patch group with 18 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.24.0
vscode-html-languageservice 5.5.2 5.6.1
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.51.0
@vscode/vsce 3.6.2 3.7.1
esbuild 0.25.10 0.27.2
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.4
rimraf 6.0.1 6.1.2
sinon 21.0.0 21.0.1
@types/sinon 17.0.4 21.0.0

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.24.0

Release notes

Sourced from @​salesforce/core's releases.

8.24.0

Features

8.23.7

Bug Fixes

  • bump jsonwebtoken for security fix (f049410)

8.23.6

Bug Fixes

8.23.5

Bug Fixes

  • auth: log scopes associated to the access token (7ec3bea)

8.23.5-qaext.0

Bug Fixes

  • correctly classify even with space (59f492e)

Features

  • move schema for project/scratch-def into this repo (55a6e54)
  • script to update features (38c0bc3)
  • script to update settings with their documentation (cd498fd)

8.23.5-dev.0

Bug Fixes

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)

... (truncated)

Changelog

Sourced from @​salesforce/core's changelog.

8.24.0 (2025-12-05)

Features

8.23.7 (2025-12-04)

Bug Fixes

  • bump jsonwebtoken for security fix (f049410)

8.23.6 (2025-12-03)

Bug Fixes

8.23.5 (2025-12-02)

Bug Fixes

  • auth: log scopes associated to the access token (7ec3bea)

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

... (truncated)

Commits
  • 5564069 chore(release): 8.24.0 [skip ci]
  • 82a26a0 feat: add sfdx-project/scratch-def schemas W-20268457 (#1249)
  • bc2c065 chore(release): 8.23.7 [skip ci]
  • 2247664 Merge pull request #1253 from forcedotcom/sh/bump-jsonwebtoken
  • f049410 fix: bump jsonwebtoken for security fix
  • 8966c91 chore(release): 8.23.6 [skip ci]
  • e245a66 fix: refreshAuth does a GET request W-19992404 (#1248)
  • 589302e chore(release): 8.23.5 [skip ci]
  • 61aab42 Merge pull request #1251 from forcedotcom/cd/log-token-scopes
  • 9c3c95e chore: bump jsforce
  • Additional commits viewable in compare view

Updates vscode-html-languageservice from 5.5.2 to 5.6.1

Release notes

Sourced from vscode-html-languageservice's releases.

v5.6.1

No release notes provided.

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

  • Update to vscode-languageserver-types@3.17

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

  • Update to vscode-languageserver-types@3.16

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

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 @jsforce/jsforce-node from 3.10.8 to 3.10.10

Release notes

Sourced from @​jsforce/jsforce-node's releases.

3.10.10

Bug Fixes

3.10.9

Bug Fixes

  • skip session refresh if connection is blocked W-19992404 (#1774) (c5c1d58)
Changelog

Sourced from @​jsforce/jsforce-node's changelog.

3.10.10 (2025-12-02)

Bug Fixes

3.10.9 (2025-12-01)

Bug Fixes

  • skip session refresh if connection is blocked W-19992404 (#1774) (c5c1d58)
Commits
  • ffbf433 chore(release): 3.10.10 [skip ci]
  • 1535cac fix: update TokenResponse type (#1777)
  • f0d9373 chore(release): 3.10.9 [skip ci]
  • c5c1d58 fix: skip session refresh if connection is blocked W-19992404 (#1774)
  • 785fcfe test: remove SOAP login auth/broad IP range from test setup W-20084113 (#1770)
  • See full diff in compare view

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

Release notes

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

v8.51.0

8.51.0 (2025-12-29)

🚀 Features

  • eslint-plugin: expose rule name via RuleModule interface (#11719)
  • eslint-plugin: [no-useless-default-assignment] fix some cases to optional syntax (#11871)
  • eslint-plugin: add namespace to plugin meta (#11885)
  • tsconfig-utils: more informative error on parsing failures (#11888)

🩹 Fixes

  • eslint-plugin: fix crash and false positives in no-useless-default-assignment (#11845)
  • eslint-plugin: remove fixable from no-dynamic-delete rule (#11876)
  • eslint-plugin: bump ts-api-utils to 2.2.0 (#11881)
  • eslint-plugin: [prefer-optional-chain] handle MemberExpression in final chain position (#11835)

❤️ Thank You

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

v8.50.1

8.50.1 (2025-12-22)

🩹 Fixes

  • eslint-plugin: [method-signature-style] ignore methods that return this (#11813)
  • eslint-plugin: [no-unnecessary-type-assertion] correct handling of undefined vs. void (#11826)

❤️ Thank You

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

v8.50.0

8.50.0 (2025-12-15)

🚀 Features

  • eslint-plugin: [no-useless-default-assignment] add rule (

…updates

Bumps the minor-and-patch group with 18 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.24.0` |
| [vscode-html-languageservice](https://github.com/Microsoft/vscode-html-languageservice) | `5.5.2` | `5.6.1` |
| [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.51.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.2` |
| [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.4` |
| [rimraf](https://github.com/isaacs/rimraf) | `6.0.1` | `6.1.2` |
| [sinon](https://github.com/sinonjs/sinon) | `21.0.0` | `21.0.1` |
| [@types/sinon](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/sinon) | `17.0.4` | `21.0.0` |



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/graphql-tag-pluck@8.3.26/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/utils@10.11.0/packages/utils)

Updates `@salesforce/core` from 8.23.2 to 8.24.0
- [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.24.0)

Updates `vscode-html-languageservice` from 5.5.2 to 5.6.1
- [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.1)

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 `@jsforce/jsforce-node` from 3.10.8 to 3.10.10
- [Release notes](https://github.com/jsforce/jsforce/releases)
- [Changelog](https://github.com/jsforce/jsforce/blob/main/CHANGELOG.md)
- [Commits](jsforce/jsforce@3.10.8...3.10.10)

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

Updates `@typescript-eslint/parser` from 8.46.1 to 8.51.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.51.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.2
- [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.2)

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.4
- [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.4)

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)

Updates `sinon` from 21.0.0 to 21.0.1
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](sinonjs/sinon@v21.0.0...v21.0.1)

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

---
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.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: vscode-html-languageservice
  dependency-version: 5.6.1
  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: "@jsforce/jsforce-node"
  dependency-version: 3.10.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.51.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.51.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.2
  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.4
  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
- dependency-name: sinon
  dependency-version: 21.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@types/sinon"
  dependency-version: 21.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2026
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 1, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 1, 2026
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-minor-and-patch-7cd28fe9f0 branch February 1, 2026 12: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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants