Skip to content

Commit

Permalink
Merge branch 'main' into southworks/update/nock-dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ceciliaavila committed Sep 27, 2024
2 parents a83449e + 7112170 commit 89c3293
Show file tree
Hide file tree
Showing 5 changed files with 163 additions and 58 deletions.
2 changes: 1 addition & 1 deletion libraries/botbuilder-applicationinsights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
"dependencies": {
"applicationinsights": "^1.7.5",
"applicationinsights": "^2.9.6",
"botbuilder-core": "4.1.6",
"cls-hooked": "^4.2.2"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ export interface INodeBuffer extends Uint8Array {
// (undocumented)
copy(targetBuffer: Uint8Array, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;
// (undocumented)
entries(): IterableIterator<[number, number]>;
// (undocumented)
equals(otherBuffer: Uint8Array): boolean;
// (undocumented)
fill(value: any, offset?: number, end?: number): this;
Expand All @@ -54,8 +52,6 @@ export interface INodeBuffer extends Uint8Array {
// (undocumented)
indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: string): number;
// (undocumented)
keys(): IterableIterator<number>;
// (undocumented)
lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: string): number;
// (undocumented)
readDoubleBE(offset: number, noAssert?: boolean): number;
Expand Down Expand Up @@ -109,8 +105,6 @@ export interface INodeBuffer extends Uint8Array {
// (undocumented)
toString(encoding?: string, start?: number, end?: number): string;
// (undocumented)
values(): IterableIterator<number>;
// (undocumented)
write(string: string, offset?: number, length?: number, encoding?: string): number;
// (undocumented)
writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,5 @@ export interface INodeBuffer extends Uint8Array {
fill(value: any, offset?: number, end?: number): this;
indexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: string): number;
lastIndexOf(value: string | number | Uint8Array, byteOffset?: number, encoding?: string): number;
entries(): IterableIterator<[number, number]>;
includes(value: string | number | this, byteOffset?: number, encoding?: string): boolean;
keys(): IterableIterator<number>;
values(): IterableIterator<number>;
}
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,15 @@
"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"
"**/botbuilder-dialogs-adaptive-runtime-integration-restify/restify/send": "^0.19.0",
"**/restify/find-my-way": "^8.2.2"
},
"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"
"**/nightwatch/semver": "Remove the resolution when nightwatch is updated to a latest version",
"**/restify/find-my-way": "Remove the resolution when restify publishes a new version with the patch"
},
"devDependencies": {
"@types/node": "18.19.47",
Expand All @@ -67,7 +69,7 @@
"@types/sinon": "^9.0.11",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"applicationinsights": "^1.7.5",
"applicationinsights": "^2.9.6",
"browserify": "^17.0.0",
"depcheck": "^1.4.7",
"eslint": "^7.21.0",
Expand Down
Loading

0 comments on commit 89c3293

Please sign in to comment.