@ibm-cloud/secrets-manager 1.0.43 → 2.0.0
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/.releaserc +4 -1
- package/CHANGELOG.md +16 -0
- package/README.md +2 -1
- package/examples/secrets-manager.v2.test.js +1244 -0
- package/package.json +2 -6
- package/secrets-manager/v2.d.ts +5937 -0
- package/secrets-manager/v2.js +2371 -0
- package/secrets-manager/v2.js.map +1 -0
package/.releaserc
CHANGED
|
@@ -12,7 +12,10 @@
|
|
|
12
12
|
["@semantic-release/commit-analyzer", {
|
|
13
13
|
"preset": "angular",
|
|
14
14
|
"releaseRules": [
|
|
15
|
-
{"type": "release","release": "patch"}
|
|
15
|
+
{"type": "release","release": "patch"},
|
|
16
|
+
{"type": "major","release": "major"},
|
|
17
|
+
{"type": "minor","release": "minor"},
|
|
18
|
+
{"type": "patch","release": "patch"}
|
|
16
19
|
]}],
|
|
17
20
|
],
|
|
18
21
|
"generateNotes": [
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# [2.0.0](https://github.com/IBM/secrets-manager-node-sdk/compare/v1.0.44...v2.0.0) (2023-04-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* new SM v2 API release ([abd88e0](https://github.com/IBM/secrets-manager-node-sdk/commit/abd88e0825bd524f6601d7b682dd79e69323e7d6))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* new v2 API.
|
|
12
|
+
|
|
13
|
+
Signed-off-by: yuval-shlomo-dekel <yuval.shlomo.dekel@ibm.com>
|
|
14
|
+
|
|
15
|
+
## [1.0.44](https://github.com/IBM/secrets-manager-node-sdk/compare/v1.0.43...v1.0.44) (2023-02-15)
|
|
16
|
+
|
|
1
17
|
## [1.0.43](https://github.com/IBM/secrets-manager-node-sdk/compare/v1.0.42...v1.0.43) (2023-01-08)
|
|
2
18
|
|
|
3
19
|
## [1.0.42](https://github.com/IBM/secrets-manager-node-sdk/compare/v1.0.41...v1.0.42) (2022-12-08)
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|

|
|
2
2
|
|
|
3
|
-
# IBM Cloud Secrets Manager Node.js SDK
|
|
3
|
+
# IBM Cloud Secrets Manager Node.js SDK v2
|
|
4
4
|
|
|
5
5
|
A Node.js client library to interact with
|
|
6
6
|
the [IBM Cloud® Secrets Manager APIs](https://cloud.ibm.com/apidocs/secrets-manager).
|
|
@@ -265,3 +265,4 @@ For general contribution guidelines, see [CONTRIBUTING](CONTRIBUTING.md).
|
|
|
265
265
|
|
|
266
266
|
This SDK project is released under the Apache 2.0 license. The license's full text can be found in [LICENSE](LICENSE).
|
|
267
267
|
|
|
268
|
+
dummy PR #1
|