-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump: [#4684] Update multiple dependencies inside internal libraries …
…to latest version (#4752) * Update internal dependencies * Fix minimatch
- Loading branch information
1 parent
a7b9dfd
commit 5a35402
Showing
21 changed files
with
1,082 additions
and
1,093 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,13 +15,14 @@ | |
"build": "wsrun -e -m -t build", | ||
"build-docs": "wsrun -e -m build-docs", | ||
"clean": "wsrun -m clean", | ||
"clean:node_modules": "rimraf --glob ./**/node_modules", | ||
"depcheck": "wsrun -m -l depcheck", | ||
"dev:link": "wsrun --if is-not-private --bin=yarn link", | ||
"dev:unlink": "wsrun --if is-not-private --bin=yarn unlink", | ||
"functional-test": "yarn build && yarn workspace functional-tests test", | ||
"lint": "wsrun -m -l lint --max-warnings=0", | ||
"package": "wsrun -e -t -l --if is-not-private --bin yarn pack", | ||
"test": "npm-run-all build test:mocha test:runtime test:runtime test:mocha:transcripts test:nyc:report", | ||
"test": "npm-run-all build test:mocha test:runtime test:mocha:transcripts test:nyc:report", | ||
"test:compat": "wsrun -e -m -t test:compat", | ||
"test:consumer": "yarn workspace consumer-test test", | ||
"test:devops": "npm-run-all test:mocha:junit test:nyc:cobertura", | ||
|
@@ -43,25 +44,26 @@ | |
"resolutions": { | ||
"@microsoft/recognizers-text-number": "~1.3.1", | ||
"@types/ramda": "0.26.0", | ||
"babel-traverse": "npm:@babel/traverse@^7.24.7", | ||
"babel-traverse": "npm:@babel/[email protected]", | ||
"lodash.pick": "file:overrides/lodash.pick", | ||
"**/nightwatch/ejs": "^3.1.10", | ||
"**/nightwatch/semver": "^7.5.2", | ||
"**/botbuilder-dialogs-adaptive-runtime-integration-restify/restify/send": "^0.19.0" | ||
}, | ||
"resolutionComments": { | ||
"babel-traverse": "Keep version pinned at '7.24.7'(different than other @babel/traverse), so it doesn't collide. Remove the resolution and override project when replacing browserify, so it removes esmify which has this dependency.", | ||
"lodash.pick": "Remove the resolution and override project when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681", | ||
"**/nightwatch/ejs": "Remove the resolution when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681", | ||
"**/nightwatch/semver": "Remove the resolution when nightwatch is updated to a latest version" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "18.19.47", | ||
"@azure/logger": "^1.0.2", | ||
"@microsoft/api-extractor": "^7.38.2", | ||
"@azure/logger": "^1.1.4", | ||
"@microsoft/api-extractor": "^7.47.9", | ||
"@standardlabs/downlevel-dts": "^0.7.5", | ||
"@standardlabs/is-private": "^1.0.1", | ||
"@types/lodash": "^4.14.134", | ||
"@types/mocha": "^5.2.7", | ||
"@types/lodash": "^4.17.7", | ||
"@types/mocha": "^10.0.8", | ||
"@types/sinon": "^9.0.11", | ||
"@typescript-eslint/eslint-plugin": "^4.16.1", | ||
"@typescript-eslint/parser": "^4.16.1", | ||
|
@@ -78,21 +80,20 @@ | |
"eslint-plugin-prettier": "^3.3.1", | ||
"eslint-plugin-security": "^1.4.0", | ||
"exorcist": "^2.0.0", | ||
"mocha": "^10.4.0", | ||
"mocha-junit-reporter": "^2.0.0", | ||
"mocha": "^10.7.3", | ||
"mocha-junit-reporter": "^2.2.1", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"nyc": "^17.0.0", | ||
"prettier": "^2.1.2", | ||
"replace-in-file": "^4.1.0", | ||
"rimraf": "^3.0.2", | ||
"shx": "^0.3.3", | ||
"shx": "^0.3.4", | ||
"sinon": "^9.2.4", | ||
"source-map-support": "^0.5.19", | ||
"source-map-support": "^0.5.21", | ||
"sponge": "^0.1.0", | ||
"ts-node": "^10.0.0", | ||
"typedoc": "^0.24.8", | ||
"ts-node": "^10.9.2", | ||
"typedoc": "^0.26.7", | ||
"typedoc-plugin-external-module-name": "^4.0.6", | ||
"typedoc-plugin-markdown": "^3.11.17", | ||
"typedoc-plugin-markdown": "^4.2.7", | ||
"typescript": "~4.7", | ||
"wsrun": "^5.2.4", | ||
"esmify": "^2.1.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,6 @@ | |
"p-map": "^4.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/minimist": "^1.2.1" | ||
"@types/minimist": "^1.2.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,6 @@ | |
"dependencies": { | ||
"botbuilder": "^4.1.6", | ||
"restify": "^11.1.0", | ||
"dotenv": "^6.2.0" | ||
"dotenv": "^16.4.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.