Skip to content

Commit

Permalink
Updated version number and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Suzanna-Volkov committed Nov 3, 2020
1 parent 2840b79 commit f97a5b7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
27 changes: 21 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,38 @@
# Changelog

## 1.2.0 (2020-11-03)
Added retention parameter for the lambdas.

### Added
- A parameter in the CF file has been added so that retention can be set for the lambdas.

## 1.1.0 (2020-11-03)
Added logging library to allow debug logs to be ignored.

### Added
- The logging library has been added to all files with print functions to allow users to determine what level of logs they want logged by the lambdas.

### Changed
- Versioning has been made a dropdown with available options.

## 1.0.0 (2020-09-08)
Versioning added for a more seamless flow for updating the integration..

### Added
- Support for updating an integration to its newest version.
- Bump2version configuration file for maintaining the integration version.
- Version parameter in the CloudFormation file.
- Section describing how to release a new version for maintainers.
- Section describing how to release a new version for maintainers.

### Changed
- Guide for setting up the integration for local development.
- Name of the generated ZIP file containing the lambdas.
- Name of the generated ZIP file containing the lambdas.

## (2020-07-13)
CloudFormation updated to support using an AWS VPC for lambda ingesters and for the backfiller to be able to be run automatically when created.

### Added
- Support for using a VPC regarding lambda ingesters based on a conditional set.
- Support for using a VPC regarding lambda ingesters based on a conditional set.
- Support for automatically running the backfiller lambda when created based on a conditional set.

### Changed
Expand All @@ -31,15 +46,15 @@ CloudFormation updated to support using an AWS VPC for lambda ingesters and for
## (2020-06-11)
Major refactoring of codebase and new feature for retrieving CloudWatch metrics.

### Added
### Added
- Support for retrieving CloudWatch metrics using GetMetricData and GetMetricStatistics.
- Consistent code formatting.

### Changed
- Python version to 3.8.
- Humio Ingest API calls to be using the newest endpoints.
- File and function names in the project and CloudFormation file.
- File and function names in the project and CloudFormation file.
- Project structure.

### Removed
- Unused files and functions.
- Unused files and functions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies:
pip3 install -r requirements.txt -t target

target/cloudwatch2humio.zip:
(cd target/ && zip -r ../target/v1.0.0_cloudwatch2humio.zip * )
(cd target/ && zip -r ../target/v1.2.0_cloudwatch2humio.zip * )

clean:
rm -rf target

.PHONY: clean
.PHONY: clean
9 changes: 5 additions & 4 deletions cloudformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"Default" : ""
},
"EnableCloudWatchLogsBackfillerAutoRun" : {
"Type" : "String",
"Type" : "String",
"AllowedValues" : [
"true",
"false"
Expand Down Expand Up @@ -71,15 +71,16 @@
"Version" : {
"Type" : "String",
"Description" : "The version of the integration you want installed.",
"Default" : "v1.0.0"
"AllowedValues" : ["v1.0.0", "v1.1.0", "v1.2.0"],
"Default" : "v1.2.0"
}
},
"Conditions" : {
"CreateAutoSubscriptionResources" : {
"Fn::Equals" : [ { "Ref" : "EnableCloudWatchLogsAutoSubscription" }, "true" ]
},
"CreateHumioBackfillerAutoRunner" : {
"Fn::Equals" : [ { "Ref" : "EnableCloudWatchLogsBackfillerAutoRun" }, "true" ]
"Fn::Equals" : [ { "Ref" : "EnableCloudWatchLogsBackfillerAutoRun" }, "true" ]
},
"ConfigureVPCForIngesterLambdas" : {
"Fn::Equals" : [ { "Ref" : "EnableVPCForIngesterLambdas" }, "true" ]
Expand Down Expand Up @@ -579,4 +580,4 @@
}
}
}
}
}

0 comments on commit f97a5b7

Please sign in to comment.