Skip to content

Commit 08fc26a

Browse files
committed
Merge branch 'master' into remove-node12-testing
Had to update the package-lock and fix up the webpack config in the karma.conf.js.
2 parents 0298016 + 7928be0 commit 08fc26a

File tree

56 files changed

+5374
-2650
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+5374
-2650
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/awslabs/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
9+
### Features
10+
11+
* Support AWS SDK v3 ([#1043](https://github.com/awslabs/aws-encryption-sdk-javascript/issues/1043)) ([33a9e43](https://github.com/awslabs/aws-encryption-sdk-javascript/commit/33a9e43b3808e67c0852a436ccfb3f0ffab844c2))
12+
* Support Node v18 ([#1041](https://github.com/awslabs/aws-encryption-sdk-javascript/issues/1041)) ([5f39e1e](https://github.com/awslabs/aws-encryption-sdk-javascript/commit/5f39e1ec61527473a0b9673f82259a75c2e37370))
13+
14+
15+
16+
17+
618
## [3.1.1](https://github.com/awslabs/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
719

820

karma.conf.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ module.exports = function (config) {
3636
'modules/**/build/module/test/*.js': ['webpack', 'credentials'],
3737
},
3838
webpack: {
39-
resolve: {
40-
extensions: ['.js'],
41-
},
4239
mode: 'development',
4340
module: {
4441
rules: [
@@ -75,9 +72,11 @@ module.exports = function (config) {
7572
},
7673
devtool: 'source-map',
7774
resolve: {
75+
extensions: ['.js'],
7876
fallback: {
7977
fs: false,
8078
crypto: false,
79+
util: false
8180
},
8281
},
8382
},

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"modules/*"
44
],
5-
"version": "3.1.1",
5+
"version": "3.2.0",
66
"command": {
77
"bootstrap": {
88
"nohoist": [

modules/cache-material/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/cache-material
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.0.3...v3.1.0) (2021-11-10)
715

816
**Note:** Version bump only for package @aws-crypto/cache-material

modules/cache-material/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/cache-material",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/caching-materials-manager-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/caching-materials-manager-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/caching-materials-manager-browser

modules/caching-materials-manager-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/caching-materials-manager-browser",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/caching-materials-manager-node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/caching-materials-manager-node
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.0.3...v3.1.0) (2021-11-10)
715

816
**Note:** Version bump only for package @aws-crypto/caching-materials-manager-node

modules/caching-materials-manager-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/caching-materials-manager-node",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/client-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/client-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/client-browser

modules/client-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"CSE",
1010
"aws"
1111
],
12-
"version": "3.1.1",
12+
"version": "3.2.0",
1313
"scripts": {
1414
"build": "tsc -b tsconfig.json",
1515
"lint": "run-s lint-*",

modules/client-node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/client-node
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/client-node

modules/client-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"CSE",
1010
"aws"
1111
],
12-
"version": "3.1.1",
12+
"version": "3.2.0",
1313
"scripts": {
1414
"build": "tsc -b tsconfig.json",
1515
"lint": "run-s lint-*",

modules/decrypt-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/decrypt-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/decrypt-browser

modules/decrypt-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/decrypt-browser",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
66
"lint": "run-s lint-*",

modules/decrypt-node/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
9+
### Features
10+
11+
* Support Node v18 ([#1041](https://github.com/aws/aws-encryption-sdk-javascript/issues/1041)) ([5f39e1e](https://github.com/aws/aws-encryption-sdk-javascript/commit/5f39e1ec61527473a0b9673f82259a75c2e37370))
12+
13+
14+
15+
16+
617
# [3.1.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.0.3...v3.1.0) (2021-11-10)
718

819

modules/decrypt-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/decrypt-node",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/encrypt-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/encrypt-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816

modules/encrypt-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/encrypt-browser",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
66
"lint": "run-s lint-*",

modules/encrypt-node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/encrypt-node
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816

modules/encrypt-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/encrypt-node",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
66
"lint": "run-s lint-*",

modules/example-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/example-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/example-browser

modules/example-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/example-browser",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/example-node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/example-node
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/example-node

modules/example-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/example-node",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"prepublishOnly": "npm run build",
66
"build": "tsc -b tsconfig.json && tsc -b tsconfig.module.json",

modules/integration-browser/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/integration-browser
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/integration-browser

modules/integration-browser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/integration-browser",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"build": "tsc -b tsconfig.json",
66
"lint": "run-s lint-*",

modules/integration-node/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/integration-node
9+
10+
11+
12+
13+
614
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
715

816
**Note:** Version bump only for package @aws-crypto/integration-node

modules/integration-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/integration-node",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"scripts": {
55
"build": "tsc -b tsconfig.json",
66
"lint": "run-s lint-*",

modules/integration-vectors/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
**Note:** Version bump only for package @aws-crypto/integration-vectors
9+
10+
11+
12+
13+
614
# [3.1.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.0.3...v3.1.0) (2021-11-10)
715

816

modules/integration-vectors/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws-crypto/integration-vectors",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"scripts": {
55
"build": "tsc -b tsconfig.json",
66
"lint": "run-s lint-*",

modules/kms-keyring-browser/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [3.2.0](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.1...v3.2.0) (2023-02-23)
7+
8+
9+
### Features
10+
11+
* Support AWS SDK v3 ([#1043](https://github.com/aws/aws-encryption-sdk-javascript/issues/1043)) ([33a9e43](https://github.com/aws/aws-encryption-sdk-javascript/commit/33a9e43b3808e67c0852a436ccfb3f0ffab844c2))
12+
13+
14+
15+
16+
617
## [3.1.1](https://github.com/aws/aws-encryption-sdk-javascript/compare/v3.1.0...v3.1.1) (2022-03-15)
718

819
**Note:** Version bump only for package @aws-crypto/kms-keyring-browser

0 commit comments

Comments
 (0)