@middy/secrets-manager 7.0.2 → 7.1.0

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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  <p>
6
6
  <a href="https://github.com/middyjs/middy/actions/workflows/test-unit.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-unit.yml/badge.svg" alt="GitHub Actions unit test status"></a>
7
7
  <a href="https://github.com/middyjs/middy/actions/workflows/test-dast.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-dast.yml/badge.svg" alt="GitHub Actions dast test status"></a>
8
- <a href="https://github.com/middyjs/middy/actions/workflows/test-perf.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-pref.yml/badge.svg" alt="GitHub Actions perf test status"></a>
8
+ <a href="https://github.com/middyjs/middy/actions/workflows/test-perf.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-perf.yml/badge.svg" alt="GitHub Actions perf test status"></a>
9
9
  <a href="https://github.com/middyjs/middy/actions/workflows/test-sast.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-sast.yml/badge.svg" alt="GitHub Actions SAST test status"></a>
10
10
  <a href="https://github.com/middyjs/middy/actions/workflows/test-lint.yml"><img src="https://github.com/middyjs/middy/actions/workflows/test-lint.yml/badge.svg" alt="GitHub Actions lint test status"></a>
11
11
  <br/>
@@ -32,7 +32,7 @@
32
32
 
33
33
  ## License
34
34
 
35
- Licensed under [MIT License](LICENSE). Copyright (c) 2017-2025 [Luciano Mammino](https://github.com/lmammino), [will Farrell](https://github.com/willfarrell), and the [Middy team](https://github.com/middyjs/middy/graphs/contributors).
35
+ Licensed under [MIT License](LICENSE). Copyright (c) 2017-2026 [will Farrell](https://github.com/willfarrell), [Luciano Mammino](https://github.com/lmammino), and [Middy contributors](https://github.com/middyjs/middy/graphs/contributors).
36
36
 
37
37
  <a href="https://app.fossa.io/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy?ref=badge_large">
38
38
  <img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmiddyjs%2Fmiddy.svg?type=large" alt="FOSSA Status" style="max-width:100%;">
package/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ // Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors.
2
+ // SPDX-License-Identifier: MIT
1
3
  import type {
2
4
  SecretsManagerClient,
3
5
  SecretsManagerClientConfig,
package/index.js CHANGED
@@ -1,3 +1,5 @@
1
+ // Copyright 2017 - 2026 will Farrell, Luciano Mammino, and Middy contributors.
2
+ // SPDX-License-Identifier: MIT
1
3
  import {
2
4
  DescribeSecretCommand,
3
5
  GetSecretValueCommand,
@@ -30,7 +32,11 @@ const defaults = {
30
32
  };
31
33
 
32
34
  const secretsManagerMiddleware = (opts = {}) => {
33
- const options = { ...defaults, ...opts };
35
+ const options = {
36
+ ...defaults,
37
+ ...opts,
38
+ cacheKeyExpiry: { ...defaults.cacheKeyExpiry, ...opts.cacheKeyExpiry },
39
+ };
34
40
 
35
41
  const fetchRequest = (request, cachedValues = {}) => {
36
42
  const values = {};
@@ -112,6 +118,6 @@ const secretsManagerMiddleware = (opts = {}) => {
112
118
  export default secretsManagerMiddleware;
113
119
 
114
120
  // used for TS type inference (see index.d.ts)
115
- export function secret(name) {
121
+ export function secretsManagerParam(name) {
116
122
  return name;
117
123
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@middy/secrets-manager",
3
- "version": "7.0.2",
3
+ "version": "7.1.0",
4
4
  "description": "Secrets Manager middleware for the middy framework",
5
5
  "type": "module",
6
6
  "engines": {
@@ -11,6 +11,7 @@
11
11
  "access": "public"
12
12
  },
13
13
  "module": "./index.js",
14
+ "sideEffects": false,
14
15
  "exports": {
15
16
  ".": {
16
17
  "import": {
@@ -62,7 +63,7 @@
62
63
  "url": "https://github.com/sponsors/willfarrell"
63
64
  },
64
65
  "dependencies": {
65
- "@middy/util": "7.0.2"
66
+ "@middy/util": "7.1.0"
66
67
  },
67
68
  "peerDependencies": {
68
69
  "@aws-sdk/client-secrets-manager": "^3.0.0"
@@ -74,7 +75,7 @@
74
75
  },
75
76
  "devDependencies": {
76
77
  "@aws-sdk/client-secrets-manager": "^3.0.0",
77
- "@middy/core": "7.0.2",
78
+ "@middy/core": "7.1.0",
78
79
  "@types/aws-lambda": "^8.10.101",
79
80
  "aws-xray-sdk": "^3.3.3"
80
81
  },