@ibm-cloud/secrets-manager 2.0.9 → 2.0.11
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 +9 -0
- package/README.md +1 -2
- package/examples/secrets-manager.v2.test.js +1337 -1210
- package/package.json +2 -2
- package/renovate.json +6 -0
- package/secrets-manager/v2.d.ts +1757 -674
- package/secrets-manager/v2.js +721 -69
- package/secrets-manager/v2.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## [2.0.11](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.10...v2.0.11) (2025-06-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency ibm-cloud-sdk-core to v5.4.0 ([dbcfc92](https://github.com/IBM/secrets-manager-node-sdk/commit/dbcfc92f2a51a2c4acc651e6a465cbc08bcfbb48))
|
|
7
|
+
|
|
8
|
+
## [2.0.10](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.9...v2.0.10) (2025-05-05)
|
|
9
|
+
|
|
1
10
|
## [2.0.9](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.8...v2.0.9) (2025-02-17)
|
|
2
11
|
|
|
3
12
|
## [2.0.8](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.7...v2.0.8) (2024-10-07)
|
package/README.md
CHANGED
|
@@ -50,8 +50,7 @@ With IAM authentication, you supply an API key that is used to generate an acces
|
|
|
50
50
|
included in each API request to Secrets Manager. Access tokens are valid for a limited amount of time and must be
|
|
51
51
|
regenerated.
|
|
52
52
|
|
|
53
|
-
Authentication for this SDK is accomplished by
|
|
54
|
-
using [IAM authenticators](https://github.com/IBM/ibm-cloud-sdk-common/blob/master/README.md#authentication). Import
|
|
53
|
+
Authentication for this SDK is accomplished by using [IAM authenticators](https://github.com/IBM/ibm-cloud-sdk-common/blob/master/README.md#authentication). Import
|
|
55
54
|
authenticators from `@ibm-cloud/secrets-manager/auth`.
|
|
56
55
|
|
|
57
56
|
### Examples
|