Update axios dependencies (#22388)
## Description Updates axios dependencies to the latest version (in package.json direct dependencies and in transitive dependencies in lockfiles) throughout the repo to address a few CVEs.
This commit is contained in:
Родитель
e23e509d58
Коммит
f8505c1a8c
|
@ -81,7 +81,7 @@
|
|||
"@fluidframework/telemetry-utils": "workspace:~",
|
||||
"@fluidframework/test-runtime-utils": "workspace:~",
|
||||
"@fluidframework/test-utils": "workspace:~",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"commander": "^5.1.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"js-yaml": "^4.1.0",
|
||||
|
|
|
@ -575,8 +575,8 @@ packages:
|
|||
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
||||
dev: false
|
||||
|
||||
/axios@1.6.8(debug@4.3.4):
|
||||
resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==}
|
||||
/axios@1.7.7(debug@4.3.4):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
|
@ -3817,7 +3817,7 @@ packages:
|
|||
engines: {node: '>=12.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
axios: 1.6.8(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
joi: 17.12.2
|
||||
lodash: 4.17.21
|
||||
minimist: 1.2.8
|
||||
|
|
|
@ -44,7 +44,7 @@ module.exports = (env) => {
|
|||
template: "./src/index.html",
|
||||
}),
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
},
|
||||
|
|
|
@ -41,7 +41,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -49,7 +49,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -65,7 +65,7 @@ module.exports = (env) => {
|
|||
// https://github.com/browserify/node-util/issues/57#issuecomment-764436352
|
||||
// Note that using DefinePlugin with `process.env.NODE_DEBUG': undefined` would also handle this case.
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./public/index.html",
|
||||
|
|
|
@ -44,7 +44,7 @@ module.exports = (env) => {
|
|||
template: "./src/index.html",
|
||||
}),
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
},
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -48,7 +48,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
},
|
||||
|
|
|
@ -72,7 +72,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
// This impacts which files are watched by the dev server (and likely by webpack if watch is true).
|
||||
|
|
|
@ -41,7 +41,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
// This impacts which files are watched by the dev server (and likely by webpack if watch is true).
|
||||
|
|
|
@ -59,7 +59,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
],
|
||||
// This impacts which files are watched by the dev server (and likely by webpack if watch is true).
|
||||
|
|
|
@ -48,7 +48,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: path.join(__dirname, "tests", "index.html"),
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
"@fluidframework/routerlicious-driver": "workspace:~",
|
||||
"@fluidframework/telemetry-utils": "workspace:~",
|
||||
"assert": "^2.0.0",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"events_pkg": "npm:events@^3.1.0",
|
||||
"fluid-framework": "workspace:~",
|
||||
"uuid": "^9.0.0"
|
||||
|
|
|
@ -48,7 +48,7 @@ module.exports = (env) => {
|
|||
"process.env.FLUID_CLIENT": JSON.stringify(fluidClient),
|
||||
}),
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -54,7 +54,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
// No need to write a index.html
|
||||
new HtmlWebpackPlugin({
|
||||
|
|
|
@ -101,7 +101,7 @@
|
|||
"@fluidframework/telemetry-utils": "workspace:~",
|
||||
"@fluidframework/test-runtime-utils": "workspace:~",
|
||||
"@fluidframework/tool-utils": "workspace:~",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"buffer": "^6.0.3",
|
||||
"express": "^4.19.2",
|
||||
"isomorphic-fetch": "^3.0.0",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -44,7 +44,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -48,7 +48,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -44,7 +44,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -42,7 +42,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -36,7 +36,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./src/index.html",
|
||||
|
|
|
@ -46,7 +46,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: "./tests/index.html",
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
"@fluidframework/runtime-definitions": "workspace:~",
|
||||
"@fluidframework/runtime-utils": "workspace:~",
|
||||
"@fluidframework/shared-object-base": "workspace:~",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"buffer": "^6.0.3",
|
||||
"lodash": "^4.17.21",
|
||||
"lz4js": "^0.2.0",
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
"@types/node": "^18.19.0",
|
||||
"@types/sinon": "^17.0.3",
|
||||
"@types/uuid": "^9.0.2",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"c8": "^8.0.1",
|
||||
"concurrently": "^8.2.1",
|
||||
"copyfiles": "^2.4.1",
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
"@fluidframework/core-utils": "workspace:~",
|
||||
"@fluidframework/driver-definitions": "workspace:~",
|
||||
"@fluidframework/telemetry-utils": "workspace:~",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"lz4js": "^0.2.0",
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
"@fluidframework/test-runtime-utils": "workspace:~",
|
||||
"@fluidframework/test-utils": "workspace:~",
|
||||
"@fluidframework/tree": "workspace:~",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"cross-env": "^7.0.3",
|
||||
"mocha": "^10.2.0",
|
||||
"mocha-json-output-reporter": "^2.0.1",
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
"@fluidframework/tinylicious-driver": "workspace:~",
|
||||
"@fluidframework/tool-utils": "workspace:~",
|
||||
"agentkeepalive": "^4.5.0",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"semver": "^7.5.3",
|
||||
"uuid": "^9.0.0"
|
||||
},
|
||||
|
|
|
@ -79,7 +79,7 @@ module.exports = {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
|
|
|
@ -50,7 +50,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new Dotenv({
|
||||
path: "./.env",
|
||||
|
|
|
@ -61,7 +61,7 @@ module.exports = (env) => {
|
|||
},
|
||||
plugins: [
|
||||
new webpack.ProvidePlugin({
|
||||
process: "process/browser",
|
||||
process: "process/browser.js",
|
||||
}),
|
||||
new HtmlWebpackPlugin({
|
||||
template: path.join(sourcePath, "index.html"),
|
||||
|
|
|
@ -272,8 +272,8 @@ importers:
|
|||
specifier: workspace:~
|
||||
version: link:../../../../packages/test/test-utils
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
commander:
|
||||
specifier: ^5.1.0
|
||||
version: 5.1.0
|
||||
|
@ -4133,8 +4133,8 @@ importers:
|
|||
specifier: ^2.0.0
|
||||
version: 2.1.0
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
events_pkg:
|
||||
specifier: npm:events@^3.1.0
|
||||
version: /events@3.3.0
|
||||
|
@ -4741,8 +4741,8 @@ importers:
|
|||
specifier: workspace:~
|
||||
version: link:../../../packages/utils/tool-utils
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
buffer:
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.3
|
||||
|
@ -6106,8 +6106,8 @@ importers:
|
|||
specifier: workspace:~
|
||||
version: link:../../../../packages/dds/shared-object-base
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
buffer:
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.3
|
||||
|
@ -10182,8 +10182,8 @@ importers:
|
|||
specifier: ^9.0.2
|
||||
version: 9.0.7
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
c8:
|
||||
specifier: ^8.0.1
|
||||
version: 8.0.1
|
||||
|
@ -11818,8 +11818,8 @@ importers:
|
|||
specifier: workspace:~
|
||||
version: link:../../utils/telemetry-utils
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
lz4js:
|
||||
specifier: ^0.2.0
|
||||
version: 0.2.0
|
||||
|
@ -12924,8 +12924,8 @@ importers:
|
|||
specifier: workspace:~
|
||||
version: link:../../../dds/tree
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
cross-env:
|
||||
specifier: ^7.0.3
|
||||
version: 7.0.3
|
||||
|
@ -14003,8 +14003,8 @@ importers:
|
|||
specifier: ^4.5.0
|
||||
version: 4.5.0
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
semver:
|
||||
specifier: ^7.5.3
|
||||
version: 7.6.0
|
||||
|
@ -19916,7 +19916,7 @@ packages:
|
|||
'@fluidframework/core-utils': 2.2.0
|
||||
'@fluidframework/driver-definitions': 2.2.0
|
||||
'@fluidframework/telemetry-utils': 2.2.0
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
lz4js: 0.2.0
|
||||
uuid: 9.0.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -19932,7 +19932,7 @@ packages:
|
|||
'@fluidframework/core-utils': 2.2.0
|
||||
'@fluidframework/driver-definitions': 2.2.0
|
||||
'@fluidframework/telemetry-utils': 2.2.0
|
||||
axios: 1.6.2(debug@4.3.6)
|
||||
axios: 1.7.7(debug@4.3.6)
|
||||
lz4js: 0.2.0
|
||||
uuid: 9.0.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -20663,7 +20663,7 @@ packages:
|
|||
'@types/semver': 7.5.6
|
||||
assert: 2.1.0
|
||||
async: 3.2.5
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
buffer: 6.0.3
|
||||
double-ended-queue: 2.1.0-0
|
||||
events: 3.3.0
|
||||
|
@ -20691,7 +20691,7 @@ packages:
|
|||
'@types/semver': 7.5.6
|
||||
assert: 2.1.0
|
||||
async: 3.2.5
|
||||
axios: 1.6.2(debug@4.3.5)
|
||||
axios: 1.7.7(debug@4.3.5)
|
||||
buffer: 6.0.3
|
||||
double-ended-queue: 2.1.0-0
|
||||
events: 3.3.0
|
||||
|
@ -20719,7 +20719,7 @@ packages:
|
|||
'@types/semver': 7.5.6
|
||||
assert: 2.1.0
|
||||
async: 3.2.5
|
||||
axios: 1.6.2(debug@4.3.6)
|
||||
axios: 1.7.7(debug@4.3.6)
|
||||
buffer: 6.0.3
|
||||
double-ended-queue: 2.1.0-0
|
||||
events: 3.3.0
|
||||
|
@ -20808,7 +20808,7 @@ packages:
|
|||
'@fluidframework/gitresources': 5.0.0
|
||||
'@fluidframework/protocol-base': 5.0.0
|
||||
'@fluidframework/protocol-definitions': 3.2.0
|
||||
axios: 1.6.2(debug@4.3.5)
|
||||
axios: 1.7.7(debug@4.3.5)
|
||||
crc-32: 1.2.0
|
||||
debug: 4.3.5
|
||||
json-stringify-safe: 5.0.1
|
||||
|
@ -22572,7 +22572,7 @@ packages:
|
|||
dependencies:
|
||||
'@previewjs/serializable-values': 7.0.3
|
||||
'@previewjs/type-analyzer': 8.0.2
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
transitivePeerDependencies:
|
||||
- debug
|
||||
dev: true
|
||||
|
@ -22621,7 +22621,7 @@ packages:
|
|||
acorn: 8.11.2
|
||||
acorn-jsx: 5.3.2(acorn@8.11.2)
|
||||
assert-never: 1.2.1
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
exclusive-promises: 1.0.3
|
||||
express: 4.19.2
|
||||
fs-extra: 11.1.1
|
||||
|
@ -25188,8 +25188,8 @@ packages:
|
|||
- debug
|
||||
dev: false
|
||||
|
||||
/axios@1.6.2(debug@4.3.4):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.4):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
|
@ -25197,8 +25197,8 @@ packages:
|
|||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
/axios@1.6.2(debug@4.3.5):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.5):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.5)
|
||||
form-data: 4.0.0
|
||||
|
@ -25206,8 +25206,8 @@ packages:
|
|||
transitivePeerDependencies:
|
||||
- debug
|
||||
|
||||
/axios@1.6.2(debug@4.3.6):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.6):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.6)
|
||||
form-data: 4.0.0
|
||||
|
@ -37751,7 +37751,7 @@ packages:
|
|||
'@fluidframework/server-services-utils': 5.0.0
|
||||
'@fluidframework/server-test-utils': 5.0.0
|
||||
agentkeepalive: 4.5.0
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
body-parser: 1.20.2
|
||||
charwise: 3.0.1
|
||||
compression: 1.7.4
|
||||
|
@ -38861,7 +38861,7 @@ packages:
|
|||
engines: {node: '>=12.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
joi: 17.12.2
|
||||
lodash: 4.17.21
|
||||
minimist: 1.2.8
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"@fluidframework/server-services-utils": "6.0.0-287165",
|
||||
"@fluidframework/server-test-utils": "6.0.0-287165",
|
||||
"async-mutex": "^0.3.2",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"body-parser": "^1.17.2",
|
||||
"compression": "^1.7.3",
|
||||
"cors": "^2.8.5",
|
||||
|
|
|
@ -228,8 +228,8 @@ importers:
|
|||
specifier: ^0.3.2
|
||||
version: 0.3.2
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
body-parser:
|
||||
specifier: ^1.17.2
|
||||
version: 1.20.1
|
||||
|
@ -1762,7 +1762,7 @@ packages:
|
|||
'@fluidframework/gitresources': 6.0.0-287165
|
||||
'@fluidframework/protocol-base': 6.0.0-287165
|
||||
'@fluidframework/protocol-definitions': 3.2.0
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
crc-32: 1.2.0
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
json-stringify-safe: 5.0.1
|
||||
|
@ -4094,8 +4094,8 @@ packages:
|
|||
dependencies:
|
||||
possible-typed-array-names: 1.0.0
|
||||
|
||||
/axios@1.6.2(debug@4.3.4):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.4):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"@fluidframework/server-services-telemetry": "6.0.0-287165",
|
||||
"@fluidframework/server-services-utils": "6.0.0-287165",
|
||||
"@types/ioredis-mock": "^8.2.5",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"body-parser": "^1.17.2",
|
||||
"compression": "^1.7.3",
|
||||
"cors": "^2.8.5",
|
||||
|
|
|
@ -205,8 +205,8 @@ importers:
|
|||
specifier: ^8.2.5
|
||||
version: 8.2.5
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
body-parser:
|
||||
specifier: ^1.17.2
|
||||
version: 1.20.2
|
||||
|
@ -288,7 +288,7 @@ importers:
|
|||
version: 3.2.4
|
||||
axios-mock-adapter:
|
||||
specifier: ^1.19.0
|
||||
version: 1.21.4(axios@1.6.2)
|
||||
version: 1.21.4(axios@1.7.7)
|
||||
c8:
|
||||
specifier: ^8.0.1
|
||||
version: 8.0.1
|
||||
|
@ -2226,7 +2226,7 @@ packages:
|
|||
'@fluidframework/gitresources': 6.0.0-287165
|
||||
'@fluidframework/protocol-base': 6.0.0-287165
|
||||
'@fluidframework/protocol-definitions': 3.2.0
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
crc-32: 1.2.0
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
json-stringify-safe: 5.0.1
|
||||
|
@ -2373,7 +2373,7 @@ packages:
|
|||
'@socket.io/redis-emitter': 4.1.1
|
||||
'@types/lodash': 4.14.194
|
||||
amqplib: 0.10.3
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
events: 3.3.0
|
||||
ioredis: 5.2.3
|
||||
|
@ -4636,18 +4636,18 @@ packages:
|
|||
possible-typed-array-names: 1.0.0
|
||||
dev: true
|
||||
|
||||
/axios-mock-adapter@1.21.4(axios@1.6.2):
|
||||
/axios-mock-adapter@1.21.4(axios@1.7.7):
|
||||
resolution: {integrity: sha512-ztnENm28ONAKeRXC/6SUW6pcsaXbThKq93MRDRAA47LYTzrGSDoO/DCr1NHz7jApEl95DrBoGPvZ0r9xtSbjqw==}
|
||||
peerDependencies:
|
||||
axios: '>= 0.17.0'
|
||||
dependencies:
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
fast-deep-equal: 3.1.3
|
||||
is-buffer: 2.0.5
|
||||
dev: true
|
||||
|
||||
/axios@1.6.2(debug@4.3.4):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.4):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"@types/semver": "^7.5.0",
|
||||
"assert": "^2.0.0",
|
||||
"async": "^3.2.2",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"buffer": "^6.0.3",
|
||||
"double-ended-queue": "^2.1.0-0",
|
||||
"events": "^3.1.0",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"@fluidframework/gitresources": "workspace:~",
|
||||
"@fluidframework/protocol-base": "workspace:~",
|
||||
"@fluidframework/protocol-definitions": "^3.2.0",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"crc-32": "1.2.0",
|
||||
"debug": "^4.3.4",
|
||||
"json-stringify-safe": "^5.0.1",
|
||||
|
|
|
@ -91,7 +91,7 @@
|
|||
"@types/node": "^18.19.39",
|
||||
"@types/supertest": "^2.0.5",
|
||||
"@types/uuid": "^9.0.2",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"c8": "^8.0.1",
|
||||
"concurrently": "^8.2.1",
|
||||
"eslint": "~8.55.0",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"@socket.io/redis-emitter": "^4.1.1",
|
||||
"@types/lodash": "^4.14.118",
|
||||
"amqplib": "^0.10.2",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"debug": "^4.3.4",
|
||||
"events": "^3.1.0",
|
||||
"ioredis": "^5.2.3",
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
"@fluidframework/server-services-utils": "workspace:~",
|
||||
"@fluidframework/server-test-utils": "workspace:~",
|
||||
"agentkeepalive": "^4.2.1",
|
||||
"axios": "^1.6.2",
|
||||
"axios": "^1.7.7",
|
||||
"body-parser": "^1.17.1",
|
||||
"charwise": "^3.0.1",
|
||||
"compression": "^1.7.2",
|
||||
|
|
|
@ -185,8 +185,8 @@ importers:
|
|||
specifier: ^3.2.2
|
||||
version: 3.2.4
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
buffer:
|
||||
specifier: ^6.0.3
|
||||
version: 6.0.3
|
||||
|
@ -1014,8 +1014,8 @@ importers:
|
|||
specifier: ^0.10.2
|
||||
version: 0.10.3
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
debug:
|
||||
specifier: ^4.3.4
|
||||
version: 4.3.4(supports-color@8.1.1)
|
||||
|
@ -1138,8 +1138,8 @@ importers:
|
|||
specifier: ^3.2.0
|
||||
version: 3.2.0
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
crc-32:
|
||||
specifier: 1.2.0
|
||||
version: 1.2.0
|
||||
|
@ -1197,7 +1197,7 @@ importers:
|
|||
version: 9.0.2
|
||||
axios-mock-adapter:
|
||||
specifier: ^1.19.0
|
||||
version: 1.21.5(axios@1.6.2)
|
||||
version: 1.21.5(axios@1.7.7)
|
||||
c8:
|
||||
specifier: ^8.0.1
|
||||
version: 8.0.1
|
||||
|
@ -1615,8 +1615,8 @@ importers:
|
|||
specifier: ^9.0.2
|
||||
version: 9.0.2
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
c8:
|
||||
specifier: ^8.0.1
|
||||
version: 8.0.1
|
||||
|
@ -1999,8 +1999,8 @@ importers:
|
|||
specifier: ^4.2.1
|
||||
version: 4.3.0
|
||||
axios:
|
||||
specifier: ^1.6.2
|
||||
version: 1.6.2(debug@4.3.4)
|
||||
specifier: ^1.7.7
|
||||
version: 1.7.7(debug@4.3.4)
|
||||
body-parser:
|
||||
specifier: ^1.17.1
|
||||
version: 1.20.2
|
||||
|
@ -3991,7 +3991,7 @@ packages:
|
|||
'@types/semver': 7.5.6
|
||||
assert: 2.1.0
|
||||
async: 3.2.5
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
buffer: 6.0.3
|
||||
double-ended-queue: 2.1.0-0
|
||||
events: 3.3.0
|
||||
|
@ -4137,7 +4137,7 @@ packages:
|
|||
'@fluidframework/gitresources': 5.0.0
|
||||
'@fluidframework/protocol-base': 5.0.0
|
||||
'@fluidframework/protocol-definitions': 3.2.0
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
crc-32: 1.2.0
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
json-stringify-safe: 5.0.1
|
||||
|
@ -4287,7 +4287,7 @@ packages:
|
|||
'@socket.io/redis-emitter': 4.1.1
|
||||
'@types/lodash': 4.14.202
|
||||
amqplib: 0.10.3
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
debug: 4.3.4(supports-color@8.1.1)
|
||||
events: 3.3.0
|
||||
ioredis: 5.3.2
|
||||
|
@ -7390,18 +7390,18 @@ packages:
|
|||
dependencies:
|
||||
possible-typed-array-names: 1.0.0
|
||||
|
||||
/axios-mock-adapter@1.21.5(axios@1.6.2):
|
||||
/axios-mock-adapter@1.21.5(axios@1.7.7):
|
||||
resolution: {integrity: sha512-5NI1V/VK+8+JeTF8niqOowuysA4b8mGzdlMN/QnTnoXbYh4HZSNiopsDclN2g/m85+G++IrEtUdZaQ3GnaMsSA==}
|
||||
peerDependencies:
|
||||
axios: '>= 0.17.0'
|
||||
dependencies:
|
||||
axios: 1.6.2(debug@4.3.4)
|
||||
axios: 1.7.7(debug@4.3.4)
|
||||
fast-deep-equal: 3.1.3
|
||||
is-buffer: 2.0.5
|
||||
dev: true
|
||||
|
||||
/axios@1.6.2(debug@4.3.4):
|
||||
resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
|
||||
/axios@1.7.7(debug@4.3.4):
|
||||
resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
|
||||
dependencies:
|
||||
follow-redirects: 1.15.6(debug@4.3.4)
|
||||
form-data: 4.0.0
|
||||
|
|
Загрузка…
Ссылка в новой задаче