@aws-sdk/middleware-endpoint-discovery 3.55.0 → 3.75.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/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.75.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.74.0...v3.75.0) (2022-04-21)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/middleware-endpoint-discovery
9
+
10
+
11
+
12
+
13
+
14
+ # [3.58.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.57.0...v3.58.0) (2022-03-28)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/middleware-endpoint-discovery
17
+
18
+
19
+
20
+
21
+
22
+ # [3.56.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.55.0...v3.56.0) (2022-03-24)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/middleware-endpoint-discovery
25
+
26
+
27
+
28
+
29
+
6
30
  # [3.55.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.54.1...v3.55.0) (2022-03-21)
7
31
 
8
32
 
@@ -23,7 +23,7 @@ const updateDiscoveredEndpointInCache = async (config, options) => new Promise((
23
23
  const placeholderEndpoints = [{ Address: "", CachePeriodInMinutes: 1 }];
24
24
  endpointCache.set(cacheKey, placeholderEndpoints);
25
25
  const command = new options.endpointDiscoveryCommandCtor({
26
- Operation: commandName.substr(0, commandName.length - 7),
26
+ Operation: commandName.slice(0, -7),
27
27
  Identifiers: identifiers,
28
28
  });
29
29
  const handler = command.resolveMiddleware(options.clientStack, config, options.options);
@@ -23,7 +23,7 @@ export var updateDiscoveredEndpointInCache = function (config, options) { return
23
23
  var placeholderEndpoints_1 = [{ Address: "", CachePeriodInMinutes: 1 }];
24
24
  endpointCache.set(cacheKey, placeholderEndpoints_1);
25
25
  var command = new options.endpointDiscoveryCommandCtor({
26
- Operation: commandName.substr(0, commandName.length - 7),
26
+ Operation: commandName.slice(0, -7),
27
27
  Identifiers: identifiers,
28
28
  });
29
29
  var handler = command.resolveMiddleware(options.clientStack, config, options.options);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/middleware-endpoint-discovery",
3
- "version": "3.55.0",
3
+ "version": "3.75.0",
4
4
  "scripts": {
5
5
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
6
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "license": "Apache-2.0",
21
21
  "devDependencies": {
22
- "@aws-sdk/node-config-provider": "3.55.0",
22
+ "@aws-sdk/node-config-provider": "3.75.0",
23
23
  "@tsconfig/recommended": "1.0.1",
24
24
  "concurrently": "7.0.0",
25
25
  "downlevel-dts": "0.7.0",
@@ -28,9 +28,9 @@
28
28
  "typescript": "~4.6.2"
29
29
  },
30
30
  "dependencies": {
31
- "@aws-sdk/config-resolver": "3.55.0",
31
+ "@aws-sdk/config-resolver": "3.75.0",
32
32
  "@aws-sdk/endpoint-cache": "3.55.0",
33
- "@aws-sdk/protocol-http": "3.55.0",
33
+ "@aws-sdk/protocol-http": "3.58.0",
34
34
  "@aws-sdk/types": "3.55.0",
35
35
  "tslib": "^2.3.1"
36
36
  },