Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the all-dependencies group across 1 directory with 18 updates #110

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github May 1, 2024

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps the all-dependencies group with 18 updates in the / directory:

Package From To
@apollo/server 4.10.2 4.10.4
awilix 8.0.1 10.0.2
jwt-decode 3.1.2 4.0.0
swagger-ui-dist 5.14.0 5.17.2
@types/node 20.12.6 20.12.7
@commitlint/cli 17.8.1 19.3.0
@commitlint/config-conventional 17.8.1 19.2.2
@swc/cli 0.1.65 0.3.12
@swc/core 1.4.13 1.4.17
@typescript-eslint/eslint-plugin 6.21.0 7.8.0
@typescript-eslint/parser 6.21.0 7.8.0
chai 4.4.1 5.1.0
eslint 8.57.0 9.1.1
eslint-config-airbnb-typescript 17.1.0 18.0.0
eslint-plugin-unicorn 48.0.1 52.0.0
husky 8.0.3 9.0.11
supertest 6.3.4 7.0.0
typescript 5.4.4 5.4.5

Updates @apollo/server from 4.10.2 to 4.10.4

Release notes

Sourced from @​apollo/server's releases.

@​apollo/server-integration-testsuite@​4.10.4

Patch Changes

  • Updated dependencies [18a3827]:
    • @​apollo/server@​4.10.4

@​apollo/server@​4.10.4

Patch Changes

  • #7871 18a3827 Thanks @​tninesling! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution.

@​apollo/server-integration-testsuite@​4.10.3

Patch Changes

  • Updated dependencies [5f335a5]:
    • @​apollo/server@​4.10.3

@​apollo/server@​4.10.3

Patch Changes

  • #7866 5f335a5 Thanks @​tninesling! - Catch errors thrown by subscription generators, and gracefully clean up the subscription instead of crashing.
Changelog

Sourced from @​apollo/server's changelog.

4.10.4

Patch Changes

  • #7871 18a3827 Thanks @​tninesling! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution.

4.10.3

Patch Changes

  • #7866 5f335a5 Thanks @​tninesling! - Catch errors thrown by subscription generators, and gracefully clean up the subscription instead of crashing.
Commits

Updates awilix from 8.0.1 to 10.0.2

Changelog

Sourced from awilix's changelog.

v10.0.2

  • Add back createBuildResolver and createDisposableResolver exports (#358)

v10.0.1

  • Add back some type exports (#351)

v10.0.0

  • Add (optional, off by default) strict mode to enforce extra correctness checks in both resolution and registration (#349 by @​fnimick)
  • Reduce the publicly accessible API surface to only that which is needed to use Awilix. This is potentially a breaking change if you were using any of the internal type definitions (#349 by @​fnimick)

v9.0.0

  • Upgrade packages
  • Fix aliasTo to allow passing symbol (#342 by @​zb-sj)
  • Migrate from TSLint to ESLint
  • BREAKING CHANGE: Drop Node 12 support for real this time (updated the engines field)
Commits
  • 8b3234a 10.0.2
  • ad7c0b7 Merge pull request #358 from jeffijoe/fix/missing-exports
  • 35d0142 fix(exports): add back createBuildResolver and createDisposableResolver
  • 8640935 10.0.1
  • 722d4af Merge pull request #351 from jeffijoe/fix/type-exports
  • 129e44c fix(types): add back some missing type exports
  • c9a067e docs(changelog): fix changelog
  • 67a8ef8 10.0.0
  • 7223a42 chore: undo version bump
  • 5f2f7bd Merge pull request #350 from jeffijoe/chore/packages
  • Additional commits viewable in compare view

Updates jwt-decode from 3.1.2 to 4.0.0

Release notes

Sourced from jwt-decode's releases.

v4.0.0

A new version of the library, including a couple of improvements:

  • No longer include a polyfill for atob, as this is supported in all major browsers (and node environments > 14).
  • Compile to ES2017, dropping support for anything that does not support ES2017 (which should be very limited according to caniuse)
  • Use Node's atob when running on node.
  • Drop support for Node 14 and 16, add support for Node 20.
  • Add support for package.json's exports field, for better CJS/ESM support
  • Reorganize build artifacts for better CJS/ESM support (cjs and esm needs to be their own directory with a cjs specific package.json file)
  • Drop manual UMD bundle creation in index.standalone.ts, but rely on rollup instead.
  • Infer JwtPayload and JwtHeader default types from the header argument by using overloads.

Even though some users might experience breaking changes, mostly because of the exports field, the majority should be able to update without making any changes, assuming the SDK is used in environments with support for atob.

Migration to v4.0.0

The jwtDecode function is now no longer the default export, and is instead provided as a named export. Make sure to update your code in places where you are importing this function:

-import jwtDecodefrom "jwt-decode";
+import { jwtDecode } from "jwt-decode";

v4.0.0-beta.4

Breaking changes

Fixed

v4.0.0-beta.3

Breaking changes

Changed

v4.0.0-beta.2

Changed

Fixed

  • Ensure types are bundled and correctly linked #174 (jonkoops)

v4.0.0-beta.1

Fixed

... (truncated)

Changelog

Sourced from jwt-decode's changelog.

Version 4.0.0

Full Changelog

A new version of the library, including a couple of improvements:

  • No longer include a polyfill for atob, as this is supported in all major browsers (and node environments > 14).
  • Compile to ES2017, dropping support for anything that does not support ES2017 (which should be very limited according to caniuse)
  • Use Node's atob when running on node.
  • Drop support for Node 14 and 16, add support for Node 20.
  • Add support for package.json's exports field, for better CJS/ESM support
  • Reorganize build artifacts for better CJS/ESM support (cjs and esm needs to be their own directory with a cjs specific package.json file)
  • Drop manual UMD bundle creation in index.standalone.ts, but rely on rollup instead.
  • Infer JwtPayload and JwtHeader default types from the header argument by using overloads.

Even though some users might experience breaking changes, mostly because of the exports field, the majority should be able to update without making any changes, assuming the SDK is used in environments with support for atob.

Migration to v4.0.0

The jwtDecode function is now no longer the default export, and is instead provided as a named export. Make sure to update your code in places where you are importing this function:

-import jwtDecode from "jwt-decode";
+import { jwtDecode } from "jwt-decode";

Version 4.0.0-beta.4

Full Changelog

Breaking changes

Fixed

Version 4.0.0-beta.3

Full Changelog

Breaking changes

Changed

Version 4.0.0-beta.2

... (truncated)

Commits
  • 3b2d105 Update CHANGELOG.md
  • bd50db0 Release v4.0.0 (#232)
  • bcfd7da Bump actions/checkout from 3 to 4 (#228)
  • 6ec1cba Bump concurrently from 8.2.0 to 8.2.2 (#226)
  • 807d123 Bump @​typescript-eslint/eslint-plugin from 6.4.1 to 6.9.0 (#229)
  • f68e292 Bump eslint-plugin-import from 2.28.1 to 2.29.0 (#230)
  • b2e7489 Bump eslint-import-resolver-typescript from 3.6.0 to 3.6.1 (#225)
  • ccb6488 Bump lint-staged from 14.0.1 to 15.0.2 (#231)
  • cf3cd4f Bump actions/setup-node from 3 to 4 (#227)
  • 0ce8017 pin babel/core to recent version and bump jest
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by auth0-oss, a new releaser for jwt-decode since your current version.


Updates swagger-ui-dist from 5.14.0 to 5.17.2

Release notes

Sourced from swagger-ui-dist's releases.

Swagger UI v5.17.2 Released!

5.17.2 (2024-04-25)

Bug Fixes

  • config: remove system config source (#9875) (333e5e3), closes #5148
  • allow to create SwaggerUI instances without rendering to the DOM container by default

Swagger UI v5.17.1 Released!

5.17.1 (2024-04-24)

Bug Fixes

  • json-schema-2020-12-samples: skip anyOf and oneOf while merging schemas (#9853) (f7373a0), closes #9198
  • utils: fix validation for required values without specified type (#9863) (6fccf9e), closes #8007
  • deps: eliminate runtime errors related to traverse library
  • upstream fixes in swagger-client (v3.27.1, v3.27.2)

Swagger UI v5.17.0 Released!

5.17.0 (2024-04-22)

Features

  • config: expose config and make it overridable (#9862) (17d50a6)
  • swagger-ui-react: rewrite into SSR compatible function component (#9855) (351191b), closes #9243

Swagger UI v5.16.2 Released!

5.16.2 (2024-04-19)

Bug Fixes

  • swagger-ui-react: avoid triggering implicit system rendering (#9847) (3a671c6), closes #9846

Swagger UI v5.16.1 Released!

5.16.1 (2024-04-18)

Bug Fixes

Swagger UI v5.16.0 Released!

5.16.0 (2024-04-18)

... (truncated)

Commits
  • a88cce2 chore(release): cut the v5.17.2 release
  • 333e5e3 fix(config): remove system config source (#9875)
  • 636c352 chore(deps): bump dependabot/fetch-metadata from 2.0.0 to 2.1.0 (#9872)
  • 76495e8 chore(deps-dev): bump @​commitlint/cli from 19.2.2 to 19.3.0 (#9871)
  • 0fc96ce chore(release): cut the v5.17.1 release
  • f7373a0 fix(json-schema-2020-12-samples): skip anyOf and oneOf while merging schemas ...
  • dee2ad0 chore(deps): bump swagger-client from 3.27.0 to 3.27.2 (#9868)
  • 4228d84 chore(deps-dev): bump postcss-preset-env from 9.5.8 to 9.5.9 (#9867)
  • 6fccf9e fix(utils): fix validation for required values without specified type (#9863)
  • cf7b769 chore(deps-dev): bump postcss-preset-env from 9.5.6 to 9.5.8 (#9861)
  • Additional commits viewable in compare view

Updates @types/node from 20.12.6 to 20.12.7

Commits

Updates @commitlint/cli from 17.8.1 to 19.3.0

Release notes

Sourced from @​commitlint/cli's releases.

v19.3.0

19.3.0 (2024-04-23)

Features

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.2...v19.3.0

v19.2.2

19.2.2 (2024-04-14)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

v19.2.1

19.2.1 (2024-03-19)

Bug Fixes

New Contributors

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

19.3.0 (2024-04-23)

Note: Version bump only for package @​commitlint/cli

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/cli

19.2.1 (2024-03-19)

Note: Version bump only for package @​commitlint/cli

19.2.0 (2024-03-15)

Features

  • cli: introduce new --last flag, to stop recommending HEAD~1 (#3916) (99f4f3f)

19.1.0 (2024-03-12)

Note: Version bump only for package @​commitlint/cli

19.0.3 (2024-02-28)

Note: Version bump only for package @​commitlint/cli

... (truncated)

Commits

Updates @commitlint/config-conventional from 17.8.1 to 19.2.2

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.2.2

19.2.2 (2024-04-14)

Bug Fixes

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.1...v19.2.2

v19.2.1

19.2.1 (2024-03-19)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.2.0...v19.2.1

v19.2.0

19.2.0 (2024-03-15)

Features

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.1.0...v19.2.0

v19.1.0

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.2.2 (2024-04-14)

Note: Version bump only for package @​commitlint/config-conventional

19.1.0 (2024-03-12)

Note: Version bump only for package @​commitlint/config-conventional

19.0.3 (2024-02-28)

Note: Version bump only for package @​commitlint/config-conventional

19.0.0 (2024-02-27)

Reverts

  • Revert "chore!: minimum node version v20" (2816783)

BREAKING CHANGES

  • migrate to pure ESM

  • feat: migrate to pure ESM

  • chore: update snapshot

  • fix: load parserPreset with another await

  • test: migrate to vitest

  • test: remove no replacement --runInBand test-ci script

  • chore: fix code reviews

... (truncated)

Commits

Updates @swc/cli from 0.1.65 to 0.3.12

Commits

Updates @swc/core from 1.4.13 to 1.4.17

Changelog

Sourced from @​swc/core's changelog.

[1.4.17] - 2024-04-23

Bug Fixes

  • (es) Ignore sourceMappingURL in string literals (#8879) (d7188cd)

  • (es/codegen) Use Str.raw for es5 (#8873) (c7a06b1)

  • (es/compat) Fix async generator (#8881) (063eabd)

  • (es/resolver) Prioritze jsc.paths by length in tsc resolver (#8875) (e22c368)

  • (html/codegen) Expand elements before which body isn’t elided (#8877) (5419a94)

[1.4.16] - 2024-04-18

Bug Fixes

  • (es/helpers) Fix resolving of usingCtx helper (#8874) (6e9d1a4)

[1.4.15] - 2024-04-17

Bug Fixes

  • (es/codegen) Fix ascii_only for identifiers (#8866) (2075a23)

  • (es/minifier) Remove raw of strings after modification (#8865) (740c0bb)

  • (es/parser) Fix span of BindingIdent (#8859) (fbd32fb)

  • (es/proposal) Update explicit resource management to match spec (#8860) (6d24076)

Features

  • (es/transforms) Allocate stacks dynamically (#8867) (a1c5415)

... (truncated)

Commits
  • 3311da7 chore: Publish 1.4.17 with swc_core v0.90.37
  • b1c22d5 chore: Improve publish script
  • fedf06f chore: Publish 1.4.17-nightly-20240423.3
  • 2c1e959 chore: Publish 1.4.17-nightly-20240423.2
  • 7b08d38 chore: Update bindings
  • 2fbb864 chore: Publish 1.4.17-nightly-20240423.1
  • 6d3c41d chore: Bump crates
  • c7a06b1 fix(es/codegen): Use Str.raw for es5 (#8873)
  • f5e50c2 chore: Bump crates
  • 063eabd fix(es/compat): Fix async generator (#8881)
  • Additional commits viewable in compare view

Updates @typescript-eslint/eslint-plugin from 6.21.0 to 7.8.0

Release notes

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

v7.8.0

7.8.0 (2024-04-29)

🚀 Features

  • rule-tester: assert suggestion messages are unique (#8995)
  • typescript-estree: add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles glob restrictions (#8925)

🩹 Fixes

  • eslint-plugin: [no-unsafe-argument] handle tagged templates (#8746)
  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check (#8717)
  • eslint-plugin: [consistent-type-assertions] handle tagged templates (#8993)
  • eslint-plugin: [no-unsafe-return] handle union types (#9001)
  • eslint-plugin: [no-unused-vars] clear error report range (#8640)
  • utils: export ESLint backwards-compat functions (#8976)

❤️ Thank You

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

v7.7.1

7.7.1 (2024-04-22)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] handle shorthand property assignment (#8800)
  • eslint-plugin: [explicit-function-return-type] fix checking wrong ancestor's return type (#8809)
  • eslint-plugin: [prefer-optional-chain] only look at left operand for requireNullish (#8559)
  • eslint-plugin: [no-for-in-array] refine report location (#8874)
  • eslint-plugin: [no-unnecessary-type-assertion] allow non-null assertion for void type (#8912)

❤️ Thank You

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

v7.7.0

7.7.0 (2024-04-15)

... (truncated)

Changelog

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

7.8.0 (2024-04-29)

🩹 Fixes

  • eslint-plugin: [no-unsafe-argument] handle tagged templates

  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check

  • eslint-plugin: [consistent-type-assertions] handle tagged templates

  • eslint-plugin: [no-unsafe-return] handle union types

  • eslint-plugin: [no-unused-vars] clear error report range

❤️ Thank You

  • auvred
  • Josh Goldberg ✨
  • jsfm01
  • Kim Sang Du
  • YeonJuan

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

7.7.1 (2024-04-22)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] handle shorthand property assignment

  • eslint-plugin: [explicit-function-return-type] fix checking wrong ancestor's return type

  • eslint-plugin: [prefer-optional-chain] only look at left operand for requireNullish

  • eslint-plugin: [no-for-in-array] refine report location

  • eslint-plugin: [no-unnecessary-type-assertion] allow non-null assertion for void type

❤️ Thank You

  • Abraham Guo
  • Kirk Waiblinger
  • YeonJuan

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

... (truncated)

Commits
  • ee677f6 chore(release): publish 7.8.0
  • 8127873 fix(eslint-plugin): [no-unused-vars] clear error report range (#8640)
  • 216d1b0 fix(eslint-plugin): [no-unsafe-return] handle union types (#9001)
  • 51d2193 fix(eslint-plugin): [consistent-type-assertions] handle tagged templates (#8993)
  • 4bed24d fix(eslint-plugin): [prefer-optional-chain] suggests optional chaining during...
  • b0f7aa4 fix(eslint-plugin): [no-unsafe-argument] handle tagged templates (#8746)
  • 219b841 chore: resolve lint issues on main branch (#8966)
  • 3e19436 chore(release): publish 7.7.1
  • b2552ca fix(eslint-plugin): [no-unnecessary-type-assertion] allow non-null assertion ...
  • fdeba42 fix(eslint-plugin): [no-for-in-array] refine report location (#8874)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.21.0 to 7.8.0

Release notes

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

v7.8.0

7.8.0 (2024-04-29)

🚀 Features

  • rule-tester: assert suggestion messages are unique (#8995)
  • typescript-estree: add maximumDefaultProjectFileMatchCount and wide allowDefaultProjectForFiles glob restrictions (#8925)

🩹 Fixes

  • eslint-plugin: [no-unsafe-argument] handle tagged templates (#8746)
  • eslint-plugin: [prefer-optional-chain] suggests optional chaining during strict null equality check (#8717)
  • eslint-plugin: [consistent-type-assertions] handle tagged templates (#8993)
  • eslint-plugin: [no-unsafe-return] handle union types (#9001)
  • eslint-plugin: [no-unused-vars] clear error report range (#8640)
  • utils: export ESLint backwards-compat functions (#8976)

❤️ Thank You

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

v7.7.1

7.7.1 (2024-04-22)

🩹 Fixes

  • eslint-plugin: [no-unsafe-assignment] handle shorthand property assignment (#8800)
  • eslint-plugin: [explicit-function-return-type] fix checking wrong ancestor's return type (#8809)
  • eslint-plugin: [prefer-op...

    Description has been truncated

…18 updates

Bumps the all-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.10.2` | `4.10.4` |
| [awilix](https://github.com/jeffijoe/awilix) | `8.0.1` | `10.0.2` |
| [jwt-decode](https://github.com/auth0/jwt-decode) | `3.1.2` | `4.0.0` |
| [swagger-ui-dist](https://github.com/swagger-api/swagger-ui) | `5.14.0` | `5.17.2` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.6` | `20.12.7` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `17.8.1` | `19.3.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `17.8.1` | `19.2.2` |
| [@swc/cli](https://github.com/swc-project/pkgs) | `0.1.65` | `0.3.12` |
| [@swc/core](https://github.com/swc-project/swc) | `1.4.13` | `1.4.17` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.21.0` | `7.8.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.21.0` | `7.8.0` |
| [chai](https://github.com/chaijs/chai) | `4.4.1` | `5.1.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.1.1` |
| [eslint-config-airbnb-typescript](https://github.com/iamturns/eslint-config-airbnb-typescript) | `17.1.0` | `18.0.0` |
| [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) | `48.0.1` | `52.0.0` |
| [husky](https://github.com/typicode/husky) | `8.0.3` | `9.0.11` |
| [supertest](https://github.com/ladjs/supertest) | `6.3.4` | `7.0.0` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.4` | `5.4.5` |



Updates `@apollo/server` from 4.10.2 to 4.10.4
- [Release notes](https://github.com/apollographql/apollo-server/releases)
- [Changelog](https://github.com/apollographql/apollo-server/blob/main/packages/server/CHANGELOG.md)
- [Commits](https://github.com/apollographql/apollo-server/commits/@apollo/server@4.10.4/packages/server)

Updates `awilix` from 8.0.1 to 10.0.2
- [Changelog](https://github.com/jeffijoe/awilix/blob/master/CHANGELOG.md)
- [Commits](jeffijoe/awilix@v8.0.1...v10.0.2)

Updates `jwt-decode` from 3.1.2 to 4.0.0
- [Release notes](https://github.com/auth0/jwt-decode/releases)
- [Changelog](https://github.com/auth0/jwt-decode/blob/main/CHANGELOG.md)
- [Commits](auth0/jwt-decode@v3.1.2...v4.0.0)

Updates `swagger-ui-dist` from 5.14.0 to 5.17.2
- [Release notes](https://github.com/swagger-api/swagger-ui/releases)
- [Changelog](https://github.com/swagger-api/swagger-ui/blob/master/.releaserc)
- [Commits](swagger-api/swagger-ui@v5.14.0...v5.17.2)

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

Updates `@commitlint/cli` from 17.8.1 to 19.3.0
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.3.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 17.8.1 to 19.2.2
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.2.2/@commitlint/config-conventional)

Updates `@swc/cli` from 0.1.65 to 0.3.12
- [Commits](https://github.com/swc-project/pkgs/commits)

Updates `@swc/core` from 1.4.13 to 1.4.17
- [Release notes](https://github.com/swc-project/swc/releases)
- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)
- [Commits](swc-project/swc@v1.4.13...v1.4.17)

Updates `@typescript-eslint/eslint-plugin` from 6.21.0 to 7.8.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/v7.8.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.21.0 to 7.8.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/v7.8.0/packages/parser)

Updates `chai` from 4.4.1 to 5.1.0
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v4.4.1...v5.1.0)

Updates `eslint` from 8.57.0 to 9.1.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.57.0...v9.1.1)

Updates `eslint-config-airbnb-typescript` from 17.1.0 to 18.0.0
- [Release notes](https://github.com/iamturns/eslint-config-airbnb-typescript/releases)
- [Changelog](https://github.com/iamturns/eslint-config-airbnb-typescript/blob/master/CHANGELOG.md)
- [Commits](iamturns/eslint-config-airbnb-typescript@v17.1.0...v18.0.0)

Updates `eslint-plugin-unicorn` from 48.0.1 to 52.0.0
- [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases)
- [Commits](sindresorhus/eslint-plugin-unicorn@v48.0.1...v52.0.0)

Updates `husky` from 8.0.3 to 9.0.11
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v8.0.3...v9.0.11)

Updates `supertest` from 6.3.4 to 7.0.0
- [Release notes](https://github.com/ladjs/supertest/releases)
- [Commits](ladjs/supertest@v6.3.4...v7.0.0)

Updates `typescript` from 5.4.4 to 5.4.5
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.4.4...v5.4.5)

---
updated-dependencies:
- dependency-name: "@apollo/server"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: awilix
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: jwt-decode
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: swagger-ui-dist
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@swc/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@swc/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: chai
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-config-airbnb-typescript
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: eslint-plugin-unicorn
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: supertest
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

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

dependabot bot commented on behalf of github May 1, 2024

The following labels could not be found: npm.

Copy link
Author

dependabot bot commented on behalf of github May 24, 2024

Looks like these dependencies are no longer being updated by Dependabot, so this is no longer needed.

@dependabot dependabot bot closed this May 24, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-dependencies-663e0b2e90 branch May 24, 2024 10:22
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