Skip to content

Commit 57f2d2a

Browse files
authored
Update to version v1.0.4 (#32)
1 parent 55fe52a commit 57f2d2a

File tree

9 files changed

+324
-302
lines changed

9 files changed

+324
-302
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Steps to reproduce the behavior.
1717
A clear and concise description of what you expected to happen.
1818

1919
**Please complete the following information about the solution:**
20-
- [ ] Version: [e.g. v1.0.3]
20+
- [ ] Version: [e.g. v1.0.4]
2121

2222
To get the version of the solution, you can look at the description of the created CloudFormation stack. For example, "_(SO0021) - Video On Demand workflow with AWS Step Functions, MediaConvert, MediaPackage, S3, CloudFront and DynamoDB. Version **v5.0.0**_". If the description does not contain the version information, you can look at the mappings section of the template:
2323

CHANGELOG.md

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

8+
## [1.0.4] - 2024-09-18
9+
10+
### Security
11+
12+
- Patch versions of path-to-regexp, aws-cdk and micromatch
13+
814
## [1.0.3] - 2024-08-19
915

1016
### Security

NOTICE.txt

+285-272
Large diffs are not rendered by default.

deployment/build-s3-dist.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Parameters:
2222
# - source-bucket-base-name: Name for the S3 bucket location where the template will source the Lambda
2323
# code from. The template will append '-[region_name]' to this bucket name.
24-
# For example: ./build-s3-dist.sh solutions v1.0.3
24+
# For example: ./build-s3-dist.sh solutions v1.0.4
2525
# The template will then expect the source code to be located in the solutions-[region_name] bucket
2626
# - solution-name: name of the solution for consistency
2727
# - version-code: version of the package
@@ -60,7 +60,7 @@ usage()
6060
{
6161
echo "Usage: $0 bucket solution-name version"
6262
echo "Please provide the base source bucket name, trademarked solution name, and version."
63-
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.3"
63+
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.4"
6464
exit 1
6565
}
6666

source/DruidCloudwatchExtension/src/main/java/com/amazon/solutions/druid/cloudwatch/CloudwatchEmitterConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@Data
1414
public class CloudwatchEmitterConfig {
1515
static final int CLOUDWATCH_METRICS_MEMORY_LIMIT = 100000000;
16-
static final String SOLUTION_VERSION = "v1.0.3";
16+
static final String SOLUTION_VERSION = "v1.0.4";
1717

1818
@JsonProperty("batchSize")
1919
@Nullable

source/DruidCloudwatchExtension/src/test/java/com/amazon/solutions/druid/cloudwatch/CloudwatchEmitterConfigTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ public void testGetBatchSize_withDefaultBatchSize() {
4646
@Test
4747
public void testToString_withValidConfig() {
4848
// arrange
49-
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.3");
49+
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.4");
5050

5151
// act
5252
String actual = config.toString();
5353

5454
// assert
5555
Assert.assertTrue(actual.contains("test-cluster"));
5656
Assert.assertTrue(actual.contains("200"));
57-
Assert.assertTrue(actual.contains("v1.0.3"));
57+
Assert.assertTrue(actual.contains("v1.0.4"));
5858
Assert.assertTrue(actual.contains("CloudwatchEmitterConfig"));
5959
}
6060

source/bin/druid-infra.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { CfnGuardResourcePathRulesSuppressionAspect } from '../lib/constructs/cf
2626

2727
const solutionId = 'SO0262';
2828
const solutionName = 'Scalable Analytics using Apache Druid on AWS';
29-
const solutionVersion = 'v1.0.3';
29+
const solutionVersion = 'v1.0.4';
3030

3131
const fipsEnabledRegions = [
3232
'us-east-1',

source/package-lock.json

+25-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scalable-analytics-using-apache-druid-on-aws",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "Scalable Analytics using Apache Druid on AWS solution",
55
"author": {
66
"name": "Amazon Web Services",

0 commit comments

Comments
 (0)