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 with 18 updates #108

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Apr 18, 2024

Bumps the all-dependencies group with 18 updates:

Package From To
@apollo/server 4.10.2 4.10.3
awilix 8.0.1 10.0.2
jwt-decode 3.1.2 4.0.0
swagger-ui-dist 5.14.0 5.16.0
@types/node 20.12.6 20.12.7
@commitlint/cli 17.8.1 19.2.2
@commitlint/config-conventional 17.8.1 19.2.2
@swc/cli 0.1.65 0.3.12
@swc/core 1.4.13 1.4.16
@types/supertest 2.0.16 6.0.2
@typescript-eslint/eslint-plugin 6.21.0 7.7.0
@typescript-eslint/parser 6.21.0 7.7.0
chai 4.4.1 5.1.0
eslint 8.57.0 9.0.0
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
typescript 5.4.4 5.4.5

Updates @apollo/server from 4.10.2 to 4.10.3

Release notes

Sourced from @​apollo/server's releases.

@​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.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.16.0

Release notes

Sourced from swagger-ui-dist's releases.

Swagger UI v5.16.0 Released!

5.16.0 (2024-04-18)

Bug Fixes

  • config: cast configuration values into proper types (#9829) (7378821), closes #9808
  • config: fix precedence for system options (#9831) (2720d76), closes #9818
  • config: handle query config options (#9824) (6923111), closes #9807
  • resolve: fix infinite recursions and cycle detection in OpenAPI 3.1.0 resolution (#9837) (c452527)

Features

  • expose build info via new versions plugin (#9820) (463cd35)
  • request-snippets: use active class modifier for active snippet (#9826) (06e6dfa)

Swagger UI v5.15.2 Released!

5.15.2 (2024-04-15)

Bug Fixes

  • try-it-out: fix objects in arrays being stringified twice when building requests (#9805) (9e02f47)
  • utils: make URL search params parsing and serialization WHATWG URL compliant (#9809) (52c4b95), closes #9804

Swagger UI v5.15.1 Released!

5.15.1 (2024-04-11)

Bug Fixes

  • spec: format validation errors for nested parameters (#9775) (0f395c2), closes #9774

Swagger UI v5.15.0 Released!

5.15.0 (2024-04-10)

Bug Fixes

  • json-schema-2020-12-samples: apply string constraints sensibly (#9796) (b6b0d28), closes #9739
  • oas31: allow override names of top level schemas (#9787) (111e420), closes #9713
  • oas3: compensate for JSON Schemas left unresolved by swagger-client (#9794) (3bea389), closes #9790

Features

Commits
  • c3b6f50 chore(release): cut the v5.16.0 release
  • 2354788 chore: regenerate package-lock.json
  • 7378821 fix(config): cast configuration values into proper types (#9829)
  • c2b63ab style(request-snippets): change name of active tab class (#9839)
  • c452527 fix(resolve): fix infinite recursions and cycle detection in OpenAPI 3.1.0 re...
  • 3b78674 docs(REAMDE): use absolute GitHub links (#9834)
  • 2720d76 fix(config): fix precedence for system options (#9831)
  • 2112975 chore(deps-dev): bump mini-css-extract-plugin from 2.8.1 to 2.9.0 (#9836)
  • f4ac23b chore(deps-dev): bump sass-loader from 14.2.0 to 14.2.1 (#9835)
  • f7b9f8d chore(deps-dev): bump postcss-preset-env from 9.5.4 to 9.5.5 (#9828)
  • 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.2.2

Release notes

Sourced from @​commitlint/cli'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/cli's changelog.

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

19.0.2 (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.16

Changelog

Sourced from @​swc/core's changelog.

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

Refactor

Build

  • (cargo) Update rustc to nightly-2024-04-03 (#8821) (ca9c76b)

  • (cargo) Update rustc to nightly-2024-04-16 (#8870) (f9459a8)

[1.4.14] - 2024-04-15

Bug Fixes

... (truncated)

Commits
  • f58b95a chore: Publish 1.4.16 with swc_core v0.90.35
  • 0036f74 chore: Bump crates
  • 6e9d1a4 fix(es/helpers): Fix resolving of usingCtx helper (#8874)
  • 10bb67a chore: Update changelog
  • ba9f33b chore: Publish 1.4.15 with swc_core v0.90.34
  • 0594398 chore: Publish 1.4.15-nightly-20240417.1
  • 4410d62 chore: Bump crates
  • f9459a8 build(cargo): Update rustc to nightly-2024-04-16 (#8870)
  • 036414a chore: Publish 1.4.15-nightly-20240416.4
  • 2ec3282 chore: Pin version of proc-macro2 to v1.0.79
  • Additional commits viewable in compare view

Updates @types/supertest from 2.0.16 to 6.0.2

Commits

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

Release notes

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

v7.7.0

7.7.0 (2024-04-15)

🚀 Features

  • eslint-plugin: replace no-new-symbol with no-new-native-nonconstructor (#8895)
  • typescript-estree: add defaultProject for project service (#8815)

❤️ Thank You

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

v7.6.0

7.6.0 (2024-04-08)

🚀 Features

  • add name field to shared configs and flat config types (#8863)
  • bump npm dependency ranges (#8860)
  • utils: add types for both flat and legacy eslint classes (#8861)

🩹 Fixes

  • typescript-eslint: fix type errors when using exactOptionalPropertyTypes (#8786)

❤️ Thank You

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

v7.5.0

7.5.0 (2024-04-01)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] handle TaggedTemplateExpression (#8758)
  • eslint-plugin: [no-unnecessary-type-assertion] handle exactOptionalPropertyTypes compiler option (#8770)
  • parser: disallow errorOnTypeScriptSyntacticAndSemanticIssues (#8784)
  • typescript-eslint: improve support for legacy configs (#8812)

❤️ Thank You

... (truncated)

Changelog

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

7.7.0 (2024-04-15)

🚀 Features

  • eslint-plugin: replace no-new-symbol with no-new-native-nonconstructor

❤️ Thank You

  • Dave
  • Josh Goldberg ✨

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

7.6.0 (2024-04-08)

🚀 Features

  • bump npm dependency ranges

❤️ Thank You

  • Abraham Guo
  • auvred
  • Brad Zacher

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

7.5.0 (2024-04-01)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] handle TaggedTemplateExpression

  • eslint-plugin: [no-unnecessary-type-assertion] handle exactOptionalPropertyTypes compiler option

❤️ Thank You

  • Brad Zacher
  • Kim Sang Du
  • Mark de Dios
  • Naru
  • YeonJuan

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

... (truncated)

Commits
  • e44a1a2 chore(release): publish 7.7.0
  • fda5704 feat(eslint-plugin): replace no-new-symbol with `no-new-native-nonconstruct...
  • e1db872 chore(release): publish 7.6.0
  • a6ab2cb feat: bump npm dependency ranges (#8860)
  • 4bac40c docs: fix incorrect tab item values in prefer-optional-chain (#8867)
  • a7bdd1c test(eslint-plugin): render snapshots of ESLint output for each code example ...
  • 41d893f docs(eslint-plugin): [consistent-return] add warning section use noImplicitRe...
  • d063275 docs: feature-freeze member-ordering, naming-convention, sort-type-constituen...
  • a14ba9d chore(release): publish 7.5.0
  • ecb6b55 docs: add homepage (#8742)
  • Additional commits viewable in compare view

Updates @typescript-eslint/parser from 6.21.0 to 7.7.0

Release notes

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

v7.7.0

7.7.0 (2024-04-15)

🚀 Features

  • eslint-plugin: replace no-new-symbol with no-new-native-nonconstructor (#8895)
  • typescript-estree: add defaultProject for project service (#8815)

❤️ Thank You

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

v7.6.0

7.6.0 (2024-04-08)

🚀 Features

  • add name field to shared configs and flat config types (#8863)
  • bump npm dependency ranges (#8860)
  • utils: add types for both flat and legacy eslint classes (#8861)

🩹 Fixes

  • typescript-eslint: fix type errors when using exactOptionalPropertyTypes (#8786)

❤️ Thank You

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

v7.5.0

7.5.0 (2024-04-01)

🩹 Fixes

  • eslint-plugin: [no-floating-promises] handle TaggedTemplateExpression (#8758)
  • eslint-plugin: [no-unnecessary-type-assertion] handle exactOptionalPropertyTypes compiler option (#8770)
  • parser: disallow errorOnTypeScriptSyntacticAndSemanticIssues (#8784)
  • typescript-eslint: improve support for legacy configs (#8812)

❤️ Thank You

... (truncated)

Changelog

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

7.7.0 (2024-04-15)

This was a version bump only for parser to align it with other projects, there were no code changes.

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

7.6.0 (2024-04-08)

🚀 Features

  • bump npm dependency ranges

❤️ Thank You

  • Abraham Guo
  • auvred
  • Brad Zacher

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

7.5.0 (2024-04-01)

🩹 Fixes

  • parser: disallow errorOnTypeScriptSyntacticAndSemanticIssues

❤️ Thank You

  • Brad Zacher
  • Kim Sang Du
  • Mark de Dios
  • Naru
  • YeonJuan

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

7.4.0 (2024-03-25)

🚀 Features

  • eslint-plugin: [consistent-type-imports] ignore files with decorators, experimentalDecorators, and emitDecoratorMetadata

❤️ Thank You

... (truncated)

Commits

Bumps the all-dependencies group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [@apollo/server](https://github.com/apollographql/apollo-server/tree/HEAD/packages/server) | `4.10.2` | `4.10.3` |
| [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.16.0` |
| [@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.2.2` |
| [@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.16` |
| [@types/supertest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/supertest) | `2.0.16` | `6.0.2` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.21.0` | `7.7.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.21.0` | `7.7.0` |
| [chai](https://github.com/chaijs/chai) | `4.4.1` | `5.1.0` |
| [eslint](https://github.com/eslint/eslint) | `8.57.0` | `9.0.0` |
| [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` |
| [typescript](https://github.com/Microsoft/TypeScript) | `5.4.4` | `5.4.5` |


Updates `@apollo/server` from 4.10.2 to 4.10.3
- [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/[email protected]/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.16.0
- [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.16.0)

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.2.2
- [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.2.2/@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.16
- [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.16)

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

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

Updates `@typescript-eslint/parser` from 6.21.0 to 7.7.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.7.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.0.0
- [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.0.0)

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 `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: "@types/supertest"
  dependency-type: direct:development
  update-type: version-update:semver-major
  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: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 18, 2024
Copy link
Author

dependabot bot commented on behalf of github Apr 18, 2024

The following labels could not be found: npm.

Copy link
Author

dependabot bot commented on behalf of github Apr 23, 2024

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-dependencies-a7a2d60179 branch April 23, 2024 09:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant