Skip to content

Commit

Permalink
bump: [#4684] Update multiple dependencies inside internal libraries …
Browse files Browse the repository at this point in the history
…to latest version (#4752)

* Update internal dependencies

* Fix minimatch
  • Loading branch information
sw-joelmut authored Sep 18, 2024
1 parent a7b9dfd commit 5a35402
Show file tree
Hide file tree
Showing 21 changed files with 1,082 additions and 1,093 deletions.
2 changes: 1 addition & 1 deletion libraries/adaptive-expressions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"build:tests": "tsc -p tests/tsconfig.json",
"build": "npm-run-all build:src build:tests",
"browserify": "browserify lib/browser.js -s AEL --debug -p esmify -t [ babelify --extensions .js,.mjs --global ] | exorcist lib/browser.js.map | sponge lib/browser.js",
"postbuild": "rimraf lib/browser.* && shx cp lib/index.js lib/browser.js && yarn browserify",
"postbuild": "rimraf --glob lib/browser.* && shx cp lib/index.js lib/browser.js && yarn browserify",
"clean": "rimraf lib tsconfig.tsbuildinfo",
"depcheck": "depcheck --config ../../.depcheckrc --ignores sinon,@types/xmldom",
"build-docs": "typedoc --theme markdown --entryPoint adaptive-expressions --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\adaptive-expressions .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - Expression\" --readme none",
Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"zod": "^3.23.8"
},
"devDependencies": {
"axios": "^1.7.5",
"axios": "^1.7.7",
"mime-types": "^2.1.35",
"unzipper": "^0.12.3"
},
Expand Down
9 changes: 4 additions & 5 deletions libraries/botbuilder-repo-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,16 @@
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"dependencies": {
"dayjs": "^1.10.3",
"get-stream": "^6.0.0",
"dayjs": "^1.11.13",
"fast-glob": "^3.3.2",
"lodash": "^4.17.20",
"minimatch": "^4.0.0",
"minimatch": "^9.0.5",
"minimist": "^1.2.6",
"p-map": "^4.0.0"
},
"devDependencies": {
"@types/minimist": "^1.2.1",
"@types/semver": "^7.3.7",
"@types/minimist": "^1.2.5",
"@types/semver": "^7.5.8",
"semver": "^7.5.3",
"ts-node": "^10.9.2",
"typescript": "~4.7"
Expand Down
2 changes: 1 addition & 1 deletion libraries/botbuilder-repo-utils/src/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import fg from 'fast-glob';
import compact from 'lodash/compact';
import minimatch from 'minimatch';
import { minimatch } from 'minimatch';
import path from 'path';
import { Package } from './package';
import { readJsonFile } from './file';
Expand Down
6 changes: 3 additions & 3 deletions libraries/botbuilder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
},
"dependencies": {
"@azure/core-http": "^3.0.4",
"@azure/msal-node": "^2.13.0",
"axios": "^1.7.5",
"@azure/msal-node": "^2.13.1",
"axios": "^1.7.7",
"botbuilder-core": "4.1.6",
"botbuilder-stdlib": "4.1.6",
"botframework-connector": "4.1.6",
Expand All @@ -46,7 +46,7 @@
"chai": "^4.5.0",
"lodash": "^4.17.20",
"nock": "^11.9.1",
"node-mocks-http": "^1.15.1"
"node-mocks-http": "^1.16.0"
},
"scripts": {
"build": "tsc -b",
Expand Down
6 changes: 3 additions & 3 deletions libraries/botframework-connector/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
"dependencies": {
"@azure/core-http": "^3.0.4",
"@azure/identity": "^4.4.1",
"@azure/msal-node": "^2.13.0",
"@azure/msal-node": "^2.13.1",
"@types/jsonwebtoken": "9.0.6",
"axios": "^1.7.5",
"axios": "^1.7.7",
"base64url": "^3.0.0",
"botbuilder-stdlib": "4.1.6",
"botframework-schema": "4.1.6",
Expand Down Expand Up @@ -60,7 +60,7 @@
"scripts": {
"build": "tsc -b",
"build:tsup": "npm-run-all build:tsup:clean build:tsup:run",
"build:tsup:clean": "rimraf lib/browser.*",
"build:tsup:clean": "rimraf --glob lib/browser.*",
"build:tsup:run": "tsup",
"build:downlevel-dts": "downlevel-dts lib _ts3.4/lib --checksum",
"clean": "rimraf _ts3.4 lib tsconfig.tsbuildinfo",
Expand Down
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions testing/botbuilder-test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"sinon": "*"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/mocha": "^10.0.8",
"@types/node-forge": "^1.3.11"
},
"dependencies": {
"nanoid": "^3.1.31",
"nanoid": "^3.3.7",
"node-forge": "^1.3.1",
"zod": "^3.22.4"
"zod": "^3.23.8"
}
}
4 changes: 2 additions & 2 deletions testing/browser-functional/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"description": "Test to check browser compatibility",
"main": "",
"devDependencies": {
"axios": "^1.7.4",
"dotenv": "^8.6.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"nightwatch": "^2.6.21",
"selenium-server": "^3.141.59"
},
Expand Down
2 changes: 1 addition & 1 deletion testing/consumer-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"p-map": "^4.0.0"
},
"devDependencies": {
"@types/minimist": "^1.2.1"
"@types/minimist": "^1.2.5"
}
}
2 changes: 1 addition & 1 deletion testing/consumer-test/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { promisify } from 'util';

const execp = promisify(exec);

const versions = ['4.6', '4.7', '4.8', '4.9', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5'];
const versions = ['4.7', '4.8', '4.9', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5'];

(async () => {
const flags = minimist(process.argv.slice(2), {
Expand Down
4 changes: 2 additions & 2 deletions testing/functional/dialogToDialog/dialogRootBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"botbuilder": "4.1.6",
"botbuilder-dialogs": "4.1.6",
"botframework-connector": "4.1.6",
"dotenv": "^6.2.0",
"dotenv": "^16.4.5",
"restify": "^11.1.0"
},
"devDependencies": {
"typescript": "3.5.3"
"typescript": "~4.7"
}
}
4 changes: 2 additions & 2 deletions testing/functional/dialogToDialog/dialogSkillBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"botbuilder": "4.1.6",
"botbuilder-dialogs": "4.1.6",
"botframework-connector": "4.1.6",
"dotenv": "^6.2.0",
"dotenv": "^16.4.5",
"restify": "^11.1.0"
},
"devDependencies": {
"typescript": "3.5.3"
"typescript": "~4.7"
}
}
2 changes: 1 addition & 1 deletion testing/functional/functionaltestbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"dependencies": {
"botbuilder": "^4.1.6",
"restify": "^11.1.0",
"dotenv": "^6.2.0"
"dotenv": "^16.4.5"
}
}
2 changes: 1 addition & 1 deletion testing/functional/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Test that hits services",
"main": "",
"dependencies": {
"swagger-client": "^3.0.0"
"swagger-client": "^3.23.3"
},
"directories": {
"test": "tests"
Expand Down
2 changes: 1 addition & 1 deletion testing/streaming-e2e/bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"botbuilder": "~4.14.0-rc0",
"botframework-connector": "~4.14.0-rc0",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"dotenv": "^16.4.5",
"math-random": "^2.0.1",
"restify": "^11.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion testing/streaming-e2e/tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"license": "ISC",
"dependencies": {},
"devDependencies": {
"mocha": "^10.4.0",
"mocha": "^10.7.3",
"selenium-webdriver": "^4.0.0-alpha.7"
}
}
4 changes: 2 additions & 2 deletions testing/testbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
"botbuilder-ai": "4.1.6",
"botbuilder-dialogs": "4.1.6",
"botbuilder-testing": "4.1.6",
"dotenv": "^6.2.0",
"dotenv": "^16.4.5",
"restify": "^11.1.0"
},
"devDependencies": {
"assert": "^1.4.1"
"assert": "^2.1.0"
}
}
6 changes: 3 additions & 3 deletions testing/transcripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"license": "MIT",
"dependencies": {
"@types/node": "^10.17.27",
"@types/restify": "^8.4.2",
"@types/restify": "^8.5.12",
"botbuilder": "4.1.6",
"botbuilder-ai": "4.1.6",
"botbuilder-dialogs": "4.1.6"
},
"devDependencies": {
"mocha": "^10.4.0",
"nyc": "^15.1.0"
"mocha": "^10.7.3",
"nyc": "^17.0.0"
}
}
33 changes: 16 additions & 17 deletions tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,32 +31,31 @@
"dependencies": {
"@azure/identity": "^4.4.1",
"@azure/ms-rest-azure-env": "^2.0.0",
"@types/request": "^2.47.1",
"@types/request": "^2.48.12",
"botframework-connector": "4.1.6",
"dotenv": "^4.0.0",
"mime": "^1.4.1",
"underscore": "^1.13.1",
"uuid": "^3.3.2"
"dotenv": "^16.4.5",
"mime": "^4.0.4",
"underscore": "^1.13.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"@azure/msal-node": "^2.13.0",
"async": "^2.6.1",
"colors": "1.1.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.3",
"@azure/msal-node": "^2.13.1",
"async": "^3.2.6",
"colors": "^1.4.0",
"fs-extra": "^11.2.0",
"gulp": "^5.0.0",
"gulp-exec": "^5.0.0",
"jshint": "^2.13.6",
"minami": "github:devigned/minami#master",
"mocha": "^10.4.0",
"nock": "^11.9.1",
"mocha": "^10.7.3",
"nock": "^13.5.5",
"node-forge": "1.3.1",
"nyc": "^15.1.0",
"promise": "^7.1.1",
"random-js": "1.0.4",
"should": "^8.3.1",
"nyc": "^17.0.0",
"promise": "^8.3.0",
"random-js": "^2.1.0",
"should": "^13.2.3",
"sinon": "^2.1.0",
"xmlbuilder": "0.4.3"
"xmlbuilder": "15.1.1"
},
"homepage": "http://github.com/azure/azure-sdk-for-node",
"repository": {
Expand Down
Loading

0 comments on commit 5a35402

Please sign in to comment.