@effect-aws/ssm 1.0.1 → 1.0.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/CHANGELOG.md +6 -0
- package/README.md +3 -0
- package/package.json +3 -3
- package/vitest.config.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @effect-aws/ssm
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`cc97eae`](https://github.com/floydspace/effect-aws/commit/cc97eaed1f8df72b8e7fde05069e8ce8eaac578f) Thanks [@floydspace](https://github.com/floydspace)! - simplify layers configuration (closes #78)
|
|
8
|
+
|
|
3
9
|
## 1.0.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @effect-aws/ssm
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@effect-aws/ssm)
|
|
4
|
+
[](https://www.npmjs.com/package/@effect-aws/ssm)
|
|
5
|
+
|
|
3
6
|
This package provides a `fromParameterStore` [ConfigProvider](https://effect.website/docs/guides/configuration) constructor function.
|
|
4
7
|
You can use it to read parameters from AWS Systems Manager Parameter Store as a `Config` schema.
|
|
5
8
|
|
package/package.json
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@aws-sdk/client-ssm": "^3",
|
|
10
|
-
"@effect-aws/client-ssm": "1.0.0",
|
|
11
10
|
"@fluffy-spoon/substitute": "^1.208.0",
|
|
12
11
|
"@types/node": "^18",
|
|
13
12
|
"@typescript-eslint/eslint-plugin": "^7",
|
|
@@ -20,7 +19,8 @@
|
|
|
20
19
|
"eslint-plugin-prettier": "^5.2.1",
|
|
21
20
|
"prettier": "^3.2.5",
|
|
22
21
|
"typescript": "^5.4.2",
|
|
23
|
-
"vitest": "^2.0.5"
|
|
22
|
+
"vitest": "^2.0.5",
|
|
23
|
+
"@effect-aws/client-ssm": "^1.2.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@effect-aws/client-ssm": "^1.0.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"version": "1.0.
|
|
35
|
+
"version": "1.0.2",
|
|
36
36
|
"types": "lib/index.d.ts",
|
|
37
37
|
"module": "lib/esm/index.js",
|
|
38
38
|
"sideEffects": [],
|
package/vitest.config.ts
ADDED