This is an automated email from the ASF dual-hosted git repository.
tzimanyi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/main by this push:
new 244067f7313 [NO-ISSUE] Libraries update to fix vulnerabilities and
Quarkus upgrade to 3.20.2.2. (#3295)
244067f7313 is described below
commit 244067f7313968994512607ba1970e30f31045af
Author: Tibor Zimányi <[email protected]>
AuthorDate: Tue Oct 7 14:38:09 2025 +0200
[NO-ISSUE] Libraries update to fix vulnerabilities and Quarkus upgrade to
3.20.2.2. (#3295)
---
packages/dev-deployment-quarkus-blank-app/pom.xml | 14 +-
packages/maven-base/pom.xml | 117 +++++++++++++-
packages/root-env/env/index.js | 2 +-
packages/runtime-tools-components/package.json | 2 +-
.../package.json | 2 +-
.../package.json | 2 +-
.../runtime-tools-process-gateway-api/package.json | 2 +-
.../package.json | 2 +-
.../runtime-tools-swf-gateway-api/package.json | 2 +-
packages/serverless-logic-web-tools/package.json | 2 +-
pnpm-lock.yaml | 170 ++++++++++++++++-----
11 files changed, 269 insertions(+), 48 deletions(-)
diff --git a/packages/dev-deployment-quarkus-blank-app/pom.xml
b/packages/dev-deployment-quarkus-blank-app/pom.xml
index 723dfdb89bd..05e5cbab00e 100644
--- a/packages/dev-deployment-quarkus-blank-app/pom.xml
+++ b/packages/dev-deployment-quarkus-blank-app/pom.xml
@@ -60,7 +60,7 @@
<version.org.iq80.snappy>0.5</version.org.iq80.snappy>
<version.commons-io>2.16.1</version.commons-io>
<version.com.google.protobuf>3.25.5</version.com.google.protobuf>
- <version.io.netty>4.1.121.Final</version.io.netty>
+ <version.io.netty>4.1.127.Final</version.io.netty>
</properties>
<dependencyManagement>
@@ -92,7 +92,7 @@
<version>${version.org.kie.kogito}</version>
</dependency>
- <!-- Increasing netty-handler and netty-common version to fix
CVE-2025-25193 & CVE-2025-24970 -->
+ <!-- Forcing of netty version to fix vulnerabilities. -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
@@ -103,6 +103,16 @@
<artifactId>netty-common</artifactId>
<version>${version.io.netty}</version>
</dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
diff --git a/packages/maven-base/pom.xml b/packages/maven-base/pom.xml
index 78887540f00..6c4cd6fc2ba 100644
--- a/packages/maven-base/pom.xml
+++ b/packages/maven-base/pom.xml
@@ -125,7 +125,7 @@
<version.org.kie.kogito>999-20250829-local</version.org.kie.kogito>
<!-- Quarkus -->
- <version.quarkus>3.20.1</version.quarkus>
+ <version.quarkus>3.20.2.2</version.quarkus>
<!-- 3rd party dependencies -->
<version.junit>4.13.2</version.junit>
@@ -137,7 +137,7 @@
<version.org.junit.jupiter>5.12.2</version.org.junit.jupiter>
<version.org.mockito>4.11.0</version.org.mockito>
<version.org.kie.j2cl.tools.yaml.mapper>0.4</version.org.kie.j2cl.tools.yaml.mapper>
- <version.io.netty>4.1.121.Final</version.io.netty>
+ <version.io.netty>4.1.127.Final</version.io.netty>
</properties>
<dependencyManagement>
@@ -207,9 +207,65 @@
<!-- 3rd party -->
+ <!-- Forced version of the majority of general netty dependencies. This
is to enforce an aligned netty libraries version in transitive dependencies,
due to possible CVEs. -->
<dependency>
<groupId>io.netty</groupId>
- <artifactId>netty-handler</artifactId>
+ <artifactId>netty-buffer</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-dns</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-haproxy</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-memcache</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-mqtt</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-redis</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-smtp</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-socks</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-stomp</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-xml</artifactId>
<version>${version.io.netty}</version>
</dependency>
<dependency>
@@ -217,6 +273,61 @@
<artifactId>netty-common</artifactId>
<version>${version.io.netty}</version>
</dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-dev-tools</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-handler</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-handler-proxy</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-handler-ssl-ocsp</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-resolver</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-resolver-dns</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-transport</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-transport-rxtx</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-transport-sctp</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-transport-udt</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
+ <dependency>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-all</artifactId>
+ <version>${version.io.netty}</version>
+ </dependency>
<dependency>
<groupId>junit</groupId>
diff --git a/packages/root-env/env/index.js b/packages/root-env/env/index.js
index 8612d910892..caaeca5f23d 100644
--- a/packages/root-env/env/index.js
+++ b/packages/root-env/env/index.js
@@ -69,7 +69,7 @@ module.exports = composeEnv([], {
},
/* (end) */
QUARKUS_PLATFORM_version: {
- default: "3.20.1",
+ default: "3.20.2.2",
description: "Quarkus version to be used on dependency declaration.",
},
/* (begin) This part of the file is referenced in
`scripts/update-kogito-version` */
diff --git a/packages/runtime-tools-components/package.json
b/packages/runtime-tools-components/package.json
index 928191675cc..50c82822878 100644
--- a/packages/runtime-tools-components/package.json
+++ b/packages/runtime-tools-components/package.json
@@ -36,7 +36,7 @@
"@patternfly/react-table": "^5.4.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"copyfiles": "^2.4.1",
"keycloak-js": "^23.0.5",
"lodash": "^4.17.21",
diff --git a/packages/runtime-tools-management-console-webapp/package.json
b/packages/runtime-tools-management-console-webapp/package.json
index c01329e2ffe..fd2706c6003 100644
--- a/packages/runtime-tools-management-console-webapp/package.json
+++ b/packages/runtime-tools-management-console-webapp/package.json
@@ -44,7 +44,7 @@
"apollo-link-context": "^1.0.20",
"apollo-link-error": "1.1.13",
"apollo-link-http": "1.5.17",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"graphql": "14.3.1",
"openid-client": "^6.3.3",
"react": "^17.0.2",
diff --git a/packages/runtime-tools-process-dev-ui-webapp/package.json
b/packages/runtime-tools-process-dev-ui-webapp/package.json
index 0337b0e3c99..bed58db5679 100644
--- a/packages/runtime-tools-process-dev-ui-webapp/package.json
+++ b/packages/runtime-tools-process-dev-ui-webapp/package.json
@@ -44,7 +44,7 @@
"apollo-client": "2.6.10",
"apollo-link-error": "1.1.13",
"apollo-link-http": "1.5.17",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-apollo": "3.1.3",
diff --git a/packages/runtime-tools-process-gateway-api/package.json
b/packages/runtime-tools-process-gateway-api/package.json
index 96ead8541a2..32077066891 100644
--- a/packages/runtime-tools-process-gateway-api/package.json
+++ b/packages/runtime-tools-process-gateway-api/package.json
@@ -27,7 +27,7 @@
"@apidevtools/swagger-parser": "^10.1.0",
"@kie-tools/runtime-tools-shared-gateway-api": "workspace:*",
"apollo-client": "2.6.10",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"gql-query-builder": "3.1.3",
"graphql": "14.3.1",
"graphql-tag": "2.0.0",
diff --git a/packages/runtime-tools-process-webapp-components/package.json
b/packages/runtime-tools-process-webapp-components/package.json
index 475a1f67d37..cad52c77f2c 100644
--- a/packages/runtime-tools-process-webapp-components/package.json
+++ b/packages/runtime-tools-process-webapp-components/package.json
@@ -28,7 +28,7 @@
"@kie-tools/runtime-tools-process-gateway-api": "workspace:*",
"@kie-tools/runtime-tools-shared-gateway-api": "workspace:*",
"apollo-client": "2.6.10",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"lodash": "^4.17.21"
},
"devDependencies": {
diff --git a/packages/runtime-tools-swf-gateway-api/package.json
b/packages/runtime-tools-swf-gateway-api/package.json
index c4b52a2f060..0653f5e3bf6 100644
--- a/packages/runtime-tools-swf-gateway-api/package.json
+++ b/packages/runtime-tools-swf-gateway-api/package.json
@@ -28,7 +28,7 @@
"@apidevtools/swagger-parser": "^10.1.0",
"@kie-tools/runtime-tools-shared-gateway-api": "workspace:*",
"apollo-client": "2.6.10",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"gql-query-builder": "3.1.3",
"graphql": "14.3.1",
"graphql-tag": "2.0.0",
diff --git a/packages/serverless-logic-web-tools/package.json
b/packages/serverless-logic-web-tools/package.json
index 53822b29eea..7595c6e111b 100644
--- a/packages/serverless-logic-web-tools/package.json
+++ b/packages/serverless-logic-web-tools/package.json
@@ -73,7 +73,7 @@
"apollo-client": "2.6.10",
"apollo-link-error": "1.1.13",
"apollo-link-http": "1.5.17",
- "axios": "^1.9.0",
+ "axios": "^1.12.2",
"bowser": "^2.10.0",
"buffer": "^6.0.3",
"client-zip": "^2.3.1",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2260a7c8a1a..8cefcb73f26 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8692,8 +8692,8 @@ importers:
specifier: ^3.0.1
version: 3.0.1([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
copyfiles:
specifier: ^2.4.1
version: 2.4.1
@@ -8841,8 +8841,8 @@ importers:
specifier: 1.5.17
version: 1.5.17([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
graphql:
specifier: 14.3.1
version: 14.3.1
@@ -9100,8 +9100,8 @@ importers:
specifier: 1.5.17
version: 1.5.17([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -9468,8 +9468,8 @@ importers:
specifier: 2.6.10
version: 2.6.10([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
gql-query-builder:
specifier: 3.1.3
version: 3.1.3
@@ -9574,8 +9574,8 @@ importers:
specifier: 2.6.10
version: 2.6.10([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
lodash:
specifier: ^4.17.21
version: 4.17.21
@@ -10022,8 +10022,8 @@ importers:
specifier: 2.6.10
version: 2.6.10([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
gql-query-builder:
specifier: 3.1.3
version: 3.1.3
@@ -10633,8 +10633,8 @@ importers:
specifier: 1.5.17
version: 1.5.17([email protected])
axios:
- specifier: ^1.9.0
- version: 1.9.0
+ specifier: ^1.12.2
+ version: 1.12.2
bowser:
specifier: ^2.10.0
version: 2.11.0
@@ -21773,12 +21773,12 @@ packages:
[email protected]:
resolution: {integrity:
sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
+ [email protected]:
+ resolution: {integrity:
sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
+
[email protected]:
resolution: {integrity:
sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==}
- [email protected]:
- resolution: {integrity:
sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==}
-
[email protected]:
resolution: {integrity:
sha512-YMdjAw9l5p/6leiyIloxj3k7VIvYThKjvqgiQn88r3nhT93ENwsoDS3A83CyJ4uTWzCZ5f5jCi6c27rTU5Pz+A==}
@@ -22282,6 +22282,10 @@ packages:
[email protected]:
resolution: {integrity:
sha512-jJZ7pvbQVM/Ss3VO789qpsypN3xmnepg242cejOAslsmlZLYw2dnj7knnNowabQ0Kzabzx56KFTy2Pot/y6FmA==}
+ [email protected]:
+ resolution: {integrity:
sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -23666,6 +23670,10 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
+ [email protected]:
+ resolution: {integrity:
sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
@@ -23858,6 +23866,10 @@ packages:
resolution: {integrity:
sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
+ [email protected]:
+ resolution: {integrity:
sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
@@ -23878,6 +23890,10 @@ packages:
resolution: {integrity:
sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
+ [email protected]:
+ resolution: {integrity:
sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==}
engines: {node: '>= 0.4'}
@@ -23886,6 +23902,10 @@ packages:
resolution: {integrity:
sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
+ [email protected]:
+ resolution: {integrity:
sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==}
@@ -24576,6 +24596,10 @@ packages:
resolution: {integrity:
sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
engines: {node: '>= 6'}
+ [email protected]:
+ resolution: {integrity:
sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
+ engines: {node: '>= 6'}
+
[email protected]:
resolution: {integrity:
sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
engines: {node: '>=12.20.0'}
@@ -24698,6 +24722,10 @@ packages:
resolution: {integrity:
sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
+ [email protected]:
+ resolution: {integrity:
sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
@@ -24710,6 +24738,10 @@ packages:
resolution: {integrity:
sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
engines: {node: '>=8'}
+ [email protected]:
+ resolution: {integrity:
sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-X5+4+iD+HoSeEED+uwrQ07BOQr0kEDFMVqqpBuI+RaZBpBpHCuXxo70bjar6f0b0u/DQJsJ7ssurpP0V60Az+w==}
@@ -24851,6 +24883,10 @@ packages:
[email protected]:
resolution: {integrity:
sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ [email protected]:
+ resolution: {integrity:
sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==}
engines: {node: '>=10.19.0'}
@@ -24968,6 +25004,10 @@ packages:
resolution: {integrity:
sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
+ [email protected]:
+ resolution: {integrity:
sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
@@ -26736,6 +26776,10 @@ packages:
[email protected]:
resolution: {integrity:
sha512-4vRUvPyxdO8cWULGTh9dZWL2tZK6LDBvj+OGHBER7poH9Qdt7kXEoj20wiz4lQUbUXQZFjPbe5mVDo9nutizCw==}
+ [email protected]:
+ resolution: {integrity:
sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
[email protected]:
resolution: {integrity:
sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
@@ -45192,9 +45236,9 @@ snapshots:
webpack: 5.94.0([email protected])
webpack-cli:
4.10.0([email protected])([email protected])([email protected])
-
'@webpack-cli/[email protected]([email protected]([email protected])([email protected]))([email protected](@swc/[email protected])([email protected]))':
+
'@webpack-cli/[email protected]([email protected]([email protected])([email protected]))([email protected]([email protected]))':
dependencies:
- webpack: 5.94.0(@swc/[email protected])([email protected])
+ webpack: 5.94.0([email protected])
webpack-cli: 4.10.0([email protected])([email protected])
'@webpack-cli/[email protected]([email protected]([email protected]))([email protected]([email protected]))':
@@ -46163,25 +46207,25 @@ snapshots:
transitivePeerDependencies:
- debug
- [email protected]:
+ [email protected]:
dependencies:
follow-redirects: 1.15.6
- form-data: 4.0.0
+ form-data: 4.0.4
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- [email protected]([email protected]):
+ [email protected]:
dependencies:
- follow-redirects: 1.15.6([email protected])
+ follow-redirects: 1.15.6
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- [email protected]:
+ [email protected]([email protected]):
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6([email protected])
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -47347,6 +47391,11 @@ snapshots:
[email protected]: {}
+ [email protected]:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
[email protected]:
dependencies:
es-define-property: 1.0.0
@@ -49132,6 +49181,12 @@ snapshots:
typescript: 5.5.3
yargs: 17.7.2
+ [email protected]:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
[email protected]:
dependencies:
readable-stream: 2.3.7
@@ -49343,7 +49398,7 @@ snapshots:
array-buffer-byte-length: 1.0.1
available-typed-arrays: 1.0.7
call-bind: 1.0.7
- es-set-tostringtag: 2.0.1
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
@@ -49381,7 +49436,7 @@ snapshots:
arraybuffer.prototype.slice: 1.0.2
available-typed-arrays: 1.0.7
call-bind: 1.0.7
- es-set-tostringtag: 2.0.1
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
@@ -49472,6 +49527,8 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
+ [email protected]: {}
+
[email protected]: {}
[email protected]:
@@ -49511,6 +49568,10 @@ snapshots:
dependencies:
es-errors: 1.3.0
+ [email protected]:
+ dependencies:
+ es-errors: 1.3.0
+
[email protected]:
dependencies:
get-intrinsic: 1.2.4
@@ -49523,6 +49584,13 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
+ [email protected]:
+ dependencies:
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
[email protected]:
dependencies:
has: 1.0.3
@@ -50486,6 +50554,14 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
+ [email protected]:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
+ mime-types: 2.1.35
+
[email protected]:
dependencies:
fetch-blob: 3.2.0
@@ -50621,12 +50697,30 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.2
+ [email protected]:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
+
[email protected]: {}
[email protected]: {}
[email protected]: {}
+ [email protected]:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
[email protected]:
dependencies:
data-uri-to-buffer: 2.0.2
@@ -50820,6 +50914,8 @@ snapshots:
dependencies:
get-intrinsic: 1.2.4
+ [email protected]: {}
+
[email protected]:
dependencies:
'@sindresorhus/is': 4.0.1
@@ -50970,6 +51066,8 @@ snapshots:
[email protected]: {}
+ [email protected]: {}
+
[email protected]:
dependencies:
has-symbols: 1.0.3
@@ -51118,7 +51216,7 @@ snapshots:
html-minifier-terser: 5.1.1
lodash: 4.17.21
pretty-error: 3.0.4
- tapable: 2.2.1
+ tapable: 2.2.0
webpack: 5.94.0(@swc/[email protected])([email protected])
[email protected]([email protected]([email protected])):
@@ -53561,6 +53659,8 @@ snapshots:
[email protected]: {}
+ [email protected]: {}
+
[email protected]:
dependencies:
hash-base: 3.1.0
@@ -59226,7 +59326,7 @@ snapshots:
[email protected]([email protected])([email protected]):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest':
1.2.0([email protected]([email protected])([email protected]))([email protected](@swc/[email protected])([email protected]))
+ '@webpack-cli/configtest':
1.2.0([email protected]([email protected])([email protected]))([email protected]([email protected]))
'@webpack-cli/info':
1.5.0([email protected]([email protected])([email protected]))
'@webpack-cli/serve':
1.7.0([email protected]([email protected])([email protected]))([email protected]([email protected])([email protected]))
colorette: 2.0.20
@@ -59236,7 +59336,7 @@ snapshots:
import-local: 3.0.2
interpret: 2.2.0
rechoir: 0.7.0
- webpack: 5.94.0(@swc/[email protected])([email protected])
+ webpack: 5.94.0([email protected])
webpack-merge: 5.10.0
optionalDependencies:
webpack-dev-server: 4.15.1([email protected])([email protected])
@@ -59257,14 +59357,14 @@ snapshots:
webpack: 5.94.0([email protected])
webpack-merge: 5.10.0
-
[email protected]([email protected](@swc/[email protected])([email protected])):
+ [email protected]([email protected]([email protected])):
dependencies:
colorette: 2.0.20
memfs: 3.5.1
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.94.0(@swc/[email protected])([email protected])
+ webpack: 5.94.0([email protected])
[email protected]([email protected]):
dependencies:
@@ -59356,10 +59456,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware:
5.3.3([email protected](@swc/[email protected])([email protected]))
+ webpack-dev-middleware: 5.3.3([email protected]([email protected]))
ws: 8.18.0
optionalDependencies:
- webpack: 5.94.0(@swc/[email protected])([email protected])
+ webpack: 5.94.0([email protected])
webpack-cli: 4.10.0([email protected])([email protected])
transitivePeerDependencies:
- bufferutil
@@ -59527,7 +59627,7 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
acorn: 8.12.1
acorn-import-attributes: 1.9.5([email protected])
- browserslist: 4.24.4
+ browserslist: 4.23.3
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]