Skip to content

Commit 00eda13

Browse files
Update to version v1.0.2 (#28)
1 parent b54f5b8 commit 00eda13

File tree

8 files changed

+1807
-1785
lines changed

8 files changed

+1807
-1785
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.1]
20+
- [ ] Version: [e.g. v1.0.2]
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

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.2] - 2024-08-07
9+
10+
### Security
11+
- Patched fast-xml-parser vulnerability
12+
813
## [1.0.1] - 2024-07-01
914

1015
### Fixed

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.1
24+
# For example: ./build-s3-dist.sh solutions v1.0.2
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.1"
63+
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.2"
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
@@ -24,7 +24,7 @@
2424
@Data
2525
public class CloudwatchEmitterConfig {
2626
static final int CLOUDWATCH_METRICS_MEMORY_LIMIT = 100000000;
27-
static final String SOLUTION_VERSION = "v1.0.1";
27+
static final String SOLUTION_VERSION = "v1.0.2";
2828

2929
@JsonProperty("batchSize")
3030
@Nullable

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ public void testGetBatchSize_withDefaultBatchSize() {
5757
@Test
5858
public void testToString_withValidConfig() {
5959
// arrange
60-
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.1");
60+
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.2");
6161

6262
// act
6363
String actual = config.toString();
6464

6565
// assert
6666
Assert.assertTrue(actual.contains("test-cluster"));
6767
Assert.assertTrue(actual.contains("200"));
68-
Assert.assertTrue(actual.contains("v1.0.1"));
68+
Assert.assertTrue(actual.contains("v1.0.2"));
6969
Assert.assertTrue(actual.contains("CloudwatchEmitterConfig"));
7070
}
7171

source/bin/druid-infra.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import { configScheme } from '../lib/constructs/configScheme';
3535

3636
const solutionId = 'SO0262';
3737
const solutionName = 'Scalable Analytics using Apache Druid on AWS';
38-
const solutionVersion = 'v1.0.1';
38+
const solutionVersion = 'v1.0.2';
3939

4040
const fipsEnabledRegions = [
4141
'us-east-1',

source/package-lock.json

+1,793-1,776
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/package.json

+2-2
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.1",
3+
"version": "1.0.2",
44
"description": "Scalable Analytics using Apache Druid on AWS solution",
55
"author": {
66
"name": "Amazon Web Services",
@@ -66,7 +66,7 @@
6666
"uuid": "^9.0.0"
6767
},
6868
"overrides": {
69-
"fast-xml-parser": "^4.2.4",
69+
"fast-xml-parser": "^4.4.1",
7070
"semver": "^7.5.2"
7171
}
7272
}

0 commit comments

Comments
 (0)