az2aws 1.6.0 → 1.6.1

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.6.1](https://github.com/kuma0128/az2aws/compare/v1.6.0...v1.6.1) (2026-04-02)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * pin transitive security dependency versions ([#149](https://github.com/kuma0128/az2aws/issues/149)) ([cf224df](https://github.com/kuma0128/az2aws/commit/cf224dfaee28a8f1ef0a183c94ddf843d9b7d928))
9
+
3
10
  ## [1.6.0](https://github.com/kuma0128/az2aws/compare/v1.5.0...v1.6.0) (2026-03-17)
4
11
 
5
12
 
package/eslint.config.cjs CHANGED
@@ -1,6 +1,6 @@
1
1
  const tseslint = require("@typescript-eslint/eslint-plugin");
2
2
  const prettier = require("eslint-config-prettier");
3
- const sourceFiles = ["src/**/*.ts", "typings/**/*.ts"];
3
+ const sourceFiles = ["src/**/*.ts"];
4
4
 
5
5
  module.exports = [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "az2aws",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Use Azure AD SSO to log into the AWS CLI. A modern, actively maintained alternative to aws-azure-login.",
5
5
  "main": "index.js",
6
6
  "author": {
@@ -44,7 +44,14 @@
44
44
  "puppeteer"
45
45
  ],
46
46
  "overrides": {
47
+ "brace-expansion@<1.1.12": "1.1.12",
48
+ "brace-expansion@>=2.0.0 <2.0.2": "2.0.2",
49
+ "brace-expansion@>=3.0.0 <3.0.1": "3.0.1",
50
+ "brace-expansion@>=4.0.0 <4.0.1": "4.0.1",
51
+ "flatted@<3.4.2": "3.4.2",
47
52
  "minimatch@>=9.0.0 <9.0.7": "9.0.7",
53
+ "picomatch@<2.3.2": "2.3.2",
54
+ "picomatch@>=4.0.0 <4.0.4": "4.0.4",
48
55
  "yauzl@<3.2.1": "3.2.1"
49
56
  }
50
57
  },
@@ -82,14 +89,14 @@
82
89
  "@types/debug": "^4.1.12",
83
90
  "@types/ini": "^4.1.1",
84
91
  "@types/node": "^25.5.0",
85
- "@typescript-eslint/eslint-plugin": "^8.57.0",
86
- "@typescript-eslint/parser": "^8.57.0",
92
+ "@typescript-eslint/eslint-plugin": "^8.58.0",
93
+ "@typescript-eslint/parser": "^8.58.0",
87
94
  "@vitest/coverage-v8": "^4.1.0",
88
95
  "eslint": "^10.0.3",
89
96
  "eslint-config-prettier": "^10.1.8",
90
97
  "prettier": "^3.8.1",
91
98
  "ts-node-dev": "^2.0.0",
92
- "typescript": "^5.9.3",
99
+ "typescript": "^6.0.2",
93
100
  "vitest": "^4.1.0"
94
101
  }
95
102
  }