@azure/keyvault-common 2.0.1-alpha.20250206.1 → 2.0.1-alpha.20250211.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -33,6 +33,16 @@ For information on next steps, please see our [Key Vault client libraries](#key-
|
|
|
33
33
|
|
|
34
34
|
If you run into issues while using this library, directly or indirectly, please feel free to [file an issue](https://github.com/Azure/azure-sdk-for-js/issues/new).
|
|
35
35
|
|
|
36
|
+
### Logging
|
|
37
|
+
|
|
38
|
+
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
|
|
39
|
+
|
|
40
|
+
```ts snippet:SetLogLevel
|
|
41
|
+
import { setLogLevel } from "@azure/logger";
|
|
42
|
+
|
|
43
|
+
setLogLevel("info");
|
|
44
|
+
```
|
|
45
|
+
|
|
36
46
|
## Contributing
|
|
37
47
|
|
|
38
48
|
If you'd like to contribute to this library, please read the [contributing guide](https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md) to learn more about how to build and test the code.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/keyvault-common",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.20250211.2",
|
|
4
4
|
"description": "Common internal functionality for all of the Azure Key Vault clients in the Azure SDK for JavaScript",
|
|
5
5
|
"sdk-type": "client",
|
|
6
6
|
"author": "Microsoft Corporation",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"unit-test": "npm run unit-test:node && npm run unit-test:browser",
|
|
31
31
|
"unit-test:browser": "echo skipped",
|
|
32
32
|
"unit-test:node": "dev-tool run test:vitest --no-test-proxy",
|
|
33
|
-
"update-snippets": "
|
|
33
|
+
"update-snippets": "dev-tool run update-snippets"
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
36
|
"dist/",
|
|
@@ -58,21 +58,21 @@
|
|
|
58
58
|
"@azure/core-client": "^1.5.0",
|
|
59
59
|
"@azure/core-rest-pipeline": "^1.8.0",
|
|
60
60
|
"@azure/core-tracing": "^1.0.0",
|
|
61
|
+
"@azure/core-util": "^1.10.0",
|
|
61
62
|
"@azure/logger": "^1.1.4",
|
|
62
|
-
"tslib": "^2.2.0"
|
|
63
|
-
"@azure/core-util": "^1.10.0"
|
|
63
|
+
"tslib": "^2.2.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@azure-tools/test-utils-vitest": ">=1.0.0-alpha <1.0.0-alphb",
|
|
67
67
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
68
68
|
"@azure/eslint-plugin-azure-sdk": ">=3.0.0-alpha <3.0.0-alphb",
|
|
69
69
|
"@types/node": "^18.0.0",
|
|
70
|
-
"@vitest/browser": "^3.0.
|
|
71
|
-
"@vitest/coverage-istanbul": "^3.0.
|
|
70
|
+
"@vitest/browser": "^3.0.5",
|
|
71
|
+
"@vitest/coverage-istanbul": "^3.0.5",
|
|
72
72
|
"eslint": "^9.9.0",
|
|
73
73
|
"playwright": "^1.46.0",
|
|
74
74
|
"typescript": "~5.7.2",
|
|
75
|
-
"vitest": "^3.0.
|
|
75
|
+
"vitest": "^3.0.5"
|
|
76
76
|
},
|
|
77
77
|
"type": "module",
|
|
78
78
|
"tshy": {
|