Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Apr 4, 2025

Bumps the npm_and_yarn group with 3 updates in the /plugins/packages/mysql directory: knex, mysql2 and minimatch.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/openapi directory: got.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/oracledb directory: knex.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/postgresql directory: minimatch.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/redis directory: minimatch.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/restapi directory: minimatch and got.
Bumps the npm_and_yarn group with 4 updates in the /plugins/packages/s3 directory: minimatch, fast-xml-parser, @aws-sdk/client-s3 and @aws-sdk/credential-providers.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/saphana directory: @sap/hana-client.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/sendgrid directory: minimatch.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/slack directory: minimatch and http-cache-semantics.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/smtp directory: nodemailer.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/snowflake directory: axios and semver.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/stripe directory: minimatch and http-cache-semantics.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/twilio directory: axios and twilio.
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/typesense directory: minimatch.
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/woocommerce directory: semver and json5.

Updates knex from 0.95.15 to 2.4.0

Release notes

Sourced from knex's releases.

2.4.0

New features:

  • Support partial unique indexes #5316
  • Make compiling SQL in error message optional #5282

Bug fixes

  • Insert array into json column #5321
  • Fix unexpected max acquire-timeout #5377
  • Fix: orWhereJson #5361
  • MySQL: Add assertion for basic where clause not to be object or array #1227
  • SQLite: Fix changing the default value of a boolean column in SQLite #5319

Typings:

  • add missing type for 'expirationChecker' on PgConnectionConfig #5334

2.3.0

New features:

  • PostgreSQL: Explicit jsonb support for custom pg clients #5201
  • SQLite: Support returning with sqlite3 and better-sqlite3 #5285
  • MSSQL: Implement mapBinding mssql dialect option #5292

Typings:

  • Update types for TS 4.8 #5279
  • Fix typo #5267
  • Fix WhereJsonObject withCompositeTableType #5306
  • Fix AnalyticFunction type #5304
  • Infer specific column value type in aggregations #5297

2.2.0

New features:

  • Inline primary key creation for postgres flavours #5233
  • SQLite: Add warning for undefined connection file #5223
  • MSSQL: Add JSON parameter support for connection #5200

Bug fixes:

  • PostgreSQL: add primaryKey option for uuid #5212

Typings:

  • Add promisable and better types #5222
  • Update raw query bind parameter type #5208

2.1.0 - 26 May, 2022

... (truncated)

Changelog

Sourced from knex's changelog.

2.4.0 - 06 January, 2023

New features:

  • Support partial unique indexes #5316
  • Make compiling SQL in error message optional #5282

Bug fixes

  • Insert array into json column #5321
  • Fix unexpected max acquire-timeout #5377
  • Fix: orWhereJson #5361
  • MySQL: Add assertion for basic where clause not to be object or array #1227
  • SQLite: Fix changing the default value of a boolean column in SQLite #5319

Typings:

  • add missing type for 'expirationChecker' on PgConnectionConfig #5334

2.3.0 - 31 August, 2022

New features:

  • PostgreSQL: Explicit jsonb support for custom pg clients #5201
  • SQLite: Support returning with sqlite3 and better-sqlite3 #5285
  • MSSQL: Implement mapBinding mssql dialect option #5292

Typings:

  • Update types for TS 4.8 #5279
  • Fix typo #5267
  • Fix WhereJsonObject withCompositeTableType #5306
  • Fix AnalyticFunction type #5304
  • Infer specific column value type in aggregations #5297

2.2.0 - 19 July, 2022

New features:

  • Inline primary key creation for postgres flavours #5233
  • SQLite: Add warning for undefined connection file #5223
  • MSSQL: Add JSON parameter support for connection #5200

Bug fixes:

  • PostgreSQL: add primaryKey option for uuid #5212

Typings:

  • Add promisable and better types #5222

... (truncated)

Commits

Updates mysql2 from 3.6.0 to 3.9.8

Release notes

Sourced from mysql2's releases.

v3.9.8

3.9.8 (2024-05-26)

Bug Fixes

  • security: sanitize fields and tables when using nestTables (#2702) (efe3db5)
  • support deno + caching_sha2_password FULL_AUTHENTICATION_PACKET flow (#2704) (2e03694)
  • typings: typo from jonServerPublicKey to onServerPublicKey (#2699) (8b5f691)

v3.9.7

3.9.7 (2024-04-21)

Bug Fixes

  • security: sanitize timezone parameter value to prevent code injection - report by zhaoyudi (Nebulalab) (#2608) (7d4b098)

v3.9.6

3.9.6 (2024-04-18)

Bug Fixes

  • binary parser sometimes reads out of packet bounds when results contain null and typecast is false (#2601) (705835d)

v3.9.5

3.9.5 (2024-04-17)

Bug Fixes

  • revert breaking change in results creation (#2591) (f7c60d0)

v3.9.4

3.9.4 (2024-04-09)

Bug Fixes

  • SSL: separate each certificate into an individual item #2542 (63f1055)
  • security: improve supportBigNumbers and bigNumberStrings sanitization (#2572) (74abf9e)
    • Fixes a potential RCE attack vulnerability reported by Vsevolod Kokorin (Slonser) of Solidlab
  • security: improve results object creation (#2574) (4a964a3)
    • Fixes a potential Prototype Pollution attack vulnerability reported by Vsevolod Kokorin (Slonser) of Solidlab
  • docs: improve the contribution guidelines (#2552) (8a818ce)

v3.9.3

3.9.3 (2024-03-26)

... (truncated)

Changelog

Sourced from mysql2's changelog.

3.9.8 (2024-05-26)

Bug Fixes

  • security: sanitize fields and tables when using nestTables (#2702) (efe3db5)
  • support deno + caching_sha2_password FULL_AUTHENTICATION_PACKET flow (#2704) (2e03694)
  • typings: typo from jonServerPublicKey to onServerPublicKey (#2699) (8b5f691)

3.9.7 (2024-04-21)

Bug Fixes

  • security: sanitize timezone parameter value to prevent code injection (#2608) (7d4b098)

3.9.6 (2024-04-18)

Bug Fixes

  • binary parser sometimes reads out of packet bounds when results contain null and typecast is false (#2601) (705835d)

3.9.5 (2024-04-17)

Bug Fixes

  • revert breaking change in results creation (#2591) (f7c60d0)

3.9.4 (2024-04-09)

Bug Fixes

  • docs: improve the contribution guidelines (#2552) (8a818ce)
  • security: improve results object creation (#2574) (4a964a3)
  • security: improve supportBigNumbers and bigNumberStrings sanitization (#2572) (74abf9e)

3.9.3 (2024-03-26)

Bug Fixes

  • security: improve cache key formation (#2424) (0d54b0c)
    • Fixes a potential parser cache poisoning attack vulnerability reported by Vsevolod Kokorin (Slonser) of Solidlab
  • update Amazon RDS SSL CA cert (#2131) (d9dccfd)

3.9.2 (2024-02-26)

... (truncated)

Commits
  • f637d3f chore(master): release 3.9.8 (#2700)
  • efe3db5 fix(security): sanitize fields and tables when using nestTables (#2702)
  • 2e03694 fix: support deno + caching_sha2_password FULL_AUTHENTICATION_PACKET flow (#2...
  • 8b5f691 fix(typings): typo from jonServerPublicKey to onServerPublicKey (#2699)
  • 5c75802 build(deps-dev): bump tsx from 4.10.5 to 4.11.0 in /website (#2695)
  • 179769f build(deps): bump @​easyops-cn/docusaurus-search-local in /website (#2696)
  • 56289e2 build(deps-dev): bump poku from 1.12.1 to 1.13.0 (#2698)
  • b029308 build(deps-dev): bump poku from 1.12.1 to 1.13.0 in /website (#2697)
  • 539acb8 build(deps): bump lucide-react from 0.378.0 to 0.379.0 in /website (#2693)
  • dc80580 build(deps-dev): bump @​typescript-eslint/eslint-plugin from 7.9.0 to 7.10.0 i...
  • Additional commits viewable in compare view

Updates minimatch from 3.0.4 to 3.1.2

Commits

Updates got from 11.8.6 to 14.4.7

Release notes

Sourced from got's releases.

v14.4.7

  • Fix: Gracefully handle undefined request (#2404) 06029e0

sindresorhus/got@v14.4.6...v14.4.7

v14.4.6

  • Fix timeout error firing even though it's cancelled (#2399) 7a92064

sindresorhus/got@v14.4.5...v14.4.6

v14.4.5

  • Fix a crash with Got accessing a non-existent request (#2391) c079b93

sindresorhus/got@v14.4.4...v14.4.5

v14.4.4

  • Fix support for AbortSignal#timeout() (#2388) 92b378e

sindresorhus/got@v14.4.3...v14.4.4

v14.4.3

  • Fix cache with HTTP2 (#2380) f2f8cb2

sindresorhus/got@v14.4.2...v14.4.3

v14.4.2

  • Fix handling of invalid arguments (#2367) f44ef43

sindresorhus/got@v14.4.1...v14.4.2

v14.4.1

  • Fix missing dependency dfc54d9

sindresorhus/got@v14.4.0...v14.4.1

v14.4.0

  • Improve TypeScript types with generic extend (#2353) 15ca4a0

sindresorhus/got@v14.3.0...v14.4.0

v14.3.0

  • Update dependencies dbab6c3

sindresorhus/got@v14.2.1...v14.3.0

v14.2.1

  • Fix error handling when UTF-8 decoding fails (#2336) c81a611

... (truncated)

Commits

Updates http-cache-semantics from 4.1.0 to 4.1.1

Commits

Updates knex from 0.95.15 to 2.4.0

Release notes

Sourced from knex's releases.

2.4.0

New features:

  • Support partial unique indexes #5316
  • Make compiling SQL in error message optional #5282

Bug fixes

  • Insert array into json column #5321
  • Fix unexpected max acquire-timeout #5377
  • Fix: orWhereJson #5361
  • MySQL: Add assertion for basic where clause not to be object or array #1227
  • SQLite: Fix changing the default value of a boolean column in SQLite #5319

Typings:

  • add missing type for 'expirationChecker' on PgConnectionConfig #5334

2.3.0

New features:

  • PostgreSQL: Explicit jsonb support for custom pg clients #5201
  • SQLite: Support returning with sqlite3 and better-sqlite3 #5285
  • MSSQL: Implement mapBinding mssql dialect option #5292

Typings:

  • Update types for TS 4.8 #5279
  • Fix typo #5267
  • Fix WhereJsonObject withCompositeTableType #5306
  • Fix AnalyticFunction type #5304
  • Infer specific column value type in aggregations #5297

2.2.0

New features:

  • Inline primary key creation for postgres flavours #5233
  • SQLite: Add warning for undefined connection file #5223
  • MSSQL: Add JSON parameter support for connection #5200

Bug fixes:

  • PostgreSQL: add primaryKey option for uuid #5212

Typings:

  • Add promisable and better types #5222
  • Update raw query bind parameter type #5208

2.1.0 - 26 May, 2022

... (truncated)

Changelog

Sourced from knex's changelog.

2.4.0 - 06 January, 2023

New features:

  • Support partial unique indexes #5316
  • Make compiling SQL in error message optional #5282

Bug fixes

  • Insert array into json column #5321
  • Fix unexpected max acquire-timeout #5377
  • Fix: orWhereJson #5361
  • MySQL: Add assertion for basic where clause not to be object or array #1227
  • SQLite: Fix changing the default value of a boolean column in SQLite #5319

Typings:

  • add missing type for 'expirationChecker' on PgConnectionConfig #5334

2.3.0 - 31 August, 2022

New features:

  • PostgreSQL: Explicit jsonb support for custom pg clients #5201
  • SQLite: Support returning with sqlite3 and better-sqlite3 #5285
  • MSSQL: Implement mapBinding mssql dialect option #5292

Typings:

  • Update types for TS 4.8 #5279
  • Fix typo #5267
  • Fix WhereJsonObject withCompositeTableType #5306
  • Fix AnalyticFunction type #5304
  • Infer specific column value type in aggregations #5297

2.2.0 - 19 July, 2022

New features:

  • Inline primary key creation for postgres flavours #5233
  • SQLite: Add warning for undefined connection file #5223
  • MSSQL: Add JSON parameter support for connection #5200

Bug fixes:

  • PostgreSQL: add primaryKey option for uuid #5212

Typings:

  • Add promisable and better types #5222

... (truncated)

Commits

Updates minimatch from 3.0.4 to 3.1.2

Commits

Updates minimatch from 3.0.4 to 3.1.2

Commits

Updates minimatch from 3.0.4 to 3.1.2

Commits

Updates got from 11.8.6 to 14.4.7

Release notes

Sourced from got's releases.

v14.4.7

  • Fix: Gracefully handle undefined request (#2404) 06029e0

sindresorhus/got@v14.4.6...v14.4.7

v14.4.6

  • Fix timeout error firing even though it's cancelled (#2399) 7a92064

sindresorhus/got@v14.4.5...v14.4.6

v14.4.5

  • Fix a crash with Got accessing a non-existent request (#2391) c079b93

sindresorhus/got@v14.4.4...v14.4.5

v14.4.4

  • Fix support for AbortSignal#timeout() (#2388) 92b378e

sindresorhus/got@v14.4.3...v14.4.4

v14.4.3

  • Fix cache with HTTP2 (#2380) f2f8cb2

sindresorhus/got@v14.4.2...v14.4.3

v14.4.2

  • Fix handling of invalid arguments (#2367) f44ef43

sindresorhus/got@v14.4.1...v14.4.2

v14.4.1

  • Fix missing dependency dfc54d9

sindresorhus/got@v14.4.0...v14.4.1

v14.4.0

  • Improve TypeScript types with generic extend (#2353) 15ca4a0

sindresorhus/got@v14.3.0...v14.4.0

v14.3.0

  • Update dependencies dbab6c3

sindresorhus/got@v14.2.1...v14.3.0

v14.2.1

  • Fix error handling when UTF-8 decoding fails (#2336) c81a611

... (truncated)

Commits

Updates http-cache-semantics from 4.1.0 to 4.1.1

Commits

Updates minimatch from 3.0.4 to 3.1.2

Commits

Updates fast-xml-parser from 4.0.11 to 4.4.1

Release notes

Sourced from fast-xml-parser's releases.

Summary update on all the previous releases from v4.2.4

  • Multiple minor fixes provided in the validator and parser
  • v6 is added for experimental use.
  • ignoreAttributes support function, and array of string or regex
  • Add support for parsing HTML numeric entities
  • v5 of the application is ESM module now. However, JS is also supported

Note: Release section in not updated frequently. Please check CHANGELOG or Tags for latest release information.

Security Fix

Update to this release if you use entity parsing in Fast XML Parser.

Changelog

Sourced from fast-xml-parser's changelog.

Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.

5.2.0 / 2025-04-03

5.1.0 / 2025-04-02

  • feat: declare package as side-effect free (#738) (By Thomas Bouffard)
  • fix cjs build mode
  • fix builder return type to string

5.0.9 / 2025-03-14

  • fix: support numeric entities with values over 0xFFFF (#726) (By Marc Durdin)
  • fix: update strnum to fix parsing 0 if skiplike option is used

5.0.8 / 2025-02-27

  • fix parsing 0 if skiplike option is used.
    • updating strnum dependency

5.0.7 / 2025-02-25

  • fix (#724) typings for cjs.

5.0.6 / 2025-02-20

5.0.5 / 2025-02-20

  • fix parsing of string starting with 'e' or 'E' by updating strnum

5.0.4 / 2025-02-20

  • fix CLI to support all the versions of node js when displaying library version.
  • fix CJS import in v5
    • by fixing webpack config

5.0.3 / 2025-02-20

  • Using strnum ESM module
    • new fixes in strum may break your experience

5.0.2 / 2025-02-20

  • fix: include CommonJS resources in the npm package #714 (By Thomas Bouffard)
  • fix: move babel deps to dev deps

5.0.1 / 2025-02-19

  • fix syntax error for CLI command

5.0.0 / 2025-02-19

  • ESM support
    • no change in the functionality, syntax, APIs, options, or documentation.

4.5.2 / 2025-02-18

... (truncated)

Commits
  • d40e29c update package detail and browser bundles
  • d0bfe8a fix maxlength for currency value
  • 2c14fcf Update bug-report-or-unexpected-output.md
  • acf610f fix #634: build attributes with oneListGroup and attributesGroupName (#653)
  • 931e910 fix: get oneListGroup to work as expected for array of strings (#662)
  • b8e40c8 Update ISSUE_TEMPLATE.md
  • a6265ba chore: add trend image (#658)
  • db1c548 redesign README.md
  • 338a2c6 Rename 1.Getting Started.md to 1.GettingStarted.md
  • c762537 Rename v5 docs filenames (#659)
  • Additional commits viewable in compare view

Updates @aws-sdk/client-s3 from 3.266.1 to 3.782.0

Release notes

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

v3.782.0

3.782.0(2025-04-03)

Chores
  • util-endpoints: update aws partitions.json (080b5b4b)
  • endpoints: update endpoints model (fd92c7b4)
  • models: update API models (6f794417)
Documentation Changes
  • client-opensearch: Improve descriptions for various API commands and data types. (2fc926f8)
New Features
  • client-transcribe: This Feature Adds Support for the "zh-HK" Locale for Batch Operations (7f7181d2)
  • client-route-53: Added us-gov-east-1 and us-gov-west-1 as valid Latency Based Routing regions for change-resource-record-sets. (96d14034)
  • client-mailmanager: Add support for Dual_Stack and PrivateLink types of IngressPoint. For configuration requests, SES Mail Manager will now accept both IPv4/IPv6 dual-stack endpoints and AWS PrivateLink VPC endpoints for email receiving. (308a75bf)
  • client-sagemaker: Adds support for i3en, m7i, r7i instance types for SageMaker Hyperpod (3aaab37d)
  • client-chime-sdk-voice: Added FOC date as an attribute of PhoneNumberOrder, added AccessDeniedException as a possible return type of ValidateE911Address (f6e45d77)
  • client-sesv2: This release enables customers to provide attachments in the SESv2 SendEmail and SendBulkEmail APIs. (ff065ab5)
  • client-bedrock-agent: Added optional "customMetadataField" for Amazon Aurora knowledge bases, allowing single-column metadata. Also added optional "textIndexName" for MongoDB Atlas knowledge bases, enabling hybrid search support. (7a5625d7)

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

v3.781.0

3.781.0(2025-04-02)

Documentation Changes
  • client-ecr: Fix for customer issues related to AWS account ID and size limitation for token. (873da427)
  • client-ecs: This is an Amazon ECS documentation only update to address various tickets. (25633662)
New Features
  • clients: update client endpoints as of 2025-04-02 (f24158a4)
  • client-application-signals: Application Signals now supports creating Service Level Objectives on service dependencies. Users can now create or update SLOs on discovered service dependencies to monitor their standard application metrics. (263dd719)
  • client-medialive: Added support for SMPTE 2110 inputs when running a channel in a MediaLive Anywhere cluster. This feature enables ingestion of SMPTE 2110-compliant video, audio, and ancillary streams by reading SDP files that AWS Elemental MediaLive can retrieve from a network source. (ba33fb0f)
  • client-codebuild: This release adds support for environment type WINDOWS_SERVER_2022_CONTAINER in ProjectEnvironment (3fbd78f9)
  • client-lex-models-v2: Release feature of errorlogging for lex bot, customer can config this feature in bot version to generate log for error exception which helps debug (8a9b1fc3)

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

v3.780.0

... (truncated)

Changelog

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

3.782.0 (2025-04-03)

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

3.779.0 (2025-03-31)

Features

  • client-s3: Amazon S3 adds support for S3 Access Points for directory buckets in AWS Dedicated Local Zones (7f2cfea)

3.777.0 (2025-03-27)

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

3.775.0 (2025-03-25)

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

3.774.0 (2025-03-24)

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

3.772.0 (2025-03-20)

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

... (truncated)

Commits
  • bee323d Publish v3.782.0
  • 0c659f4 Publish v3.779.0
  • 7f2cfea feat(client-s3): Amazon S3 adds support for S3 Access Points for directory bu...
  • 237cf3e Publish v3.777.0
  • 8bf0c03 docs(clients): switch example generation from JS to Smithy, add streaming blo...
  • bc30dfa Publish v3.775.0
  • df877b2 chore(codegen): sync for client config object custody (#6969)
  • 4ffa154 Publish v3.774.0
  • 9df52d1 fix(core): revert "use credentials provided by extensions when instantiating ...
  • 6288dff fix(core): use credentials provided by extensions when instantiating sigv4 si...
  • Additional commits viewable in compare view

Updates @aws-sdk/credential-providers from 3.266.1 to 3.782.0

Release notes

Sourced from @​aws-sdk/credential-providers's releases.

v3.782.0

3.782.0(2025-04-03)

Chores
  • util-endpoints: update aws partitions.json (080b5b4b)
  • endpoints: update endpoints model (fd92c7b4)
  • models: update API models (6f794417)
Documentation Changes
  • client-o...

    Description has been truncated

Bumps the npm_and_yarn group with 3 updates in the /plugins/packages/mysql directory: [knex](https://github.com/knex/knex), [mysql2](https://github.com/sidorares/node-mysql2) and [minimatch](https://github.com/isaacs/minimatch).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/openapi directory: [got](https://github.com/sindresorhus/got).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/oracledb directory: [knex](https://github.com/knex/knex).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/postgresql directory: [minimatch](https://github.com/isaacs/minimatch).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/redis directory: [minimatch](https://github.com/isaacs/minimatch).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/restapi directory: [minimatch](https://github.com/isaacs/minimatch) and [got](https://github.com/sindresorhus/got).
Bumps the npm_and_yarn group with 4 updates in the /plugins/packages/s3 directory: [minimatch](https://github.com/isaacs/minimatch), [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser), [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-s3) and [@aws-sdk/credential-providers](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/packages/credential-providers).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/saphana directory: [@sap/hana-client](https://github.com/hana/node-hana).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/sendgrid directory: [minimatch](https://github.com/isaacs/minimatch).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/slack directory: [minimatch](https://github.com/isaacs/minimatch) and [http-cache-semantics](https://github.com/kornelski/http-cache-semantics).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/smtp directory: [nodemailer](https://github.com/nodemailer/nodemailer).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/snowflake directory: [axios](https://github.com/axios/axios) and [semver](https://github.com/npm/node-semver).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/stripe directory: [minimatch](https://github.com/isaacs/minimatch) and [http-cache-semantics](https://github.com/kornelski/http-cache-semantics).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/twilio directory: [axios](https://github.com/axios/axios) and [twilio](https://github.com/twilio/twilio-node).
Bumps the npm_and_yarn group with 1 update in the /plugins/packages/typesense directory: [minimatch](https://github.com/isaacs/minimatch).
Bumps the npm_and_yarn group with 2 updates in the /plugins/packages/woocommerce directory: [semver](https://github.com/npm/node-semver) and [json5](https://github.com/json5/json5).


Updates `knex` from 0.95.15 to 2.4.0
- [Release notes](https://github.com/knex/knex/releases)
- [Changelog](https://github.com/knex/knex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/knex/knex/commits/2.4.0)

Updates `mysql2` from 3.6.0 to 3.9.8
- [Release notes](https://github.com/sidorares/node-mysql2/releases)
- [Changelog](https://github.com/sidorares/node-mysql2/blob/master/Changelog.md)
- [Commits](sidorares/node-mysql2@v3.6.0...v3.9.8)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `got` from 11.8.6 to 14.4.7
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v11.8.6...v14.4.7)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `knex` from 0.95.15 to 2.4.0
- [Release notes](https://github.com/knex/knex/releases)
- [Changelog](https://github.com/knex/knex/blob/master/CHANGELOG.md)
- [Commits](https://github.com/knex/knex/commits/2.4.0)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `got` from 11.8.6 to 14.4.7
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v11.8.6...v14.4.7)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `fast-xml-parser` from 4.0.11 to 4.4.1
- [Release notes](https://github.com/NaturalIntelligence/fast-xml-parser/releases)
- [Changelog](https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md)
- [Commits](NaturalIntelligence/fast-xml-parser@v4.0.11...v4.4.1)

Updates `@aws-sdk/client-s3` from 3.266.1 to 3.782.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.782.0/clients/client-s3)

Updates `@aws-sdk/credential-providers` from 3.266.1 to 3.782.0
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/packages/credential-providers/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.782.0/packages/credential-providers)

Updates `@sap/hana-client` from 2.12.22 to 2.21.31
- [Commits](https://github.com/hana/node-hana/commits)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `axios` from 0.21.4 to 0.26.1
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.8.4)

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

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `got` from 11.8.3 to 11.8.6
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v11.8.6...v14.4.7)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `nodemailer` from 6.7.2 to 6.9.9
- [Release notes](https://github.com/nodemailer/nodemailer/releases)
- [Changelog](https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md)
- [Commits](nodemailer/nodemailer@v6.7.2...v6.9.9)

Updates `axios` from 1.6.2 to 1.8.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.8.4)

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

Updates `semver` from 7.5.4 to 7.7.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.5.4...v7.7.1)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `got` from 11.8.3 to 11.8.6
- [Release notes](https://github.com/sindresorhus/got/releases)
- [Commits](sindresorhus/got@v11.8.6...v14.4.7)

Updates `http-cache-semantics` from 4.1.0 to 4.1.1
- [Commits](kornelski/http-cache-semantics@v4.1.0...v4.1.1)

Updates `axios` from 0.26.1 to 1.8.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.8.4)

Updates `twilio` from 3.84.1 to 5.5.1
- [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.84.1...5.5.1)

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

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 `semver` from 5.7.2 to 7.7.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.5.4...v7.7.1)

Updates `minimatch` from 3.0.4 to 3.1.2
- [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
- [Commits](isaacs/minimatch@v3.0.4...v3.1.2)

Updates `axios` from 0.21.4 to 1.8.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.2...v1.8.4)

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

Updates `semver` from 5.7.1 to 6.3.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.5.4...v7.7.1)

Updates `semver` from 6.3.0 to 6.3.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.5.4...v7.7.1)

Updates `json5` from 2.2.1 to 2.2.3
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](json5/json5@v2.2.1...v2.2.3)

---
updated-dependencies:
- dependency-name: knex
  dependency-version: 2.4.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: mysql2
  dependency-version: 3.9.8
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: got
  dependency-version: 14.4.7
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-version: 4.1.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: knex
  dependency-version: 2.4.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: got
  dependency-version: 14.4.7
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-version: 4.1.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: fast-xml-parser
  dependency-version: 4.4.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@aws-sdk/client-s3"
  dependency-version: 3.782.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@aws-sdk/credential-providers"
  dependency-version: 3.782.0
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@sap/hana-client"
  dependency-version: 2.21.31
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-version: 0.26.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-version: 1.15.9
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: got
  dependency-version: 11.8.6
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-version: 4.1.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: nodemailer
  dependency-version: 6.9.9
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-version: 1.8.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-version: 1.15.9
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: semver
  dependency-version: 7.7.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: got
  dependency-version: 11.8.6
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: http-cache-semantics
  dependency-version: 4.1.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-version: 1.8.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: twilio
  dependency-version: 5.5.1
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-version: 1.15.9
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: jsonwebtoken
  dependency-version: 9.0.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: semver
  dependency-version: 7.7.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: minimatch
  dependency-version: 3.1.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-version: 1.8.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: follow-redirects
  dependency-version: 1.15.9
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: semver
  dependency-version: 6.3.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: semver
  dependency-version: 6.3.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: json5
  dependency-version: 2.2.3
  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 Apr 4, 2025
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