Skip to content

Commit 3ab23a4

Browse files
authored
Update Changelog and Versions for the v1.1.0 Release (#69)
* Update changelog and versions for the v1.1.0 release. Signed-off-by: forestmvey <forestv@bitquilltech.com> * Minor formatting update in changelog. Signed-off-by: forestmvey <forestv@bitquilltech.com> --------- Signed-off-by: forestmvey <forestv@bitquilltech.com>
1 parent 1a70ce2 commit 3ab23a4

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,34 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [v1.0.3](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.0.3) - 2024-05-01
7+
## [v1.1.0](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.1.0) - 2024-05-23
8+
### Fixed
9+
- [Make deployment user permissions more specific](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/68)
10+
11+
### Dependencies
12+
- [Update vulnerable dependencies](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/64)
813

14+
### Added
15+
- [Add Documentation for Generating Keys and Certificates for TLS Tests](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/66)
16+
- [Add Lambda timeout & refactor timeout names](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/65)
17+
18+
### Removed
19+
- [Remove reference to SigV4 issue](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/67)
20+
- [Removing Not Needed Certificates](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/63)
21+
22+
## [v1.0.3](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.0.3) - 2024-05-01
923
### Added
1024
- [Add Logging for Ignored Records and Records Requested for Ingestion](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/60)
1125

1226
## [v1.0.2](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.0.2) - 2024-04-30
13-
1427
### Added
1528
- [Add documentation for API Gateway endpoints](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/54)
1629
- [Adding Log Level to Environment Variables in CFN Template](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/55)
1730
- [Log number of failed records and update logging documentation](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/56)
31+
1832
### Changed
1933
- [Changing Logging of Records and Errors to Debug Mode](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/57)
34+
2035
### Dependencies
2136
- [Bump golang.org/x/net from 0.18.0 to 0.23.0 in the go_modules group across 1 directory](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/53)
2237

@@ -34,7 +49,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3449
### Dependencies
3550
- [Bump github.com/docker/docker from 24.0.7+incompatible to 24.0.9+incompatible](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/46)
3651

37-
3852
## [v1.0.0](https://github.com/awslabs/amazon-timestream-connector-prometheus/releases/tag/1.0.0) - 2024-03-14
3953
### Added
4054
- [Adding region to environment vars](https://github.com/awslabs/amazon-timestream-connector-prometheus/pull/16)

serverless/template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Metadata:
99
LicenseUrl: "LICENSE"
1010
ReadmeUrl: "DEVELOPER_README.md"
1111
HomePageUrl: "https://aws.amazon.com/timestream/"
12-
SemanticVersion: "1.0.3"
12+
SemanticVersion: "1.1.0"
1313

1414
Parameters:
1515
APIGatewayStageName:
@@ -89,7 +89,7 @@ Resources:
8989
Role: !GetAtt "IAMLambdaRole.Arn"
9090
CodeUri:
9191
Bucket: !Sub 'timestreamassets-${AWS::Region}'
92-
Key: "timestream-prometheus-connector-linux-amd64-1.0.3.zip"
92+
Key: "timestream-prometheus-connector-linux-amd64-1.1.0.zip"
9393
Description: "Prometheus remote storage connector for Amazon Timestream"
9494
Handler: "bootstrap"
9595
MemorySize: !Ref "MemorySize"

timestream/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ import (
1919

2020
// Application build information.
2121
var (
22-
Version = "1.0.3"
22+
Version = "1.1.0"
2323
GoVersion = runtime.Version()
2424
)

0 commit comments

Comments
 (0)