Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
@guardian/eslint-config 13.0.2 13.0.4
esbuild 0.27.2 0.27.3
eslint 9.39.2 10.0.0
@aws-sdk/client-cloudwatch 3.971.0 3.986.0
@aws-sdk/client-s3 3.971.0 3.986.0
@aws-sdk/client-secrets-manager 3.971.0 3.986.0

Updates @guardian/eslint-config from 13.0.2 to 13.0.4

Release notes

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

@​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.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
  • 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.0

Release notes

Sourced from eslint's releases.

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)
  • aa3fb2b fix!: tighten func-names schema (#20119) (Pixel998)
  • f6c0ed0 feat!: report eslint-env comments as errors (#20128) (Francesco Trotta)
  • 4bf739f fix!: remove deprecated LintMessage#nodeType and TestCaseError#type (#20096) (Pixel998)
  • 523c076 feat!: drop support for jiti < 2.2.0 (#20016) (michael faith)
  • 454a292 feat!: update eslint:recommended configuration (#20210) (Pixel998)
  • 4f880ee feat!: remove v10_* and inactive unstable_* flags (#20225) (sethamus)
  • f18115c feat!: no-shadow-restricted-names report globalThis by default (#20027) (sethamus)
  • c6358c3 feat!: Require Node.js ^20.19.0 || ^22.13.0 || >=24 (#20160) (Milos Djermanovic)

Features

  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457) (Francesco Trotta)
  • 290c594 feat: add self to no-implied-eval rule (#20468) (sethamus)
  • 43677de feat: fix handling of function and class expression names in no-shadow (#20432) (Milos Djermanovic)
  • f0cafe5 feat: rule tester add assertion option requireData (#20409) (fnx)
  • f7ab693 feat: output RuleTester test case failure index (#19976) (ST-DDT)
  • 7cbcbf9 feat: add countThis option to max-params (#20236) (Gerkin)
  • f148a5e feat: add error assertion options (#20247) (ST-DDT)
  • 09e6654 feat: update error loc of require-yield and no-useless-constructor (#20267) (Tanuj Kanti)

Bug Fixes

  • 436b82f fix: update eslint (#20473) (renovate[bot])
  • 1d29d22 fix: detect default this binding in Array.fromAsync callbacks (#20456) (Francesco Trotta)
  • 727451e fix: fix regression of global mode report range in strict rule (#20462) (ntnyq)
  • e80485f fix: remove fake FlatESLint and LegacyESLint exports (#20460) (Francesco Trotta)
  • 9eeff3b fix: update esquery (#20423) (cryptnix)
  • b34b938 fix: use Error.prepareStackTrace to estimate failing test location (#20436) (Francesco Trotta)
  • 51aab53 fix: update eslint (#20443) (renovate[bot])
  • 23490b2 fix: handle space before colon in RuleTester location estimation (#20433) (Francesco Trotta)
  • f244dbf fix: use MessagePlaceholderData type from @eslint/core (#20348) (루밀LuMir)
  • d186f8c fix: update eslint (#20427) (renovate[bot])
  • 2332262 fix: error location should not modify error message in RuleTester (#20421) (Milos Djermanovic)
  • ab99b21 fix: ensure filename is passed as third argument to verifyAndFix() (#20405) (루밀LuMir)
  • 8a60f3b fix: remove ecmaVersion and sourceType from ParserOptions type (#20415) (Pixel998)
  • eafd727 fix: remove TDZ scope type (#20231) (jaymarvelz)

... (truncated)

Commits
  • 4e6c4ac 10.0.0
  • ddd8a22 Build: changelog update for 10.0.0
  • bff9091 feat: handle Array.fromAsync in array-callback-return (#20457)
  • 1ece282 chore: ignore /docs/v9.x in link checker (#20452)
  • 034e139 ci: add type integration test for @html-eslint/eslint-plugin (#20345)
  • f3fbc2f chore: set @eslint/js version to 10.0.0 to skip releasing it (#20466)
  • e978dda docs: Update README
  • 4cecf83 docs: Update README
  • c79f0ab docs: Update README
  • afc0681 chore: remove scopeManager.addGlobals patch for typescript-eslint parser (#20...
  • Additional commits viewable in compare view

Updates @aws-sdk/client-cloudwatch from 3.971.0 to 3.986.0

Release notes

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

v3.986.0

3.986.0(2026-02-09)

Chores
  • codegen: smithy-typescript-aws-codegen 0.44.0 (#7719) (1a8de1bf)
Documentation Changes
  • client-lakeformation: Allow cross account v5 in put data lake settings (e10aebc6)
  • client-transfer: This release adds a documentation update for MdnResponse of type "ASYNC" (a9087979)
New Features
  • clients: update client endpoints as of 2026-02-09 (b81f169c)
  • client-connectcampaignsv2: Add the missing event type for WhatsApp (6b19703e)
  • client-pcs: Introduces RESUMING state for clusters, compute node groups, and queues. (78ec45d5)
  • client-eks: Amazon EKS adds a new DescribeUpdate update type, VendedLogsUpdate, to support an integration between EKS Auto Mode and Amazon CloudWatch Vended Logs. (85135c4a)
  • client-neptunedata: Added edgeOnlyLoad boolean parameter to Neptune bulk load request. When TRUE, files are loaded in order without scanning. When FALSE (default), the loader scans files first, then loads vertex files before edge files automatically. (012843ab)
  • client-imagebuilder: EC2 Image Builder now supports wildcard patterns in lifecycle policies with recipes and enhances the experience of tag-scoped policies. (f015ab63)
  • client-ec2: Amazon Secondary Networks is a networking feature that provides high-performance, low-latency connectivity for specialized workloads. (0ba27c28)
Tests
  • middleware-websocket: improve integ test for websocket (#7718) (e25063ae)

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

v3.985.0

3.985.0(2026-02-06)

Chores
  • codegen: generate caret versions for aws-sdk dependencies (#7714) (5682d095)
New Features
  • client-bedrock-data-automation-runtime: Add OutputConfiguration to InvokeDataAutomation input and output to support S3 output (72c126f0)
  • client-deadline: Adds support for tagging jobs during job creation (444dcec9)
  • client-sagemaker: Adding g7e instance support in Sagemaker Training (01f57c15)
  • client-partnercentral-selling: Releasing AWS Opportunity Snapshots for SDK release. (9b27cd2b)
  • client-iot-managed-integrations: Adding support for Custom(General) Authorization in managed integrations for AWS IoT Device Management cloud connectors. (f683f7b9)
Bug Fixes
  • core/protocols: nested Error objects in REST XML (#7717) (2c0d671f)

... (truncated)

Changelog

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

3.986.0 (2026-02-09)

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

3.985.0 (2026-02-06)

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

3.984.0 (2026-02-05)

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

3.983.0 (2026-02-04)

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

3.982.0 (2026-02-03)

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

3.981.0 (2026-02-02)

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

3.980.0 (2026-01-30)

... (truncated)

Commits

Updates @aws-sdk/client-s3 from 3.971.0 to 3.986.0

Release notes

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

v3.986.0

3.986.0(2026-02-09)

Chores
  • codegen: smithy-typescript-aws-codegen 0.44.0 (#7719) (1a8de1bf)
Documentation Changes
  • client-lakeformation: Allow cross account v5 in put data lake settings (e10aebc6)
  • client-transfer: This release adds a documentation update for MdnResponse of type "ASYNC" (a9087979)
New Features
  • clients: update client endpoints as of 2026-02-09 (b81f169c)
  • client-connectcampaignsv2: Add the missing event type for WhatsApp (6b19703e)
  • client-pcs: Introduces RESUMING state for clusters, compute node groups, and queues. (78ec45d5)
  • client-eks: Amazon EKS adds a new DescribeUpdate update type, VendedLogsUpdate, to support an integration between EKS Auto Mode and Amazon CloudWatch Vended Logs. (85135c4a)
  • client-neptunedata: Added edgeOnlyLoad boolean parameter to Neptune bulk load request. When TRUE, files are loaded in order without scanning. When FALSE (default), the loader scans files first, then loads vertex files before edge files automatically. (012843ab)
  • client-imagebuilder: EC2 Image Builder now supports wildcard patterns in lifecycle policies with recipes and enhances the experience of tag-scoped policies. (f015ab63)
  • client-ec2: Amazon Secondary Networks is a networking feature that provides high-performance, low-latency connectivity for specialized workloads. (0ba27c28)
Tests
  • middleware-websocket: improve integ test for websocket (#7718) (e25063ae)

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

v3.985.0

3.985.0(2026-02-06)

Chores
  • codegen: generate caret versions for aws-sdk dependencies (#7714) (5682d095)
New Features
  • client-bedrock-data-automation-runtime: Add OutputConfiguration to InvokeDataAutomation input and output to support S3 output (72c126f0)
  • client-deadline: Adds support for tagging jobs during job creation (444dcec9)
  • client-sagemaker: Adding g7e instance support in Sagemaker Training (01f57c15)
  • client-partnercentral-selling: Releasing AWS Opportunity Snapshots for SDK release. (9b27cd2b)
  • client-iot-managed-integrations: Adding support for Custom(General) Authorization in managed integrations for AWS IoT Device Management cloud connectors. (f683f7b9)
Bug Fixes
  • core/protocols: nested Error objects in REST XML (#7717) (2c0d671f)

... (truncated)

Changelog

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

3.986.0 (2026-02-09)

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

3.985.0 (2026-02-06)

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

3.984.0 (2026-02-05)

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

3.983.0 (2026-02-04)

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

3.982.0 (2026-02-03)

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

3.981.0 (2026-02-02)

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

3.980.0 (2026-01-30)

... (truncated)

Commits

Updates @aws-sdk/client-secrets-manager from 3.971.0 to 3.986.0

Release notes

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

v3.986.0

3.986.0(2026-02-09)

Chores
  • codegen: smithy-typescript-aws-codegen 0.44.0 (#7719) (1a8de1bf)
Documentation Changes
  • client-lakeformation: Allow cross account v5 in put data lake settings (e10aebc6)
  • client-transfer: This release adds a documentation update for MdnResponse of type "ASYNC" (a9087979)
New Features
  • clients: update client endpoints as of 2026-02-09 (b81f169c)
  • client-connectcampaignsv2: Add the missing event type for WhatsApp (6b19703e)
  • client-pcs: Introduces RESUMING state for clusters, compute node groups, and queues. (78ec45d5)
  • client-eks: Amazon EKS adds a new DescribeUpdate update type, VendedLogsUpdate, to support an integration between EKS Auto Mode and Amazon CloudWatch Vended Logs. (85135c4a)
  • client-neptunedata: Added edgeOnlyLoad boolean parameter to Neptune bulk load request. When TRUE, files are loaded in order without scanning. When FALSE (default), the loader scans files first, then loads vertex files before edge files automatically. (012843ab)
  • client-imagebuilder: EC2 Image Builder now supports wildcard patterns in lifecycle policies with recipes and enhances the experience of tag-scoped policies. (f015ab63)
  • client-ec2: Amazon Secondary Networks is a networking feature that provides high-performance, low-latency connectivity for specialized workloads. (0ba27c28)
Tests
  • middleware-websocket: improve integ test for websocket (#7718) (e25063ae)

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

v3.985.0

3.985.0(2026-02-06)

Chores
  • codegen: generate caret versions for aws-sdk dependencies (#7714) (5682d095)
New Features
  • client-bedrock-data-automation-runtime: Add OutputConfiguration to InvokeDataAutomation input and output to support S3 output (72c126f0)
  • client-deadline: Adds support for tagging jobs during job creation (444dcec9)
  • client-sagemaker: Adding g7e instance support in Sagemaker Training (01f57c15)
  • client-partnercentral-selling: Releasing AWS Opportunity Snapshots for SDK release. (9b27cd2b)
  • client-iot-managed-integrations: Adding support for Custom(General) Authorization in managed integrations for AWS IoT Device Management cloud connectors. (f683f7b9)
Bug Fixes
  • core/protocols: nested Error objects in REST XML (#7717) (2c0d671f)

... (truncated)

Changelog

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

3.986.0 (2026-02-09)

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

3.985.0 (2026-02-06)

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

3.984.0 (2026-02-05)

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

3.983.0 (2026-02-04)

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

3.982.0 (2026-02-03)

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

3.981.0 (2026-02-02)

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

3.980.0 (2026-01-30)

... (truncated)

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.4` |
| [esbuild](https://github.com/evanw/esbuild) | `0.27.2` | `0.27.3` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.0.0` |
| [@aws-sdk/client-cloudwatch](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-cloudwatch) | `3.971.0` | `3.986.0` |
| [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) | `3.971.0` | `3.986.0` |
| [@aws-sdk/client-secrets-manager](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-secrets-manager) | `3.971.0` | `3.986.0` |



Updates `@guardian/eslint-config` from 13.0.2 to 13.0.4
- [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.4/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.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.2...v10.0.0)

Updates `@aws-sdk/client-cloudwatch` from 3.971.0 to 3.986.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.986.0/clients/client-cloudwatch)

Updates `@aws-sdk/client-s3` from 3.971.0 to 3.986.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.986.0/clients/client-s3)

Updates `@aws-sdk/client-secrets-manager` from 3.971.0 to 3.986.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.986.0/clients/client-secrets-manager)

---
updated-dependencies:
- dependency-name: "@guardian/eslint-config"
  dependency-version: 13.0.4
  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.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: non-cdk-dependencies
- dependency-name: "@aws-sdk/client-cloudwatch"
  dependency-version: 3.986.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.986.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.986.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 10, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 10, 2026 00:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 10, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Feb 17, 2026

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

@dependabot dependabot bot closed this Feb 17, 2026
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/non-cdk-dependencies-47aa91acd3 branch February 17, 2026 11:32
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