Skip to content

Commit 674cd4e

Browse files
update dependency
1 parent e956876 commit 674cd4e

13 files changed

+1979
-1670
lines changed

package-lock.json

Lines changed: 1943 additions & 1637 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,29 +33,30 @@
3333
},
3434
"license": "MIT",
3535
"devDependencies": {
36-
"@rollup/plugin-typescript": "^11.1.2",
37-
"@types/mocha": "^10.0.4",
38-
"@types/node": "^22.7.7",
39-
"@types/sinon": "^17.0.1",
40-
"@types/uuid": "^9.0.7",
41-
"@typescript-eslint/eslint-plugin": "^6.6.0",
42-
"@typescript-eslint/parser": "^6.6.0",
43-
"chai": "^4.3.7",
44-
"chai-as-promised": "^7.1.1",
45-
"dotenv": "^16.3.1",
46-
"eslint": "^8.48.0",
47-
"mocha": "^10.2.0",
48-
"nock": "^13.3.3",
49-
"rimraf": "^5.0.1",
50-
"rollup": "^3.29.5",
51-
"rollup-plugin-dts": "^5.3.0",
52-
"sinon": "^15.2.0",
53-
"tslib": "^2.6.0",
54-
"typescript": "^5.6.3",
55-
"uuid": "^9.0.1"
36+
"@rollup/plugin-typescript": "^11.1.6",
37+
"@types/mocha": "^10.0.10",
38+
"@types/node": "^22.18.0",
39+
"@types/sinon": "^17.0.4",
40+
"@types/uuid": "^9.0.8",
41+
"@typescript-eslint/eslint-plugin": "^8.41.0",
42+
"@typescript-eslint/parser": "^8.41.0",
43+
"chai": "^6.0.1",
44+
"chai-as-promised": "^8.0.2",
45+
"dotenv": "^17.2.1",
46+
"eslint": "^9.34.0",
47+
"mocha": "^11.7.1",
48+
"nock": "^14.0.10",
49+
"rimraf": "^6.0.1",
50+
"rollup": "^4.50.0",
51+
"rollup-plugin-dts": "^6.2.3",
52+
"sinon": "^21.0.0",
53+
"tslib": "^2.8.1",
54+
"typescript": "^5.9.2",
55+
"uuid": "^11.1.0"
5656
},
5757
"dependencies": {
58-
"@azure/app-configuration": "^1.8.0",
58+
"@azure/app-configuration": "^1.9.0",
59+
"@azure/core-rest-pipeline": "^1.6.0",
5960
"@azure/identity": "^4.2.1",
6061
"@azure/keyvault-secrets": "^4.7.0",
6162
"jsonc-parser": "^3.3.1"

test/clientOptions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";
99
import { MAX_TIME_OUT, createMockedConnectionString } from "./utils/testHelper.js";
10-
import * as nock from "nock";
10+
import nock from "nock";
1111

1212
class HttpRequestCountPolicy {
1313
count: number;

test/failover.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi";

test/featureFlag.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
import { featureFlagContentType } from "@azure/app-configuration";
77
import { load } from "./exportedApi.js";
88
import { MAX_TIME_OUT, mockAppConfigurationClientGetSnapshot, mockAppConfigurationClientListConfigurationSettingsForSnapshot, createMockedConnectionString, createMockedEndpoint, createMockedFeatureFlag, createMockedKeyValue, mockAppConfigurationClientListConfigurationSettings, restoreMocks } from "./utils/testHelper.js";

test/json.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";

test/keyvault.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";

test/load.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";

test/loadBalance.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";

test/refresh.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT license.
33

44
import * as chai from "chai";
5-
import * as chaiAsPromised from "chai-as-promised";
5+
import chaiAsPromised from "chai-as-promised";
66
chai.use(chaiAsPromised);
77
const expect = chai.expect;
88
import { load } from "./exportedApi.js";

0 commit comments

Comments
 (0)