[Java] Upgrade Kinesis Producer Library from 0.x to 1.x#508
Open
jvdadda wants to merge 1 commit intoawslabs:masterfrom
Open
[Java] Upgrade Kinesis Producer Library from 0.x to 1.x#508jvdadda wants to merge 1 commit intoawslabs:masterfrom
jvdadda wants to merge 1 commit intoawslabs:masterfrom
Conversation
Migrate from com.amazonaws:amazon-kinesis-producer:0.15.8 to software.amazon.kinesis:amazon-kinesis-producer:1.0.7. KPL 1.x uses AWS SDK for Java v2 instead of v1. This requires: - Updated groupId from com.amazonaws to software.amazon.kinesis - Updated imports from com.amazonaws.services.kinesis.producer to software.amazon.kinesis.producer - Removed ion-java exclusion (no longer needed in 1.x)
There was a problem hiding this comment.
Pull request overview
Upgrades the Kinesis Producer Library (KPL) used in tests from the legacy 0.x coordinate to the 1.x coordinate, aligning with the AWS SDK for Java v2-based KPL.
Changes:
- Bumped KPL version to
1.0.7and updated Maven coordinates tosoftware.amazon.kinesis:amazon-kinesis-producer. - Updated Java imports in the Kinesis integration test to the new
software.amazon.kinesis.producer.*package. - Removed the
ion-javaexclusion from the KPL dependency declarations.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
pom.xml |
Updates managed KPL version and dependency coordinates; removes ion-java exclusion. |
integration-tests/pom.xml |
Updates integration-tests dependency coordinates for KPL and removes ion-java exclusion. |
integration-tests/src/test/java/com/amazonaws/services/schemaregistry/integrationtests/kinesis/GlueSchemaRegistryKinesisIntegrationTest.java |
Updates KPL import package names to match KPL 1.x. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
emilie-deltil
approved these changes
Mar 9, 2026
This was referenced Mar 10, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue #, if available: Fixes #509
Description of changes:
Upgrade the Kinesis Producer Library (KPL) from
com.amazonaws:amazon-kinesis-producer:0.15.8tosoftware.amazon.kinesis:amazon-kinesis-producer:1.0.7.KPL 0.x is reaching end of life (see KPL README). KPL 1.x uses AWS SDK for Java v2 instead of v1.
Changes:
com.amazonawstosoftware.amazon.kinesisin parent POM and integration-tests POM0.15.8to1.0.7com.amazonaws.services.kinesis.producer.*tosoftware.amazon.kinesis.producer.*ion-javaexclusion (no longer needed in 1.x)Migration guide: https://docs.aws.amazon.com/streams/latest/dev/kpl-migration-1x.html
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.