@aws-sdk/client-apprunner 3.198.0 → 3.199.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,17 @@
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.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-apprunner:** AWS App Runner adds .NET 6, Go 1, PHP 8.1 and Ruby 3.1 runtimes. ([12cc3bc](https://github.com/aws/aws-sdk-js-v3/commit/12cc3bcc2c087cd3e07ac4d92981794d960d2839))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.198.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.197.0...v3.198.0) (2022-10-27)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-apprunner
@@ -116,10 +116,14 @@ var Runtime;
116
116
  (function (Runtime) {
117
117
  Runtime["CORRETTO_11"] = "CORRETTO_11";
118
118
  Runtime["CORRETTO_8"] = "CORRETTO_8";
119
+ Runtime["DOTNET_6"] = "DOTNET_6";
120
+ Runtime["GO_1"] = "GO_1";
119
121
  Runtime["NODEJS_12"] = "NODEJS_12";
120
122
  Runtime["NODEJS_14"] = "NODEJS_14";
121
123
  Runtime["NODEJS_16"] = "NODEJS_16";
124
+ Runtime["PHP_81"] = "PHP_81";
122
125
  Runtime["PYTHON_3"] = "PYTHON_3";
126
+ Runtime["RUBY_31"] = "RUBY_31";
123
127
  })(Runtime = exports.Runtime || (exports.Runtime = {}));
124
128
  var ConfigurationSource;
125
129
  (function (ConfigurationSource) {
@@ -107,10 +107,14 @@ export var Runtime;
107
107
  (function (Runtime) {
108
108
  Runtime["CORRETTO_11"] = "CORRETTO_11";
109
109
  Runtime["CORRETTO_8"] = "CORRETTO_8";
110
+ Runtime["DOTNET_6"] = "DOTNET_6";
111
+ Runtime["GO_1"] = "GO_1";
110
112
  Runtime["NODEJS_12"] = "NODEJS_12";
111
113
  Runtime["NODEJS_14"] = "NODEJS_14";
112
114
  Runtime["NODEJS_16"] = "NODEJS_16";
115
+ Runtime["PHP_81"] = "PHP_81";
113
116
  Runtime["PYTHON_3"] = "PYTHON_3";
117
+ Runtime["RUBY_31"] = "RUBY_31";
114
118
  })(Runtime || (Runtime = {}));
115
119
  export var ConfigurationSource;
116
120
  (function (ConfigurationSource) {
@@ -552,10 +552,14 @@ export interface AuthenticationConfiguration {
552
552
  export declare enum Runtime {
553
553
  CORRETTO_11 = "CORRETTO_11",
554
554
  CORRETTO_8 = "CORRETTO_8",
555
+ DOTNET_6 = "DOTNET_6",
556
+ GO_1 = "GO_1",
555
557
  NODEJS_12 = "NODEJS_12",
556
558
  NODEJS_14 = "NODEJS_14",
557
559
  NODEJS_16 = "NODEJS_16",
558
- PYTHON_3 = "PYTHON_3"
560
+ PHP_81 = "PHP_81",
561
+ PYTHON_3 = "PYTHON_3",
562
+ RUBY_31 = "RUBY_31"
559
563
  }
560
564
  /**
561
565
  * <p>Describes the basic configuration needed for building and running an App Runner service. This type doesn't support the full set of possible
@@ -192,10 +192,14 @@ export interface AuthenticationConfiguration {
192
192
  export declare enum Runtime {
193
193
  CORRETTO_11 = "CORRETTO_11",
194
194
  CORRETTO_8 = "CORRETTO_8",
195
+ DOTNET_6 = "DOTNET_6",
196
+ GO_1 = "GO_1",
195
197
  NODEJS_12 = "NODEJS_12",
196
198
  NODEJS_14 = "NODEJS_14",
197
199
  NODEJS_16 = "NODEJS_16",
200
+ PHP_81 = "PHP_81",
198
201
  PYTHON_3 = "PYTHON_3",
202
+ RUBY_31 = "RUBY_31",
199
203
  }
200
204
  export interface CodeConfigurationValues {
201
205
  Runtime: Runtime | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-apprunner",
3
3
  "description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
4
- "version": "3.198.0",
4
+ "version": "3.199.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,13 +19,13 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.198.0",
22
+ "@aws-sdk/client-sts": "3.199.0",
23
23
  "@aws-sdk/config-resolver": "3.198.0",
24
- "@aws-sdk/credential-provider-node": "3.198.0",
25
- "@aws-sdk/fetch-http-handler": "3.198.0",
24
+ "@aws-sdk/credential-provider-node": "3.199.0",
25
+ "@aws-sdk/fetch-http-handler": "3.199.0",
26
26
  "@aws-sdk/hash-node": "3.198.0",
27
27
  "@aws-sdk/invalid-dependency": "3.198.0",
28
- "@aws-sdk/middleware-content-length": "3.198.0",
28
+ "@aws-sdk/middleware-content-length": "3.199.0",
29
29
  "@aws-sdk/middleware-endpoint": "3.198.0",
30
30
  "@aws-sdk/middleware-host-header": "3.198.0",
31
31
  "@aws-sdk/middleware-logger": "3.198.0",
@@ -36,7 +36,7 @@
36
36
  "@aws-sdk/middleware-stack": "3.198.0",
37
37
  "@aws-sdk/middleware-user-agent": "3.198.0",
38
38
  "@aws-sdk/node-config-provider": "3.198.0",
39
- "@aws-sdk/node-http-handler": "3.198.0",
39
+ "@aws-sdk/node-http-handler": "3.199.0",
40
40
  "@aws-sdk/protocol-http": "3.198.0",
41
41
  "@aws-sdk/smithy-client": "3.198.0",
42
42
  "@aws-sdk/types": "3.198.0",
@@ -51,7 +51,7 @@
51
51
  "@aws-sdk/util-user-agent-browser": "3.198.0",
52
52
  "@aws-sdk/util-user-agent-node": "3.198.0",
53
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
54
- "@aws-sdk/util-utf8-node": "3.188.0",
54
+ "@aws-sdk/util-utf8-node": "3.199.0",
55
55
  "tslib": "^2.3.1"
56
56
  },
57
57
  "devDependencies": {