Skip to content

Commit 06fab6d

Browse files
committed
Release v1.2.6
1 parent 5f044b2 commit 06fab6d

94 files changed

Lines changed: 6665 additions & 375 deletions

File tree

Some content is hidden

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

CHANGELOG.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [1.2.6] - 2024-11-21
10+
11+
### Security
12+
13+
- Security updates for npm packages
14+
915
## [1.2.5] - 2024-09-17
1016

1117
### Security
@@ -15,70 +21,93 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521
## [1.2.4] - 2024-08-09
1622

1723
### Security
24+
1825
- Upgraded vulnerable packages
1926

2027
## [1.2.3] - 2024-06-11
2128

2229
### Security
30+
2331
- CDK updates to 2.143.0 which removed alpha code and fixed deployment issues
2432

2533
### Changed
34+
2635
- Added solution manifest
2736
- Updated nested dependencies for Security Updates
2837

2938
## [1.2.2] - 2023-11-02
3039

3140
### Changed
41+
3242
- Security updates
3343
- Added solution manifest
3444

3545
## [1.2.1] - 2023-09-28
3646

3747
### Fixed
48+
3849
- Fixed an issue where the solution was not deployed properly with `cdk deploy` command
3950

4051
## [1.2.0] - 2023-06-29
52+
4153
### Changed
54+
4255
- Integrated Service Catalog App Registry into the solution.
4356
- All AWS Lambda functions have been updated to the NodeJS 18 runtime.
4457
- Along with NodeJS 18 runtime upgrade, [aws-sdk v2](https://github.com/aws/aws-sdk-js) has been updated to [aws-sdk v3](https://github.com/aws/aws-sdk-js-v3)
4558

4659
### Removed
60+
4761
- [aws-sdk v2](https://github.com/aws/aws-sdk-js) has been removed from Lambda Layers
4862

4963
## [1.1.4] - 2023-06-01
64+
5065
### Changed
66+
5167
- Updated aws-cdk and aws-cdk-lib to newest version 2.81.0.
5268

5369
### Fixed
54-
- Custom resource created with aws-cdk-lib now on NodeJS 16.
70+
71+
- Custom resource created with aws-cdk-lib now on NodeJS 16.
5572

5673
## [1.1.3] - 2023-05-18
74+
5775
### Changed
76+
5877
- Updated video player on the demo website to a stable version.
5978
- Updated WAF RuleGroup Name Arn to have the correct value.
6079
- All AWS Lambda functions have been updated to the NodeJS 16 runtime.
6180

6281
## [1.1.2] - 2023-04-14
82+
6383
### Changed
84+
6485
- Updated object ownership configuration on on the ApiEndpointsLogsBucket bucket
6586

66-
## [1.1.1] - 2023-2-2
87+
## [1.1.1] - 2023-02-02
88+
6789
### Added
90+
6891
- Added architecture diagram.
6992
- Added the package babel/traverse
7093

7194
## [1.1.0] - 2022-10-15
95+
7296
### Added
97+
7398
- Upgrade wizard enforce http or https protocol
7499
- Upgrade demo website with QRcode, token parameters selector and links to solutions page
75100
- Add constraints in the wizard for stack name and video asset url format
76101
- Add suffix on solution name
77102

78103
## [1.0.1] - 2022-09-05
104+
79105
### Added
106+
80107
- Add metrics for Lambda Custom Resource
81108

82109
## [1.0.0] - 2022-08-25
110+
83111
### Added
112+
84113
- All files, initial version

CONTRIBUTING.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/awslabs/cdk-solution-init-pkg/issues), or [recently closed](https://github.com/awslabs/cdk-solution-init-pkg/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
15-
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
14+
When filing an issue, please check [existing
15+
open](https://github.com/aws-solutions/secure-media-delivery-at-the-edge-on-aws/issues), or [recently
16+
closed](https://github.com/aws-solutions/secure-media-delivery-at-the-edge-on-aws/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20),
17+
issues to make sure somebody else hasn't already reported the issue. Please try to include as much
18+
information as you can. Details like these are incredibly useful:
1619

1720
* A reproducible test case or series of steps
1821
* The version of our code being used
@@ -21,9 +24,10 @@ reported the issue. Please try to include as much information as you can. Detail
2124

2225

2326
## Contributing via Pull Requests
27+
2428
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
2529

26-
1. You are working against the latest source on the *master* branch.
30+
1. You are working against the latest source on the *main* branch.
2731
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
2832
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
2933

@@ -42,21 +46,30 @@ GitHub provides additional document on [forking a repository](https://help.githu
4246

4347

4448
## Finding contributions to work on
45-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/cdk-solution-init-pkg/labels/help%20wanted) issues is a great place to start.
49+
50+
Looking at the existing issues is a great way to find something to contribute on. As our projects,
51+
by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help
52+
wanted/invalid/question/wontfix), looking at any ['help
53+
wanted'](https://github.com/aws-solutions/secure-media-delivery-at-the-edge-on-aws/labels/help%20wanted)
54+
issues is a great place to start.
4655

4756

4857
## Code of Conduct
58+
4959
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
5060
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
5161
opensource-codeofconduct@amazon.com with any additional questions or comments.
5262

5363

5464
## Security issue notifications
65+
5566
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public GitHub issue.
5667

5768

5869
## Licensing
5970

60-
See the [LICENSE](https://github.com/awslabs/cdk-solution-init-pkg/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
71+
See the
72+
[LICENSE](https://github.com/aws-solutions/secure-media-delivery-at-the-edge-on-aws/blob/main/LICENSE.txt)
73+
file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6174

6275
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

0 commit comments

Comments
 (0)