az2aws 1.8.0 → 1.8.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.8.1](https://github.com/kuma0128/az2aws/compare/v1.8.0...v1.8.1) (2026-05-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **update-notifier:** shorten cache TTL to 6 hours ([#207](https://github.com/kuma0128/az2aws/issues/207)) ([4112845](https://github.com/kuma0128/az2aws/commit/411284573c6609832ec63914f7cfc2ff44eb2340))
9
+
3
10
  ## [1.8.0](https://github.com/kuma0128/az2aws/compare/v1.7.0...v1.8.0) (2026-04-27)
4
11
 
5
12
 
@@ -9,7 +9,7 @@ const fs_1 = __importDefault(require("fs"));
9
9
  const path_1 = __importDefault(require("path"));
10
10
  const os_1 = __importDefault(require("os"));
11
11
  const PACKAGE_NAME = "az2aws";
12
- const CACHE_TTL_MS = 1000 * 60 * 60 * 24; // 24 hours
12
+ const CACHE_TTL_MS = 1000 * 60 * 60 * 6; // 6 hours
13
13
  const FAKE_LATEST_VERSION_ENV = "AZ2AWS_FAKE_LATEST_VERSION";
14
14
  const ANSI_YELLOW = "\u001b[33m";
15
15
  const ANSI_RESET = "\u001b[0m";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "az2aws",
3
- "version": "1.8.0",
3
+ "version": "1.8.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": "lib/index.js",
6
6
  "author": {