-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Cloudwatch Adapter 1.1.0, released 2024-06-11 | ||
|
||
Code name: Support Exasol v8 | ||
|
||
## Summary | ||
|
||
This release adds support for Exasol v8. It also enables [SnapStart](https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html) for the AWS Lambda function to speedup execution and adds the `VCPU` (total number of virtual CPUs used by the Exasol cluster) as an additional metric for Exasol v8. | ||
|
||
## Features | ||
|
||
* #91: Added support for Exasol v8 | ||
|
||
## Dependency Updates | ||
|
||
### Compile Dependency Updates | ||
|
||
* Updated `com.amazonaws:aws-lambda-java-events:3.11.4` to `3.11.5` | ||
* Updated `software.amazon.awssdk:cloudwatch:2.25.28` to `2.25.70` | ||
* Updated `software.amazon.awssdk:secretsmanager:2.25.28` to `2.25.70` | ||
|
||
### Test Dependency Updates | ||
|
||
* Updated `com.amazonaws:aws-java-sdk-s3:1.12.698` to `1.12.740` | ||
* Updated `com.exasol:exasol-testcontainers:7.0.1` to `7.1.0` | ||
* Updated `org.mockito:mockito-core:5.11.0` to `5.12.0` | ||
* Updated `org.testcontainers:junit-jupiter:1.19.7` to `1.19.8` | ||
* Updated `org.testcontainers:localstack:1.19.7` to `1.19.8` | ||
|
||
### Plugin Dependency Updates | ||
|
||
* Updated `com.exasol:error-code-crawler-maven-plugin:2.0.2` to `2.0.3` | ||
* Updated `com.exasol:project-keeper-maven-plugin:4.3.0` to `4.3.3` | ||
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.4.1` to `3.5.0` | ||
* Updated `org.apache.maven.plugins:maven-toolchains-plugin:3.1.0` to `3.2.0` | ||
* Updated `org.sonarsource.scanner.maven:sonar-maven-plugin:3.11.0.3922` to `4.0.0.4121` |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ error-tags: | |
CWA: | ||
packages: | ||
- com.exasol.cloudwatch | ||
highest-index: 35 | ||
highest-index: 36 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package com.exasol.cloudwatch; | ||
|
||
public class TestConstants { | ||
public static final String EXASOL_DOCKER_DB_VERSION = "7.1.25"; | ||
public static final String EXASOL_DOCKER_DB_VERSION = "8.27.0"; | ||
public static final String LOCAL_STACK_IMAGE = "localstack/localstack:2.2"; | ||
} |