Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Update version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bassemwanis authored and groverlalit committed Apr 24, 2023
1 parent 0973f25 commit 4776019
Show file tree
Hide file tree
Showing 106 changed files with 531 additions and 1,327 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [1.1.3] - 2023-04-14
### Changed
- Updated dependencies

## [1.1.2] - 2022-09-15
### Added
- Added support for all AWS partitions
Expand Down
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%%SOLUTION_NAME%%
Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License Version 2.0 (the "License"). You may not use this file except
in compliance with the License. A copy of the License is located at http://www.apache.org/licenses/
or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ echo "https://${BUCKET_NAME}.s3.amazonaws.com/${SOLUTION_NAME}/${VERSION}/${SOLU

***

Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 1 addition & 3 deletions buildspec.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ version: 0.2
phases:
install:
runtime-versions:
nodejs: 14
nodejs: 16
commands:
- echo "nothing to do in install"
pre_build:
commands:
- echo "Installing dependencies and executing unit tests - `pwd`"
- npm install -g [email protected]
- echo "node use 16"
- n 16
- cd source
- chmod +x ./run-all-tests.sh && ./run-all-tests.sh
- echo "Installing dependencies and executing unit tests completed `date`"
Expand Down
2 changes: 1 addition & 1 deletion deployment/cdk-solution-helper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ After:

***

Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
14 changes: 2 additions & 12 deletions deployment/cdk-solution-helper/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/**
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
* with the License. A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

// Imports
const fs = require('fs');
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateMetrics/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateMetrics/lib/dynamo.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
18 changes: 9 additions & 9 deletions source/lambda/calculateMetrics/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions source/lambda/calculateMetrics/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "calculate-metrics",
"main": "index.js",
"version": "1.1.2",
"version": "1.1.3",
"description": "Function calculates runtime metrics",
"license": "Apache-2.0",
"repository": {},
"scripts": {
"test": "mocha --timeout 10000 'tests/**/*.js'"
},
"devDependencies": {
"aws-sdk": "^2.1354.0",
"aws-sdk": "^2.1357.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateMetrics/tests/dynamo.test.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateTreehash/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateTreehash/lib/db.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateTreehash/lib/treehash.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
14 changes: 2 additions & 12 deletions source/lambda/calculateTreehash/lib/trigger.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
/*********************************************************************************************************************
* Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance *
* with the License. A copy of the License is located at *
* *
* http://www.apache.org/licenses/ *
* *
* or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES *
* OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions *
* and limitations under the License. *
*********************************************************************************************************************/
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* @author Solution Builders
Expand Down
18 changes: 9 additions & 9 deletions source/lambda/calculateTreehash/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions source/lambda/calculateTreehash/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "calculate-treehash",
"main": "index.js",
"version": "1.1.2",
"version": "1.1.3",
"description": "Calculates SHA256 Treehash and tranisitions the archive to the detination bucket/storage class",
"license": "Apache-2.0",
"repository": {},
Expand All @@ -13,7 +13,7 @@
"moment": "^2.29.4"
},
"devDependencies": {
"aws-sdk": "^2.1354.0",
"aws-sdk": "^2.1357.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
Expand Down
Loading

0 comments on commit 4776019

Please sign in to comment.