@dsmrt/axiom-aws-sdk 1.0.4 → 1.0.7

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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # @dsmrt/axiom-aws-sdk
2
2
 
3
+ ## 1.0.7
4
+
5
+ ### Patch Changes
6
+
7
+ - cbe2273: chore: bump all packages to pick up dependency updates
8
+
9
+ ## 1.0.6
10
+
11
+ ### Patch Changes
12
+
13
+ - d5d1a20: chore: remove glob dependency, update AWS SDK and tooling deps
14
+
15
+ Replace glob with native node:fs existsSync for config file discovery.
16
+ Bump @aws-sdk/* from 3.716 to 3.1127, @biomejs/biome to 2.5.12, tsup to 8.5.1.
17
+
18
+ ## 1.0.5
19
+
20
+ ### Patch Changes
21
+
22
+ - fc17744: chore: upgrade to Node 24 and add mise config for local dev
23
+ - fc17744: chore: test npm Trusted Publishers OIDC publish on Node 24
24
+
3
25
  ## 1.0.4
4
26
 
5
27
  ### Patch Changes
package/dist/index.js CHANGED
@@ -76,6 +76,8 @@ var ParameterCollection = class {
76
76
  this.path = path;
77
77
  this.client = client;
78
78
  }
79
+ path;
80
+ client;
79
81
  map = /* @__PURE__ */ new Map();
80
82
  async hasParam(param) {
81
83
  if (this.map.size < 1) {
package/dist/index.mjs CHANGED
@@ -50,6 +50,8 @@ var ParameterCollection = class {
50
50
  this.path = path;
51
51
  this.client = client;
52
52
  }
53
+ path;
54
+ client;
53
55
  map = /* @__PURE__ */ new Map();
54
56
  async hasParam(param) {
55
57
  if (this.map.size < 1) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dsmrt/axiom-aws-sdk",
3
- "version": "1.0.4",
3
+ "version": "1.0.7",
4
4
  "description": "AWS sdk library for working with axiom cli",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -24,20 +24,20 @@
24
24
  },
25
25
  "license": "MIT",
26
26
  "devDependencies": {
27
- "@biomejs/biome": "^2.3.8",
28
- "@changesets/cli": "^2.27.11",
29
- "@types/node": "^22.12.0",
30
- "@vitest/coverage-v8": "^4.0.0",
27
+ "@biomejs/biome": "^2.5.12",
28
+ "@changesets/cli": "^3.0.2",
29
+ "@types/node": "^26.4.1",
30
+ "@vitest/coverage-v8": "^5.0.0",
31
31
  "ts-node": "^10.9.2",
32
- "tsup": "^8.3.5",
32
+ "tsup": "^8.5.1",
33
33
  "typescript": "^5.7.2",
34
- "vitest": "^4.1.0"
34
+ "vitest": "^5.0.0"
35
35
  },
36
36
  "dependencies": {
37
- "@aws-sdk/client-ssm": "^3.716.0",
38
- "@aws-sdk/client-sts": "^3.716.0",
39
- "@aws-sdk/credential-providers": "^3.716.0",
40
- "@aws-sdk/types": "^3.714.0"
37
+ "@aws-sdk/client-ssm": "^3.1127.0",
38
+ "@aws-sdk/client-sts": "^3.1127.0",
39
+ "@aws-sdk/credential-providers": "^3.1127.0",
40
+ "@aws-sdk/types": "^3.974.5"
41
41
  },
42
42
  "scripts": {
43
43
  "lint": "biome lint",