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 npm_and_yarn group across 1 directory with 23 updates #1764

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 5, 2024

Bumps the npm_and_yarn group with 17 updates in the /services/API-service directory:

Package From To
@nestjs/core 10.1.3 10.4.7
@nestjs/swagger 7.1.8 8.0.2
axios 1.4.0 1.7.7
twilio 3.83.1 5.3.5
ejs 3.1.9 3.1.10
jsonwebtoken 8.5.1 9.0.2
passport-jwt 4.0.0 4.0.1
passport 0.4.1 0.6.0
jest 24.9.0 29.7.0
@types/jest 26.0.20 29.5.14
nodemon 2.0.7 3.1.7
swagger-ui-express 4.1.6 5.0.1
ts-jest 24.3.0 29.2.5
json-schema 0.2.3 0.4.0
jsprim 1.4.1 1.4.2
minimist 1.2.5 1.2.8
qs 6.5.2 6.5.3

Updates @nestjs/core from 10.1.3 to 10.4.7

Release notes

Sourced from @​nestjs/core's releases.

v10.4.5 (2024-10-16)

Dependencies

Committers: 5

v10.4.2 (2024-09-16)

Dependencies

... (truncated)

Commits

Updates @nestjs/swagger from 7.1.8 to 8.0.2

Release notes

Sourced from @​nestjs/swagger's releases.

Release 8.0.2

8.0.2 (2024-11-05)

Bug fixes

Dependencies

Committers: 2

Release 8.0.1

8.0.1 (2024-10-29)

Enhancements

Committers: 1

8.0.0 (2024-10-28)

Breaking changes

  • #3017 feat(@​nestjs/swagger): defaults api tag to controller name
  • #2877 fix(): Updated types for Specific ApiResponse decorator options to omit status
  • #1454 fix(transformer): prefer explicit config over auto-detected schema

Features

Bug fixes

  • #3029 fix: properly import external enums (@​Michsior14)
  • #1454 fix(transformer): prefer explicit config over auto-detected schema
  • #3127 fix(@​nest/swagger): Add merge-options condition for dtoFileNameSuffix to CLI-Plugin
  • #1696 fix(core): isArray always false for enum arrays in plugin metadata
  • #1434 fix(): move modifiers properties to items object on array type @​nartc
  • #1113 fix: Arrays and objects are not managed properly when located in first level of @​Query() @​arnaud-cortisse

Enhancements

... (truncated)

Commits
  • 96259e6 chore(): release v8.0.2
  • f23dd40 Merge pull request #3148 from nestjs/fix/query-params-3144
  • d2eac71 Merge pull request #3134 from Michsior14/fix/compiler-option-paths-mapping
  • 011d1af Merge pull request #3147 from nestjs/renovate/nest-monorepo
  • 8e45aa8 fix: spread query parameters if feasible #3144
  • 6e5aef2 chore(deps): update nest monorepo to v10.4.7
  • 89902c4 chore(deps): update dependency @​types/node to v22.9.0
  • 281b884 chore(deps): update typescript-eslint monorepo to v8.13.0
  • 7ee45d6 chore(deps): update dependency @​types/node to v22.8.7
  • 837a86e chore(deps): update dependency eslint to v9.14.0
  • Additional commits viewable in compare view

Updates axios from 1.4.0 to 1.7.7

Release notes

Sourced from axios's releases.

Release v1.7.7

Release notes:

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

Release v1.7.6

Release notes:

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

Release v1.7.5

Release notes:

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

Release v1.7.4

Release notes:

Bug Fixes

Contributors to this release

... (truncated)

Changelog

Sourced from axios's changelog.

1.7.7 (2024-08-31)

Bug Fixes

  • fetch: fix stream handling in Safari by fallback to using a stream reader instead of an async iterator; (#6584) (d198085)
  • http: fixed support for IPv6 literal strings in url (#5731) (364993f)

Contributors to this release

1.7.6 (2024-08-30)

Bug Fixes

  • fetch: fix content length calculation for FormData payload; (#6524) (085f568)
  • fetch: optimize signals composing logic; (#6582) (df9889b)

Contributors to this release

1.7.5 (2024-08-23)

Bug Fixes

  • adapter: fix undefined reference to hasBrowserEnv (#6572) (7004707)
  • core: add the missed implementation of AxiosError#status property; (#6573) (6700a8a)
  • core: fix ReferenceError: navigator is not defined for custom environments; (#6567) (fed1a4b)
  • fetch: fix credentials handling in Cloudflare workers (#6533) (550d885)

Contributors to this release

1.7.4 (2024-08-13)

Bug Fixes

... (truncated)

Commits
  • 5b8a826 chore(release): v1.7.7 (#6585)
  • 364993f fix(http): fixed support for IPv6 literal strings in url (#5731)
  • d198085 fix(fetch): fix stream handling in Safari by fallback to using a stream reade...
  • d584fcf chore(release): v1.7.6 (#6583)
  • bc03c6c chore(examples): fix module import (#6575)
  • df9889b fix(fetch): optimize signals composing logic; (#6582)
  • ee208cf chore(sponsor): update sponsor block (#6576)
  • 085f568 fix(fetch): fix content length calculation for FormData payload; (#6524)
  • 59cd6b0 chore(release): v1.7.5 (#6574)
  • 6700a8a fix(core): add the missed implementation of AxiosError#status property; (#6573)
  • Additional commits viewable in compare view

Updates twilio from 3.83.1 to 5.3.5

Release notes

Sourced from twilio's releases.

5.3.5

Release Notes

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

Docs

5.3.4

Release Notes

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint

Docs

5.3.3

Release Notes

Messaging

  • Add A2P external campaign CnpMigration flag

Numbers

  • Add address sid to portability API

Verify

  • Add SnaClientToken optional parameter on Verification check.
  • Add EnableSnaClientToken optional parameter for Verification creation.

Docs

5.3.2

Release Notes

Library - Chore

Accounts

  • Update docs and mounts.
  • Change library visibility to public
  • Enable consent and contact bulk upsert APIs in prod.

Serverless

  • Add is_plugin parameter in deployments api to check if it is plugins deployment

... (truncated)

Changelog

Sourced from twilio's changelog.

[2024-10-24] Version 5.3.5

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

[2024-10-17] Version 5.3.4

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint

[2024-10-03] Version 5.3.3

Messaging

  • Add A2P external campaign CnpMigration flag

Numbers

  • Add address sid to portability API

Verify

  • Add SnaClientToken optional parameter on Verification check.
  • Add EnableSnaClientToken optional parameter for Verification creation.

[2024-09-25] Version 5.3.2

Library - Chore

Accounts

  • Update docs and mounts.
  • Change library visibility to public
  • Enable consent and contact bulk upsert APIs in prod.

Serverless

  • Add is_plugin parameter in deployments api to check if it is plugins deployment

[2024-09-18] Version 5.3.1

Intelligence

  • Remove public from operator_type
  • Update operator_type to include general-availablity and deprecated

Numbers

  • Remove beta flag for bundle clone API

... (truncated)

Upgrade guide

Sourced from twilio's upgrade guide.

Upgrade Guide

All MAJOR version bumps will have upgrade notes posted here.

[2024-03-07] 4.x.x to 5.x.x


Overview

Twilio Node Helper Library’s major version 5.0.0 is now available. We ensured that you can upgrade to Node helper Library 5.0.0 version without any breaking changes of existing apis

Behind the scenes Node Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages. We're pleased to inform you that version 5.0.0 adds support for the application/json content type in the request body.

[2023-01-25] 3.x.x to 4.x.x


  • Supported Node.js versions updated
    • Upgrade to Node.js >= 14
    • Dropped support for Node.js < 14 (#791)
    • Added support for Node.js 18 (#794)
  • Lazy loading enabled by default (#752)
    • Required Twilio modules now lazy load by default
    • See the README for how to disable lazy loading
  • Type changes from object to Record (#873)
    • Certain response properties now use the Record type with string keys
    • Including the subresourceUris property for v2010 APIs and the links properties for non-v2010 APIs
  • Access Tokens
    • Creating an AccessToken requires an identity in the options (#875)
    • ConversationsGrant has been deprecated in favor of VoiceGrant (#783)
    • IpMessagingGrant has been removed (#784)
  • TwiML function deprecations (#788)
    • <Refer>
      • Refer.referSip() replaced by Refer.sip()
    • <Say>
      • Say.ssmlBreak() and Say.break_() replaced by Say.break()

      • Say.ssmlEmphasis() replaced by Say.emphasis()

      • Say.ssmlLang() replaced by Say.lang()

      • Say.ssmlP() replaced by Say.p()

      • Say.ssmlPhoneme() replaced by Say.phoneme()

      • Say.ssmlProsody() replaced by Say.prosody()

      • Say.ssmlS() replaced by Say.s()

      • Say.ssmlSayAs() replaced by Say.sayAs()

      • Say.ssmlSub() replaced by Say.sub()

      • Say.ssmlW() replaced by Say.w()

        Old:

... (truncated)

Commits
  • b68e81f Release 5.3.5
  • 1c29f63 [Librarian] Regenerated @ 2e932f6c59e0f9fb6cb96952802e5ebedd83b6f0 1852557f82...
  • e2ed9ac Release 5.3.4
  • dfac00a [Librarian] Regenerated @ d97b0740a0c7cf86beebd56c6973927b07719cde 1fc3bb6195...
  • c0c5d8c Release 5.3.3
  • a7f3211 [Librarian] Regenerated @ 021bab52f93b55d7a5786bd27716bf3a0be2d7b9 aa81ca7c51...
  • 64ca243 Release 5.3.2
  • 7bf9c75 [Librarian] Regenerated @ 08245333f4a8c9235d547b189cd9c422f73e0e7e 7bb98153c2...
  • 34e7fbc Sync for IoT has reached EOL; removing reference to Deployed Devices (#1037)
  • 6033208 Release 5.3.1
  • Additional commits viewable in compare view

Updates ejs from 3.1.9 to 3.1.10

Release notes

Sourced from ejs's releases.

v3.1.10

Version 3.1.10

Commits

Updates jsonwebtoken from 8.5.1 to 9.0.2

Changelog

Sourced from jsonwebtoken's changelog.

9.0.2 - 2023-08-30

  • security: updating semver to 7.5.4 to resolve CVE-2022-25883, closes #921.
  • refactor: reduce library size by using lodash specific dependencies, closes #878.

9.0.1 - 2023-07-05

  • fix(stubs): allow decode method to be stubbed

9.0.0 - 2022-12-21

Breaking changes: See Migration from v8 to v9

Breaking changes

  • Removed support for Node versions 11 and below.
  • The verify() function no longer accepts unsigned tokens by default. ([834503079514b72264fd13023a3b8d648afd6a16]auth0/node-jsonwebtoken@8345030)
  • RSA key size must be 2048 bits or greater. ([ecdf6cc6073ea13a7e71df5fad043550f08d0fa6]auth0/node-jsonwebtoken@ecdf6cc)
  • Key types must be valid for the signing / verification algorithm

Security fixes

  • security: fixes Arbitrary File Write via verify function - CVE-2022-23529
  • security: fixes Insecure default algorithm in jwt.verify() could lead to signature validation bypass - CVE-2022-23540
  • security: fixes Insecure implementation of key retrieval function could lead to Forgeable Public/Private Tokens from RSA to HMAC - CVE-2022-23541
  • security: fixes Unrestricted key type could lead to legacy keys usage - CVE-2022-23539
Commits
Maintainer changes

This version was pushed to npm by charlesrea, a new releaser for jsonwebtoken since your current version.


Updates passport-jwt from 4.0.0 to 4.0.1

Commits
  • fed94fa 4.0.1 release
  • cfb5566 Merge pull request #248 from mikenicholson/update-minmatch
  • 8e4ad5b Address minmatch vulnerability
  • e9cf2ce Merge pull request #247 from mikenicholson/jsonwebtoken-9
  • bfbc6cc Update jsonwebtoken to 9.0.0
  • a49b43e Update minimist due to prototype pollution vulnerability in previous version
  • a5137c6 Merge pull request #192 from markhoney/patch-1
  • ea824cd Update jsonwebtoken and run npm audit fix
  • 8e57eec Remove older node versions shiping npm without support for "ci"
  • 3ab9305 Add CI workflow in GitHub Actions
  • Additional commits viewable in compare view

Updates passport from 0.4.1 to 0.6.0

Changelog

Sourced from passport's changelog.

[0.6.0] - 2022-05-20

Added

  • authenticate(), req#login, and req#logout accept a keepSessionInfo: true option to keep session information after regenerating the session.

Changed

  • req#login() and req#logout() regenerate the the session and clear session information by default.
  • req#logout() is now an asynchronous function and requires a callback function as the last argument.

Security

  • Improved robustness against session fixation attacks in cases where there is physical access to the same system or the application is susceptible to cross-site scripting (XSS).

[0.5.3] - 2022-05-16

Fixed

  • initialize() middleware extends request with login(), logIn(), logout(), logOut(), isAuthenticated(), and isUnauthenticated() functions again, reverting change from 0.5.1.

[0.5.2] - 2021-12-16

Fixed

  • Introduced a compatibility layer for strategies that depend directly on passport@0.4.x or earlier (such as passport-azure-ad), which were broken by the removal of private variables in passport@0.5.1.

[0.5.1] - 2021-12-15

Added

  • Informative error message in session strategy if session support is not available.

Changed

  • authenticate() middleware, rather than initialize() middleware, extends request with login(), logIn(), logout(), logOut(), isAuthenticated(), and isUnauthenticated() functions.

[0.5.0] - 2021-09-23

Changed

  • initialize() middleware extends request with login(), logIn(), logout(), logOut(), isAuthenticated(), and isUnauthenticated() functions.

... (truncated)

Commits

Updates passport-jwt from 4.0.0 to 4.0.1

Commits
  • fed94fa 4.0.1 release
  • cfb5566 Merge pull request #248 from mikenicholson/update-minmatch
  • 8e4ad5b Address minmatch vulnerability
  • e9cf2ce Merge pull request #247 from mikenicholson/jsonwebtoken-9
  • bfbc6cc Update jsonwebtoken to 9.0.0
  • a49b43e Update minimist due to prototype pollution vulnerability in previous version
  • a5137c6 Merge pull request #192 from markhoney/patch-1
  • ea824cd Update jsonwebtoken and run npm audit fix
  • 8e57eec Remove older node versions shiping npm without support for "ci"
  • 3ab9305 Add CI workflow in GitHub Actions
  • Additional commits viewable in compare view

Updates twilio from 3.83.1 to 5.3.5

Release notes

Sourced from twilio's releases.

5.3.5

Release Notes

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

Docs

5.3.4

Release Notes

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint

Docs

5.3.3

Release Notes

Messaging

  • Add A2P external campaign CnpMigration flag

Numbers

  • Add address sid to portability API

Verify

  • Add SnaClientToken optional parameter on Verification check.
  • Add EnableSnaClientToken optional parameter for Verification creation.

Docs

5.3.2

Release Notes

Library - Chore

Accounts

  • Update docs and mounts.
  • Change library visibility to public
  • Enable consent and contact bulk upsert APIs in prod.

Serverless

  • Add is_plugin parameter in deployments api to check if it is plugins deployment

... (truncated)

Changelog

Sourced from twilio's changelog.

[2024-10-24] Version 5.3.5

Conversations

  • Expose ConversationWithParticipants resource that allows creating a conversation with participants

[2024-10-17] Version 5.3.4

Api

  • Add response key country to fetch AvailablePhoneNumber resource by specific country.

Messaging

  • Make library and doc public for requestManagedCert Endpoint

[2024-10-03] Version 5.3.3

Messaging

  • Add A2P external campaign CnpMigration flag

Numbers

  • Add address sid to portability API

Verify

  • Add SnaClientToken optional parameter on Verification check.
  • Add EnableSnaClientToken optional parameter for Verification creation.

[2024-09-25] Version 5.3.2

Library - Chore

Accounts

  • Update docs and mounts.
  • Change library visibility to public
  • Enable consent and contact bulk upsert APIs in prod.

Serverless

  • Add is_plugin parameter in deployments api to check if it is plugins deployment

[2024-09-18] Version 5.3.1

Intelligence

  • Remove public from operator_type
  • Update operator_type to include general-availablity and deprecated

Numbers

  • Remove beta flag for bundle clone API

... (truncated)

Upgrade guide

Sourced from twilio's upgrade guide.

Upgrade Guide

All MAJOR version bumps will have upgrade notes posted here.

[2024-03-07] 4.x.x to 5.x.x


Overview

Twilio Node Helper Library’s major version 5.0.0 is now available. We ensured that you can upgrade to Node helper Library 5.0.0 version without any breaking changes of existing apis

Behind the scenes Node Helper is now auto-generated via OpenAPI with this release. This enables us to rapidly add new features and enhance consistency across versions and languages. We're pleased to inform you that version 5.0.0 adds support for the application/json content type in the request body.

[2023-01-25] 3.x.x to 4.x.x


  • Supported Node.js versions updated
    • Upgrade to Node.js >= 14
    • Dropped support for Node.js < 14 (#791)
    • Added support for Node.js 18 (#794)
  • Lazy loading enabled by default (#752)
    • Required Twilio modules n...

      Description has been truncated

…pdates

Bumps the npm_and_yarn group with 17 updates in the /services/API-service directory:

| Package | From | To |
| --- | --- | --- |
| [@nestjs/core](https://github.com/nestjs/nest/tree/HEAD/packages/core) | `10.1.3` | `10.4.7` |
| [@nestjs/swagger](https://github.com/nestjs/swagger) | `7.1.8` | `8.0.2` |
| [axios](https://github.com/axios/axios) | `1.4.0` | `1.7.7` |
| [twilio](https://github.com/twilio/twilio-node) | `3.83.1` | `5.3.5` |
| [ejs](https://github.com/mde/ejs) | `3.1.9` | `3.1.10` |
| [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) | `8.5.1` | `9.0.2` |
| [passport-jwt](https://github.com/mikenicholson/passport-jwt) | `4.0.0` | `4.0.1` |
| [passport](https://github.com/jaredhanson/passport) | `0.4.1` | `0.6.0` |
| [jest](https://github.com/jestjs/jest/tree/HEAD/packages/jest) | `24.9.0` | `29.7.0` |
| [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) | `26.0.20` | `29.5.14` |
| [nodemon](https://github.com/remy/nodemon) | `2.0.7` | `3.1.7` |
| [swagger-ui-express](https://github.com/scottie1984/swagger-ui-express) | `4.1.6` | `5.0.1` |
| [ts-jest](https://github.com/kulshekhar/ts-jest) | `24.3.0` | `29.2.5` |
| [json-schema](https://github.com/kriszyp/json-schema) | `0.2.3` | `0.4.0` |
| [jsprim](https://github.com/joyent/node-jsprim) | `1.4.1` | `1.4.2` |
| [minimist](https://github.com/minimistjs/minimist) | `1.2.5` | `1.2.8` |
| [qs](https://github.com/ljharb/qs) | `6.5.2` | `6.5.3` |



Updates `@nestjs/core` from 10.1.3 to 10.4.7
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.4.7/packages/core)

Updates `@nestjs/swagger` from 7.1.8 to 8.0.2
- [Release notes](https://github.com/nestjs/swagger/releases)
- [Changelog](https://github.com/nestjs/swagger/blob/master/.release-it.json)
- [Commits](nestjs/swagger@7.1.8...8.0.2)

Updates `axios` from 1.4.0 to 1.7.7
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.4.0...v1.7.7)

Updates `twilio` from 3.83.1 to 5.3.5
- [Release notes](https://github.com/twilio/twilio-node/releases)
- [Changelog](https://github.com/twilio/twilio-node/blob/main/CHANGES.md)
- [Upgrade guide](https://github.com/twilio/twilio-node/blob/main/UPGRADE.md)
- [Commits](twilio/twilio-node@3.83.1...5.3.5)

Updates `ejs` from 3.1.9 to 3.1.10
- [Release notes](https://github.com/mde/ejs/releases)
- [Commits](mde/ejs@v3.1.9...v3.1.10)

Updates `jsonwebtoken` from 8.5.1 to 9.0.2
- [Changelog](https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md)
- [Commits](auth0/node-jsonwebtoken@v8.5.1...v9.0.2)

Updates `passport-jwt` from 4.0.0 to 4.0.1
- [Commits](mikenicholson/passport-jwt@v4.0.0...v4.0.1)

Updates `passport` from 0.4.1 to 0.6.0
- [Changelog](https://github.com/jaredhanson/passport/blob/master/CHANGELOG.md)
- [Commits](jaredhanson/passport@v0.4.1...v0.6.0)

Updates `passport-jwt` from 4.0.0 to 4.0.1
- [Commits](mikenicholson/passport-jwt@v4.0.0...v4.0.1)

Updates `twilio` from 3.83.1 to 5.3.5
- [Release notes](https://github.com/twilio/twilio-node/releases)
- [Changelog](https://github.com/twilio/twilio-node/blob/main/CHANGES.md)
- [Upgrade guide](https://github.com/twilio/twilio-node/blob/main/UPGRADE.md)
- [Commits](twilio/twilio-node@3.83.1...5.3.5)

Updates `jest` from 24.9.0 to 29.7.0
- [Release notes](https://github.com/jestjs/jest/releases)
- [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/jestjs/jest/commits/v29.7.0/packages/jest)

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

Updates `nodemon` from 2.0.7 to 3.1.7
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v2.0.7...v3.1.7)

Updates `swagger-ui-express` from 4.1.6 to 5.0.1
- [Release notes](https://github.com/scottie1984/swagger-ui-express/releases)
- [Commits](scottie1984/swagger-ui-express@4.1.6...5.0.1)

Updates `ts-jest` from 24.3.0 to 29.2.5
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](kulshekhar/ts-jest@v24.3.0...v29.2.5)

Updates `ansi-regex` from 3.0.0 to 4.1.0
- [Release notes](https://github.com/chalk/ansi-regex/releases)
- [Commits](chalk/ansi-regex@v3.0.0...v4.1.0)

Updates `braces` from 2.3.2 to 3.0.2
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/commits/3.0.2)

Updates `swagger-ui-dist` from 3.42.0 to 5.17.14
- [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@v3.42.0...v5.17.14)

Updates `glob-parent` from 5.1.1 to 5.1.2
- [Release notes](https://github.com/gulpjs/glob-parent/releases)
- [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md)
- [Commits](gulpjs/glob-parent@v5.1.1...v5.1.2)

Updates `follow-redirects` from 1.15.2 to 1.15.9
- [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
- [Commits](follow-redirects/follow-redirects@v1.15.2...v1.15.9)

Updates `yargs-parser` from 10.1.0 to 20.2.4
- [Release notes](https://github.com/yargs/yargs-parser/releases)
- [Changelog](https://github.com/yargs/yargs-parser/blob/main/CHANGELOG.md)
- [Commits](yargs/yargs-parser@v10.1.0...v20.2.4)

Updates `json-schema` from 0.2.3 to 0.4.0
- [Commits](kriszyp/json-schema@v0.2.3...v0.4.0)

Updates `jsprim` from 1.4.1 to 1.4.2
- [Changelog](https://github.com/TritonDataCenter/node-jsprim/blob/v1.4.2/CHANGES.md)
- [Commits](TritonDataCenter/node-jsprim@v1.4.1...v1.4.2)

Updates `jsprim` from 1.4.1 to 1.4.2
- [Changelog](https://github.com/TritonDataCenter/node-jsprim/blob/v1.4.2/CHANGES.md)
- [Commits](TritonDataCenter/node-jsprim@v1.4.1...v1.4.2)

Updates `minimist` from 1.2.5 to 1.2.8
- [Changelog](https://github.com/minimistjs/minimist/blob/main/CHANGELOG.md)
- [Commits](minimistjs/minimist@v1.2.5...v1.2.8)

Updates `qs` from 6.5.2 to 6.5.3
- [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md)
- [Commits](ljharb/qs@v6.5.2...v6.5.3)

---
updated-dependencies:
- dependency-name: "@nestjs/core"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@nestjs/swagger"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: twilio
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: ejs
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: jsonwebtoken
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: passport-jwt
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: passport
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: passport-jwt
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: twilio
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: jest
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: "@types/jest"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: nodemon
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: swagger-ui-express
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ts-jest
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: ansi-regex
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: swagger-ui-dist
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: glob-parent
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: yargs-parser
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: json-schema
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: jsprim
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: jsprim
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimist
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: qs
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

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 Nov 5, 2024
… dependabot/npm_and_yarn/services/API-service/npm_and_yarn-4eec3c1ab2
… dependabot/npm_and_yarn/services/API-service/npm_and_yarn-4eec3c1ab2
@jannisvisser jannisvisser merged commit dfccd46 into master Nov 25, 2024
8 checks passed
@jannisvisser jannisvisser deleted the dependabot/npm_and_yarn/services/API-service/npm_and_yarn-4eec3c1ab2 branch November 25, 2024 16:01
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.

1 participant