@ibm-cloud/secrets-manager 2.0.1 → 2.0.3
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 +4 -0
- package/README.md +1 -2
- package/examples/secrets-manager.v2.test.js +2 -2
- package/package.json +3 -3
- package/secrets-manager/v2.d.ts +2605 -350
- package/secrets-manager/v2.js +2029 -10
- package/secrets-manager/v2.js.map +1 -1
- package/secrets-manager/v1.d.ts +0 -4805
- package/secrets-manager/v1.js +0 -2495
- package/secrets-manager/v1.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [2.0.3](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.2...v2.0.3) (2024-02-07)
|
|
2
|
+
|
|
3
|
+
## [2.0.2](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.1...v2.0.2) (2023-12-11)
|
|
4
|
+
|
|
1
5
|
## [2.0.1](https://github.com/IBM/secrets-manager-node-sdk/compare/v2.0.0...v2.0.1) (2023-09-19)
|
|
2
6
|
|
|
3
7
|
# [2.0.0](https://github.com/IBM/secrets-manager-node-sdk/compare/v1.0.44...v2.0.0) (2023-04-17)
|
package/README.md
CHANGED
|
@@ -227,8 +227,7 @@ npm test
|
|
|
227
227
|
|
|
228
228
|
## Questions
|
|
229
229
|
|
|
230
|
-
If you're having difficulties using this SDK, you can ask questions about this project by
|
|
231
|
-
using [Stack Overflow](https://stackoverflow.com/questions/tagged/ibm-secrets-manager). Be sure to include
|
|
230
|
+
If you're having difficulties using this SDK, you can ask questions about this project by using [Stack Overflow](https://stackoverflow.com/questions/tagged/ibm-secrets-manager). Be sure to include
|
|
232
231
|
the `ibm-cloud` and `ibm-secrets-manager` tags.
|
|
233
232
|
|
|
234
233
|
You can also check out the [Secrets Manager documentation](https://cloud.ibm.com/docs/secrets-manager)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @jest-environment node
|
|
3
3
|
*/
|
|
4
4
|
/**
|
|
5
|
-
* (C) Copyright IBM Corp.
|
|
5
|
+
* (C) Copyright IBM Corp. 2024.
|
|
6
6
|
*
|
|
7
7
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
8
|
* you may not use this file except in compliance with the License.
|
|
@@ -132,7 +132,7 @@ describe('SecretsManagerV2', () => {
|
|
|
132
132
|
const secretPrototypeModel = {
|
|
133
133
|
custom_metadata: { metadata_custom_key: 'metadata_custom_value' },
|
|
134
134
|
description: 'Description of my arbitrary secret.',
|
|
135
|
-
expiration_date: '
|
|
135
|
+
expiration_date: '2030-10-05T11:49:42Z',
|
|
136
136
|
labels: ['dev', 'us-south'],
|
|
137
137
|
name: 'example-arbitrary-secret',
|
|
138
138
|
secret_group_id: 'default',
|
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.3",
|
|
4
4
|
"description": "Client library for IBM Cloud Secrets Manager",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
},
|
|
33
33
|
"license": "Apache-2.0",
|
|
34
34
|
"engines": {
|
|
35
|
-
"node": ">=
|
|
35
|
+
"node": ">=14.0.0"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"extend": "^3.0.2",
|
|
39
|
-
"ibm-cloud-sdk-core": "^4.
|
|
39
|
+
"ibm-cloud-sdk-core": "^4.2.2"
|
|
40
40
|
},
|
|
41
41
|
"jest": {
|
|
42
42
|
"collectCoverage": true,
|