Skip to content

Commit

Permalink
Updates SDK to v2.1333.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Mar 10, 2023
1 parent 07a07b3 commit d8503e0
Show file tree
Hide file tree
Showing 12 changed files with 75 additions and 28 deletions.
17 changes: 17 additions & 0 deletions .changes/2.1333.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "bugfix",
"category": "maintenance mode message",
"description": "supress maintenance mode message in Lambda environment"
},
{
"type": "feature",
"category": "Ivschat",
"description": "This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations."
},
{
"type": "feature",
"category": "SecretsManager",
"description": "The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values."
}
]

This file was deleted.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1332.0-->
<!--LATEST=2.1333.0-->
<!--ENTRYINSERT-->

## 2.1333.0
* bugfix: maintenance mode message: supress maintenance mode message in Lambda environment
* feature: Ivschat: This release adds a new exception returned when calling AWS IVS chat UpdateLoggingConfiguration. Now UpdateLoggingConfiguration can return ConflictException when invalid updates are made in sequence to Logging Configurations.
* feature: SecretsManager: The type definitions of SecretString and SecretBinary now have a minimum length of 1 in the model to match the exception thrown when you pass in empty values.

## 2.1332.0
* feature: CodeArtifact: This release introduces the generic package format, a mechanism for storing arbitrary binary assets. It also adds a new API, PublishPackageVersion, to allow for publishing generic packages.
* feature: Connect: This release adds a new API, GetMetricDataV2, which returns metric data for Amazon Connect.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ for further details.
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1332.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1333.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
3 changes: 3 additions & 0 deletions apis/ivschat-2020-07-14.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,9 @@
"shape": "UpdateLoggingConfigurationResponse"
},
"errors": [
{
"shape": "ConflictException"
},
{
"shape": "AccessDeniedException"
},
Expand Down
4 changes: 2 additions & 2 deletions apis/secretsmanager-2017-10-17.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -1652,7 +1652,7 @@
"SecretBinaryType": {
"type": "blob",
"max": 65536,
"min": 0,
"min": 1,
"sensitive": true
},
"SecretIdType": {
Expand Down Expand Up @@ -1753,7 +1753,7 @@
"SecretStringType": {
"type": "string",
"max": 65536,
"min": 0,
"min": 1,
"sensitive": true
},
"SecretVersionIdType": {
Expand Down
15 changes: 12 additions & 3 deletions dist/aws-sdk-core-react-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* @constant
*/
VERSION: '2.1332.0',
VERSION: '2.1333.0',

/**
* @api private
Expand Down Expand Up @@ -14514,10 +14514,19 @@ return /******/ (function(modules) { // webpackBootstrap
* require('aws-sdk/lib/maintenance_mode_message').suppress = true;
*/
function emitWarning() {
if (typeof process === 'undefined')
return;

// Skip maintenance mode message in Lambda environments
if (
typeof process !== 'undefined' &&
typeof process.emitWarning === 'function'
typeof process.env === 'object' &&
typeof process.env.AWS_EXECUTION_ENV !== 'undefined' &&
process.env.AWS_EXECUTION_ENV.indexOf('AWS_Lambda_') === 0
) {
return;
}

if (typeof process.emitWarning === 'function') {
process.emitWarning(warning, {
type: 'NOTE'
});
Expand Down
15 changes: 12 additions & 3 deletions dist/aws-sdk-react-native.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap
/**
* @constant
*/
VERSION: '2.1332.0',
VERSION: '2.1333.0',

/**
* @api private
Expand Down Expand Up @@ -14826,10 +14826,19 @@ return /******/ (function(modules) { // webpackBootstrap
* require('aws-sdk/lib/maintenance_mode_message').suppress = true;
*/
function emitWarning() {
if (typeof process === 'undefined')
return;

// Skip maintenance mode message in Lambda environments
if (
typeof process !== 'undefined' &&
typeof process.emitWarning === 'function'
typeof process.env === 'object' &&
typeof process.env.AWS_EXECUTION_ENV !== 'undefined' &&
process.env.AWS_EXECUTION_ENV.indexOf('AWS_Lambda_') === 0
) {
return;
}

if (typeof process.emitWarning === 'function') {
process.emitWarning(warning, {
type: 'NOTE'
});
Expand Down
19 changes: 14 additions & 5 deletions dist/aws-sdk.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// AWS SDK for JavaScript v2.1332.0
// AWS SDK for JavaScript v2.1333.0
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
Expand Down Expand Up @@ -254042,7 +254042,7 @@ AWS.util.update(AWS, {
/**
* @constant
*/
VERSION: '2.1332.0',
VERSION: '2.1333.0',

/**
* @api private
Expand Down Expand Up @@ -258707,10 +258707,19 @@ module.exports = {
* require('aws-sdk/lib/maintenance_mode_message').suppress = true;
*/
function emitWarning() {
if (typeof process === 'undefined')
return;

// Skip maintenance mode message in Lambda environments
if (
typeof process !== 'undefined' &&
typeof process.emitWarning === 'function'
typeof process.env === 'object' &&
typeof process.env.AWS_EXECUTION_ENV !== 'undefined' &&
process.env.AWS_EXECUTION_ENV.indexOf('AWS_Lambda_') === 0
) {
return;
}

if (typeof process.emitWarning === 'function') {
process.emitWarning(warning, {
type: 'NOTE'
});
Expand Down Expand Up @@ -276143,7 +276152,7 @@ var LRUCache = /** @class */ (function () {
}());
exports.LRUCache = LRUCache;
},{}],462:[function(require,module,exports){
// AWS SDK for JavaScript v2.1332.0
// AWS SDK for JavaScript v2.1333.0
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// License at https://sdk.amazonaws.com/js/BUNDLE_LICENSE.txt
require('./browser_loader');
Expand Down
12 changes: 6 additions & 6 deletions dist/aws-sdk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AWS.util.update(AWS, {
/**
* @constant
*/
VERSION: '2.1332.0',
VERSION: '2.1333.0',

/**
* @api private
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aws-sdk",
"description": "AWS SDK for JavaScript",
"version": "2.1332.0",
"version": "2.1333.0",
"author": {
"name": "Amazon Web Services",
"email": "",
Expand Down

0 comments on commit d8503e0

Please sign in to comment.