Skip to content

Commit

Permalink
Update to version v1.0.4 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
bios6 authored Sep 17, 2024
1 parent 55fe52a commit 57f2d2a
Show file tree
Hide file tree
Showing 9 changed files with 324 additions and 302 deletions.
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.3]
- [ ] Version: [e.g. v1.0.4]

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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.4] - 2024-09-18

### Security

- Patch versions of path-to-regexp, aws-cdk and micromatch

## [1.0.3] - 2024-08-19

### Security
Expand Down
557 changes: 285 additions & 272 deletions NOTICE.txt

Large diffs are not rendered by default.

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.3
# For example: ./build-s3-dist.sh solutions v1.0.4
# 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.3"
echo "For example: ./build-s3-dist.sh mybucket my-solution v1.0.4"
exit 1
}

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

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

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

// assert
Assert.assertTrue(actual.contains("test-cluster"));
Assert.assertTrue(actual.contains("200"));
Assert.assertTrue(actual.contains("v1.0.3"));
Assert.assertTrue(actual.contains("v1.0.4"));
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 @@ -26,7 +26,7 @@ import { CfnGuardResourcePathRulesSuppressionAspect } from '../lib/constructs/cf

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

const fipsEnabledRegions = [
'us-east-1',
Expand Down
47 changes: 25 additions & 22 deletions source/package-lock.json

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

2 changes: 1 addition & 1 deletion 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.3",
"version": "1.0.4",
"description": "Scalable Analytics using Apache Druid on AWS solution",
"author": {
"name": "Amazon Web Services",
Expand Down

0 comments on commit 57f2d2a

Please sign in to comment.