Skip to content

Bump the non-cdk-dependencies group across 1 directory with 6 updates#309

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/non-cdk-dependencies-92c3e28013
Closed

Bump the non-cdk-dependencies group across 1 directory with 6 updates#309
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/non-cdk-dependencies-92c3e28013

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps the non-cdk-dependencies group with 6 updates in the / directory:

Package From To
@guardian/eslint-config 13.0.2 13.0.5
esbuild 0.27.2 0.27.3
eslint 9.39.2 10.0.2
@aws-sdk/client-cloudwatch 3.995.0 3.996.0
@aws-sdk/client-s3 3.991.0 3.996.0
@aws-sdk/client-secrets-manager 3.991.0 3.996.0

Updates @guardian/eslint-config from 13.0.2 to 13.0.5

Release notes

Sourced from @​guardian/eslint-config's releases.

@​guardian/eslint-config@​13.0.5

Patch Changes

  • d8e3ce5: bump dependencies

@​guardian/eslint-config@​13.0.4

Patch Changes

  • accf6d8: update deps: eslint-plugin-storybook from 10.1.10 to 10.2.0, globals from 17.0.0 to 17.1.0

@​guardian/eslint-config@​13.0.3

Patch Changes

  • a79dc08: Fix ERR_MODULE_NOT_FOUND when importing @​guardian/eslint-config in a project that does not have Storybook.
Changelog

Sourced from @​guardian/eslint-config's changelog.

13.0.5

Patch Changes

  • d8e3ce5: bump dependencies

13.0.4

Patch Changes

  • accf6d8: update deps: eslint-plugin-storybook from 10.1.10 to 10.2.0, globals from 17.0.0 to 17.1.0

13.0.3

Patch Changes

  • a79dc08: Fix ERR_MODULE_NOT_FOUND when importing @​guardian/eslint-config in a project that does not have Storybook.
Commits
  • c3d6185 Bump package versions
  • d8e3ce5 Chore(deps): Bump the dependencies group across 1 directory with 3 updates
  • c8746f7 Bump package versions
  • accf6d8 Chore(deps): Bump the dependencies group with 2 updates
  • 21b5b2e Bump package versions
  • a79dc08 fix: ERR_MODULE_NOT_FOUND when loading @​guardian/eslint-config without Storybook
  • 95c28eb Chore(deps): Bump the dependencies group with 2 updates
  • See full diff in compare view

Updates esbuild from 0.27.2 to 0.27.3

Release notes

Sourced from esbuild's releases.

v0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.3

  • Preserve URL fragments in data URLs (#4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }

... (truncated)

Commits
  • 9129e00 publish 0.27.3 to npm
  • e20e411 small fix to release notes
  • 0dc0f2d fix #4322: parse and print CSS @scope rules
  • 55fe391 update firefox css gradient support
  • 2c35297 update gradient lowering transform
  • 9209e44 Update Go to 1.25.7 (#4388)
  • e8d861b close #4374: compat table for the using feature
  • 19b8887 no longer need williamkapke/node-compat-table
  • 7e44218 the kangax/compat-table repo moved to a new url
  • 23b9338 run make update-compat-table
  • Additional commits viewable in compare view

Updates eslint from 9.39.2 to 10.0.2

Release notes

Sourced from eslint's releases.

v10.0.2

Bug Fixes

  • 2b72361 fix: update ajv to 6.14.0 to address security vulnerabilities (#20537) (루밀LuMir)

Documentation

  • 13eeedb docs: link rule type explanation to CLI option --fix-type (#20548) (Mike McCready)
  • 98cbf6b docs: update migration guide per Program range change (#20534) (Huáng Jùnliàng)
  • 61a2405 docs: add missing semicolon in vars-on-top rule example (#20533) (Abilash)

Chores

  • 951223b chore: update dependency @​eslint/eslintrc to ^3.3.4 (#20553) (renovate[bot])
  • 6aa1afe chore: update dependency eslint-plugin-jsdoc to ^62.7.0 (#20536) (Milos Djermanovic)

v10.0.1

Bug Fixes

  • c87d5bd fix: update eslint (#20531) (renovate[bot])
  • d841001 fix: update minimatch to 10.2.1 to address security vulnerabilities (#20519) (루밀LuMir)
  • 04c2147 fix: update error message for unused suppressions (#20496) (fnx)
  • 38b089c fix: update dependency @​eslint/config-array to ^0.23.1 (#20484) (renovate[bot])

Documentation

  • 5b3dbce docs: add AI acknowledgement section to templates (#20431) (루밀LuMir)
  • 6f23076 docs: toggle nav in no-JS mode (#20476) (Tanuj Kanti)
  • b69cfb3 docs: Update README (GitHub Actions Bot)

Chores

  • e5c281f chore: updates for v9.39.3 release (Jenkins)
  • 8c3832a chore: update @​typescript-eslint/parser to ^8.56.0 (#20514) (Milos Djermanovic)
  • 8330d23 test: add tests for config-api (#20493) (Milos Djermanovic)
  • 37d6e91 chore: remove eslint v10 prereleases from eslint-config-eslint deps (#20494) (Milos Djermanovic)
  • da7cd0e refactor: cleanup error message templates (#20479) (Francesco Trotta)
  • 84fb885 chore: package.json update for @​eslint/js release (Jenkins)
  • 1f66734 chore: add eslint to peerDependencies of @eslint/js (#20467) (Milos Djermanovic)

v10.0.0

Breaking Changes

  • f9e54f4 feat!: estimate rule-tester failure location (#20420) (ST-DDT)
  • a176319 feat!: replace chalk with styleText and add color to ResultsMeta (#20227) (루밀LuMir)
  • c7046e6 feat!: enable JSX reference tracking (#20152) (Pixel998)
  • fa31a60 feat!: add name to configs (#20015) (Kirk Waiblinger)
  • 3383e7e fix!: remove deprecated SourceCode methods (#20137) (Pixel998)
  • 501abd0 feat!: update dependency minimatch to v10 (#20246) (renovate[bot])
  • ca4d3b4 fix!: stricter rule tester assertions for valid test cases (#20125) (唯然)
  • 96512a6 fix!: Remove deprecated rule context methods (#20086) (Nicholas C. Zakas)
  • c69fdac feat!: remove eslintrc support (#20037) (Francesco Trotta)
  • 208b5cc feat!: Use ScopeManager#addGlobals() (#20132) (Milos Djermanovic)
  • a2ee188 fix!: add uniqueItems: true in no-invalid-regexp option (#20155) (Tanuj Kanti)
  • a89059d feat!: Program range span entire source text (#20133) (Pixel998)
  • 39a6424 fix!: assert 'text' is a string across all RuleFixer methods (#20082) (Pixel998)
  • f28fbf8 fix!: Deprecate "always" and "as-needed" options of the radix rule (#20223) (Milos Djermanovic)

... (truncated)

Commits
  • 55122d6 10.0.2
  • 80f1e29 Build: changelog update for 10.0.2
  • 951223b chore: update dependency @​eslint/eslintrc to ^3.3.4 (#20553)
  • 13eeedb docs: link rule type explanation to CLI option --fix-type (#20548)
  • 6aa1afe chore: update dependency eslint-plugin-jsdoc to ^62.7.0 (#20536)
  • 2b72361 fix: update ajv to 6.14.0 to address security vulnerabilities (#20537)
  • 98cbf6b docs: update migration guide per Program range change (#20534)
  • 61a2405 docs: add missing semicolon in vars-on-top rule example (#20533)
  • 0bd5497 10.0.1
  • ddb80ef Build: changelog update for 10.0.1
  • Additional commits viewable in compare view

Updates @aws-sdk/client-cloudwatch from 3.995.0 to 3.996.0

Release notes

Sourced from @​aws-sdk/client-cloudwatch's releases.

v3.996.0

3.996.0(2026-02-23)

Chores
Documentation Changes
  • client-controlcatalog: Updated ExemptedPrincipalArns parameter documentation for improved accuracy (dd772c6d)
New Features
  • clients: update client endpoints as of 2026-02-23 (02d83401)
  • client-wickr: AWS Wickr now provides APIs to manage your Wickr OpenTDF integration. These APIs enable you to test and save your OpenTDF configuration allowing you to manage rooms based on Trusted Data Format attributes. (750b4d86)
  • client-bedrock: Automated Reasoning checks in Amazon Bedrock Guardrails now support fidelity report generation. The new workflow type assesses policy coverage and accuracy against customer documents. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API adds support for the three new asset types. (3fe66102)
  • client-dynamodb: This change supports the creation of multi-account global tables. It adds one new arguments to UpdateTable, GlobalTableSettingsReplicationMode. (8e185cb4)
  • client-quicksight: Adds support for SEMISTRUCT to InputColumn Type (581e9ea9)
  • client-connectcases: SearchCases API can now accept 25 fields in the request and response as opposed to the previous limit of 10. DeleteField's hard limit of 100 fields per domain has been lifted. (21ae04f9)
  • client-mediatailor: Updated endpoint rule set for dualstack endpoints. Added a new opt-in option to log raw ad decision server requests for Playback Configurations. (3068c8ee)
  • client-datazone: Add workflow properties support to connections APIs (b76f82b3)
Bug Fixes
  • core: handle empty error response body in AwsQuery protocol deserialization (#7766) (7d973147)
  • scripts: disable Rollup externalLiveBindings to fix Jest auto-mocking (#7767) (95d1cc6c)
  • protocols: handle missing error.Error in queryCompat mode (#7758) (15a27f99)
Other Changes
  • build: revert - run partial package build prior to snapshot-write (#7768)" (#7775) (fb08e5f8)
Tests

For list of updated packages, view updated-packages.md in assets-3.996.0.zip

Changelog

Sourced from @​aws-sdk/client-cloudwatch's changelog.

3.996.0 (2026-02-23)

Note: Version bump only for package @​aws-sdk/client-cloudwatch

Commits

Updates @aws-sdk/client-s3 from 3.991.0 to 3.996.0

Release notes

Sourced from @​aws-sdk/client-s3's releases.

v3.996.0

3.996.0(2026-02-23)

Chores
Documentation Changes
  • client-controlcatalog: Updated ExemptedPrincipalArns parameter documentation for improved accuracy (dd772c6d)
New Features
  • clients: update client endpoints as of 2026-02-23 (02d83401)
  • client-wickr: AWS Wickr now provides APIs to manage your Wickr OpenTDF integration. These APIs enable you to test and save your OpenTDF configuration allowing you to manage rooms based on Trusted Data Format attributes. (750b4d86)
  • client-bedrock: Automated Reasoning checks in Amazon Bedrock Guardrails now support fidelity report generation. The new workflow type assesses policy coverage and accuracy against customer documents. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API adds support for the three new asset types. (3fe66102)
  • client-dynamodb: This change supports the creation of multi-account global tables. It adds one new arguments to UpdateTable, GlobalTableSettingsReplicationMode. (8e185cb4)
  • client-quicksight: Adds support for SEMISTRUCT to InputColumn Type (581e9ea9)
  • client-connectcases: SearchCases API can now accept 25 fields in the request and response as opposed to the previous limit of 10. DeleteField's hard limit of 100 fields per domain has been lifted. (21ae04f9)
  • client-mediatailor: Updated endpoint rule set for dualstack endpoints. Added a new opt-in option to log raw ad decision server requests for Playback Configurations. (3068c8ee)
  • client-datazone: Add workflow properties support to connections APIs (b76f82b3)
Bug Fixes
  • core: handle empty error response body in AwsQuery protocol deserialization (#7766) (7d973147)
  • scripts: disable Rollup externalLiveBindings to fix Jest auto-mocking (#7767) (95d1cc6c)
  • protocols: handle missing error.Error in queryCompat mode (#7758) (15a27f99)
Other Changes
  • build: revert - run partial package build prior to snapshot-write (#7768)" (#7775) (fb08e5f8)
Tests

For list of updated packages, view updated-packages.md in assets-3.996.0.zip

v3.995.0

3.995.0(2026-02-20)

Chores

... (truncated)

Changelog

Sourced from @​aws-sdk/client-s3's changelog.

3.996.0 (2026-02-23)

Note: Version bump only for package @​aws-sdk/client-s3

3.995.0 (2026-02-20)

Note: Version bump only for package @​aws-sdk/client-s3

3.994.0 (2026-02-19)

Note: Version bump only for package @​aws-sdk/client-s3

3.993.0 (2026-02-18)

Note: Version bump only for package @​aws-sdk/client-s3

3.992.0 (2026-02-17)

Note: Version bump only for package @​aws-sdk/client-s3

Commits

Updates @aws-sdk/client-secrets-manager from 3.991.0 to 3.996.0

Release notes

Sourced from @​aws-sdk/client-secrets-manager's releases.

v3.996.0

3.996.0(2026-02-23)

Chores
Documentation Changes
  • client-controlcatalog: Updated ExemptedPrincipalArns parameter documentation for improved accuracy (dd772c6d)
New Features
  • clients: update client endpoints as of 2026-02-23 (02d83401)
  • client-wickr: AWS Wickr now provides APIs to manage your Wickr OpenTDF integration. These APIs enable you to test and save your OpenTDF configuration allowing you to manage rooms based on Trusted Data Format attributes. (750b4d86)
  • client-bedrock: Automated Reasoning checks in Amazon Bedrock Guardrails now support fidelity report generation. The new workflow type assesses policy coverage and accuracy against customer documents. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API adds support for the three new asset types. (3fe66102)
  • client-dynamodb: This change supports the creation of multi-account global tables. It adds one new arguments to UpdateTable, GlobalTableSettingsReplicationMode. (8e185cb4)
  • client-quicksight: Adds support for SEMISTRUCT to InputColumn Type (581e9ea9)
  • client-connectcases: SearchCases API can now accept 25 fields in the request and response as opposed to the previous limit of 10. DeleteField's hard limit of 100 fields per domain has been lifted. (21ae04f9)
  • client-mediatailor: Updated endpoint rule set for dualstack endpoints. Added a new opt-in option to log raw ad decision server requests for Playback Configurations. (3068c8ee)
  • client-datazone: Add workflow properties support to connections APIs (b76f82b3)
Bug Fixes
  • core: handle empty error response body in AwsQuery protocol deserialization (#7766) (7d973147)
  • scripts: disable Rollup externalLiveBindings to fix Jest auto-mocking (#7767) (95d1cc6c)
  • protocols: handle missing error.Error in queryCompat mode (#7758) (15a27f99)
Other Changes
  • build: revert - run partial package build prior to snapshot-write (#7768)" (#7775) (fb08e5f8)
Tests

For list of updated packages, view updated-packages.md in assets-3.996.0.zip

v3.995.0

3.995.0(2026-02-20)

Chores

... (truncated)

Changelog

Sourced from @​aws-sdk/client-secrets-manager's changelog.

3.996.0 (2026-02-23)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.995.0 (2026-02-20)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.994.0 (2026-02-19)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.993.0 (2026-02-18)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

3.992.0 (2026-02-17)

Note: Version bump only for package @​aws-sdk/client-secrets-manager

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 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 stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the non-cdk-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@guardian/eslint-config](https://github.com/guardian/csnx/tree/HEAD/libs/@guardian/eslint-config) | `13.0.2` | `13.0.5` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.2` | `0.27.3` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.0.2` |
| [@aws-sdk/client-cloudwatch](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch) | `3.995.0` | `3.996.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.991.0` | `3.996.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.991.0` | `3.996.0` |



Updates `@guardian/eslint-config` from 13.0.2 to 13.0.5
- [Release notes](https://github.com/guardian/csnx/releases)
- [Changelog](https://github.com/guardian/csnx/blob/main/libs/@guardian/eslint-config/CHANGELOG.md)
- [Commits](https://github.com/guardian/csnx/commits/@guardian/eslint-config@13.0.5/libs/@guardian/eslint-config)

Updates `esbuild` from 0.27.2 to 0.27.3
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.27.2...v0.27.3)

Updates `eslint` from 9.39.2 to 10.0.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v10.0.2)

Updates `@aws-sdk/client-cloudwatch` from 3.995.0 to 3.996.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-cloudwatch/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.996.0/clients/client-cloudwatch)

Updates `@aws-sdk/client-s3` from 3.991.0 to 3.996.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-s3/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.996.0/clients/client-s3)

Updates `@aws-sdk/client-secrets-manager` from 3.991.0 to 3.996.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-secrets-manager/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.996.0/clients/client-secrets-manager)

---
updated-dependencies:
- dependency-name: "@guardian/eslint-config"
  dependency-version: 13.0.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-cdk-dependencies
- dependency-name: esbuild
  dependency-version: 0.27.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-cdk-dependencies
- dependency-name: eslint
  dependency-version: 10.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: non-cdk-dependencies
- dependency-name: "@aws-sdk/client-cloudwatch"
  dependency-version: 3.996.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-cdk-dependencies
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.996.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-cdk-dependencies
- dependency-name: "@aws-sdk/client-secrets-manager"
  dependency-version: 3.996.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-cdk-dependencies
...

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 Feb 23, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 23, 2026 23:06
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 23, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Mar 16, 2026

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

@dependabot dependabot bot closed this Mar 16, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-cdk-dependencies-92c3e28013 branch March 16, 2026 21:58
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.

0 participants