@ibm-cloud/secrets-manager 2.0.16 → 2.0.19
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/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.0.19](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.18...v2.0.19) (2026-03-19)
|
|
2
|
+
|
|
3
|
+
## [2.0.18](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.17...v2.0.18) (2026-03-16)
|
|
4
|
+
|
|
5
|
+
## [2.0.17](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.16...v2.0.17) (2026-03-16)
|
|
6
|
+
|
|
1
7
|
## [2.0.16](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.15...v2.0.16) (2026-03-16)
|
|
2
8
|
|
|
3
9
|
## [2.0.15](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.14...v2.0.15) (2026-03-16)
|
package/README.md
CHANGED
|
@@ -78,7 +78,6 @@ To learn more about IAM authenticators and how to use them in your Node.js appli
|
|
|
78
78
|
the [IBM Node.js SDK Core documentation](https://github.com/IBM/node-sdk-core/blob/master/Authentication.md).
|
|
79
79
|
|
|
80
80
|
## Using the SDK
|
|
81
|
-
|
|
82
81
|
### Basic usage
|
|
83
82
|
|
|
84
83
|
- All methods return a Promise that either resolves with the response from the service or rejects with an Error. The
|
|
@@ -238,3 +237,4 @@ For general contribution guidelines, see [CONTRIBUTING](CONTRIBUTING.md).
|
|
|
238
237
|
## License
|
|
239
238
|
|
|
240
239
|
This SDK project is released under the Apache 2.0 license. The license's full text can be found in [LICENSE](LICENSE).
|
|
240
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibm-cloud/secrets-manager",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.19",
|
|
4
4
|
"description": "Client library for IBM Cloud Secrets Manager",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,11 +16,10 @@
|
|
|
16
16
|
"eslint:check": "eslint . --cache",
|
|
17
17
|
"lint": "npm run eslint:check",
|
|
18
18
|
"lint-fix": "npm run eslint:fix",
|
|
19
|
-
"build": "tsc",
|
|
19
|
+
"build": "tsc && cp package.json dist/ && cp README.md dist/",
|
|
20
20
|
"prepare-publish": "npx @masterodin/publisher --dry-run --no-checks",
|
|
21
21
|
"postversion": "npm run prepare-publish",
|
|
22
22
|
"dry-publish": "npm run build && npm run prepare-publish",
|
|
23
|
-
"prepack": "npm run build",
|
|
24
23
|
"publishDist": "npm run build && cd dist && npm publish --access public",
|
|
25
24
|
"jest": "jest",
|
|
26
25
|
"test": "npm run build && jest test/",
|