From b27359e041ef062baac7e8a5747493fe2ed7b5f6 Mon Sep 17 00:00:00 2001 From: Ravindranath Kakarla <rnath@amazon.com> Date: Mon, 20 May 2024 10:33:11 -0700 Subject: [PATCH] Bump library version to 1.1.20 (#345) --- CHANGELOG.md | 3 +++ README.md | 8 ++++---- avro-flink-serde/README.md | 4 ++-- avro-flink-serde/pom.xml | 4 ++-- avro-kafkaconnect-converter/pom.xml | 2 +- build-tools/pom.xml | 2 +- common/pom.xml | 2 +- examples/pom.xml | 2 +- integration-tests/pom.xml | 2 +- jsonschema-kafkaconnect-converter/pom.xml | 2 +- kafkastreams-serde/pom.xml | 2 +- pom.xml | 2 +- protobuf-kafkaconnect-converter/pom.xml | 2 +- serializer-deserializer-msk-iam/pom.xml | 2 +- serializer-deserializer/pom.xml | 2 +- 15 files changed, 22 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b147887..ab748476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -81,3 +81,6 @@ GlueSchemaRegistryKafkaSerializer/GlueSchemaRegistryKafkaDeserializer. ## Release 1.1.19 * Upgraded dependency versions to remove ION dependencies + +## Release 1.1.20 +* Upgrade the dependency version to remove commons:compress dependency diff --git a/README.md b/README.md index 889210f1..31476b1e 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ The recommended way to use the AWS Glue Schema Registry Library for Java is to c <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-serde</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> </dependency> ``` ### Code Example @@ -490,7 +490,7 @@ It should look like this * If using bash, run the below commands to set-up your CLASSPATH in your bash_profile. (For any other shell, update the environment accordingly.) ```bash echo 'export GSR_LIB_BASE_DIR=<>' >>~/.bash_profile - echo 'export GSR_LIB_VERSION=1.1.19' >>~/.bash_profile + echo 'export GSR_LIB_VERSION=1.1.20' >>~/.bash_profile echo 'export KAFKA_HOME=<your kafka installation directory>' >>~/.bash_profile echo 'export CLASSPATH=$CLASSPATH:$GSR_LIB_BASE_DIR/avro-kafkaconnect-converter/target/schema-registry-kafkaconnect-converter-$GSR_LIB_VERSION.jar:$GSR_LIB_BASE_DIR/common/target/schema-registry-common-$GSR_LIB_VERSION.jar:$GSR_LIB_BASE_DIR/avro-serializer-deserializer/target/schema-registry-serde-$GSR_LIB_VERSION.jar' >>~/.bash_profile source ~/.bash_profile @@ -549,7 +549,7 @@ It should look like this <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-kafkastreams-serde</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> </dependency> ``` @@ -587,7 +587,7 @@ repository for the latest support: [Avro SerializationSchema and Deserialization <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-flink-serde</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> </dependency> ``` ### Code Example diff --git a/avro-flink-serde/README.md b/avro-flink-serde/README.md index 5541a930..d803ac3b 100644 --- a/avro-flink-serde/README.md +++ b/avro-flink-serde/README.md @@ -20,7 +20,7 @@ inside Amazon VPC.](https://docs.aws.amazon.com/kinesisanalytics/latest/java/vpc <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-flink-serde</artifactId> - <version>1.1.19/version> + <version>1.1.20/version> </dependency> ``` ### Code Example @@ -67,4 +67,4 @@ inside Amazon VPC.](https://docs.aws.amazon.com/kinesisanalytics/latest/java/vpc GlueSchemaRegistryAvroDeserializationSchema.forGeneric(schema, configs), properties); DataStream<GenericRecord> stream = env.addSource(consumer); -``` \ No newline at end of file +``` diff --git a/avro-flink-serde/pom.xml b/avro-flink-serde/pom.xml index 591b77a4..1901cbed 100644 --- a/avro-flink-serde/pom.xml +++ b/avro-flink-serde/pom.xml @@ -21,7 +21,7 @@ <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-flink-serde</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <name>AWS Glue Schema Registry Flink Avro Serialization Deserialization Schema</name> <description>The AWS Glue Schema Registry Library for Apache Flink enables Java developers to easily integrate their Apache Flink applications with AWS Glue Schema Registry @@ -66,7 +66,7 @@ <dependency> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-serde</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> diff --git a/avro-kafkaconnect-converter/pom.xml b/avro-kafkaconnect-converter/pom.xml index bed5eaac..de996006 100644 --- a/avro-kafkaconnect-converter/pom.xml +++ b/avro-kafkaconnect-converter/pom.xml @@ -32,7 +32,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/build-tools/pom.xml b/build-tools/pom.xml index ade51828..e6033638 100644 --- a/build-tools/pom.xml +++ b/build-tools/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/common/pom.xml b/common/pom.xml index 2e54977a..14267498 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/examples/pom.xml b/examples/pom.xml index dfd3f90c..dbe548c3 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -31,7 +31,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index c2f1aefe..05ea2450 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -31,7 +31,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/jsonschema-kafkaconnect-converter/pom.xml b/jsonschema-kafkaconnect-converter/pom.xml index 5b16f7ff..b9e480bd 100644 --- a/jsonschema-kafkaconnect-converter/pom.xml +++ b/jsonschema-kafkaconnect-converter/pom.xml @@ -32,7 +32,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/kafkastreams-serde/pom.xml b/kafkastreams-serde/pom.xml index 80d7d5a8..859eb466 100644 --- a/kafkastreams-serde/pom.xml +++ b/kafkastreams-serde/pom.xml @@ -32,7 +32,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/pom.xml b/pom.xml index d011f3f2..dbfe18bb 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <packaging>pom</packaging> <name>AWS Glue Schema Registry Library</name> <description>The AWS Glue Schema Registry Library for Java enables Java developers to easily integrate their diff --git a/protobuf-kafkaconnect-converter/pom.xml b/protobuf-kafkaconnect-converter/pom.xml index a348f4d7..911ef558 100644 --- a/protobuf-kafkaconnect-converter/pom.xml +++ b/protobuf-kafkaconnect-converter/pom.xml @@ -22,7 +22,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/serializer-deserializer-msk-iam/pom.xml b/serializer-deserializer-msk-iam/pom.xml index 779df0da..bc96ba7f 100644 --- a/serializer-deserializer-msk-iam/pom.xml +++ b/serializer-deserializer-msk-iam/pom.xml @@ -33,7 +33,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent> diff --git a/serializer-deserializer/pom.xml b/serializer-deserializer/pom.xml index 12716b75..c4b9f4aa 100644 --- a/serializer-deserializer/pom.xml +++ b/serializer-deserializer/pom.xml @@ -32,7 +32,7 @@ <parent> <groupId>software.amazon.glue</groupId> <artifactId>schema-registry-parent</artifactId> - <version>1.1.19</version> + <version>1.1.20</version> <relativePath>../pom.xml</relativePath> </parent>