Skip to content

Update to version v1.0.2 #28

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Steps to reproduce the behavior.
A clear and concise description of what you expected to happen.

**Please complete the following information about the solution:**
- [ ] Version: [e.g. v1.0.1]
- [ ] Version: [e.g. v1.0.2]

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:

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.2] - 2024-08-07

### Security
- Patched fast-xml-parser vulnerability

## [1.0.1] - 2024-07-01

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions deployment/build-s3-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Parameters:
# - source-bucket-base-name: Name for the S3 bucket location where the template will source the Lambda
# code from. The template will append '-[region_name]' to this bucket name.
# For example: ./build-s3-dist.sh solutions v1.0.1
# For example: ./build-s3-dist.sh solutions v1.0.2
# The template will then expect the source code to be located in the solutions-[region_name] bucket
# - solution-name: name of the solution for consistency
# - version-code: version of the package
Expand Down Expand Up @@ -60,7 +60,7 @@ usage()
{
echo "Usage: $0 bucket solution-name version"
echo "Please provide the base source bucket name, trademarked solution name, and version."
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.1"
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.2"
exit 1
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
@Data
public class CloudwatchEmitterConfig {
static final int CLOUDWATCH_METRICS_MEMORY_LIMIT = 100000000;
static final String SOLUTION_VERSION = "v1.0.1";
static final String SOLUTION_VERSION = "v1.0.2";

@JsonProperty("batchSize")
@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ public void testGetBatchSize_withDefaultBatchSize() {
@Test
public void testToString_withValidConfig() {
// arrange
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.1");
CloudwatchEmitterConfig config = new CloudwatchEmitterConfig("test-cluster", 200, "v1.0.2");

// act
String actual = config.toString();

// assert
Assert.assertTrue(actual.contains("test-cluster"));
Assert.assertTrue(actual.contains("200"));
Assert.assertTrue(actual.contains("v1.0.1"));
Assert.assertTrue(actual.contains("v1.0.2"));
Assert.assertTrue(actual.contains("CloudwatchEmitterConfig"));
}

Expand Down
2 changes: 1 addition & 1 deletion source/bin/druid-infra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import { configScheme } from '../lib/constructs/configScheme';

const solutionId = 'SO0262';
const solutionName = 'Scalable Analytics using Apache Druid on AWS';
const solutionVersion = 'v1.0.1';
const solutionVersion = 'v1.0.2';

const fipsEnabledRegions = [
'us-east-1',
Expand Down
3,569 changes: 1,793 additions & 1,776 deletions source/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scalable-analytics-using-apache-druid-on-aws",
"version": "1.0.1",
"version": "1.0.2",
"description": "Scalable Analytics using Apache Druid on AWS solution",
"author": {
"name": "Amazon Web Services",
Expand Down Expand Up @@ -66,7 +66,7 @@
"uuid": "^9.0.0"
},
"overrides": {
"fast-xml-parser": "^4.2.4",
"fast-xml-parser": "^4.4.1",
"semver": "^7.5.2"
}
}