-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(v2): Split powertools-idempotency module to sub-modules and add redis implementation #1513
Closed
Closed
Changes from 12 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
0ec7f4a
Introducing sub-modules in the idempotency module
eldimi 575e7a9
Updating the idempotency documentation
eldimi 6382089
Move test resource to the dynamodb idempotency sub-module
eldimi 914359d
Renaming common module to core and refactoring package name for repo …
eldimi 336cab3
fix spotbugs for multiple modules and new pr_artifacts
eldimi dca1f0e
fix spotbugs for multiple modules
eldimi d71f9ac
fix spotbugs for multiple modules - with pom property
eldimi a9ef2c4
fix spotbugs for multiple modules - multiple spotbugs files
eldimi c017948
Try fixing java8 build
eldimi bcbd956
fix aspectj weaving
jeromevdl 9f44ebf
Clean-up pom dependencies and remove awssdk#StringUtils usage
eldimi 6da6aaf
Fix sonar issues
eldimi e144be5
Adding redis implementation for idempotency
eldimi 30722ba
Fix string replacement and add unit test
eldimi 7ff5708
Address sonar findings
eldimi d2e4efa
E2E test for idempotency redis implementation
eldimi d00b5e2
Adding instructions to bootstrap cdk in e2e README file
eldimi b3e3d7d
Add documentation for redis idempotency
eldimi 0501b8f
Add support for Redis Cluster, improve documentation and e2e tests
eldimi 0582f24
docs improvements - Apply suggestions from code review
eldimi fce92df
Apply checkstyle to fix import order
eldimi 0396be8
Merge branch 'chore/v2-split-idempotency-mod' of github.com:aws-power…
eldimi 1a47aef
Merge branch 'v2' into chore/v2-split-idempotency-mod
eldimi df7452f
Fix build
eldimi 4975dc9
Fix spotbugs target and build
eldimi 65318c9
Fix e2e build for Java8
eldimi 6cce077
Fix e2e tests build
eldimi 0c1cc38
Exposes JedisClientConfig to allow custom config (ssl, db, etc..), im…
eldimi 796029d
Add database config hint in the documentation
eldimi 4d2c716
Address spotbugs
eldimi 81417e1
Include memoryDB support in the documentation
eldimi a200e64
Apply suggestions from code review
eldimi a82e4cd
Minor enhancements
eldimi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
42 changes: 42 additions & 0 deletions
42
powertools-idempotency/powertools-idempotency-core/pom.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2023 Amazon.com, Inc. or its affiliates. | ||
~ Licensed under the Apache License, Version 2.0 (the | ||
~ "License"); you may not use this file except in compliance | ||
~ with the License. You may obtain a copy of the License at | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, | ||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
~ See the License for the specific language governing permissions and | ||
~ limitations under the License. | ||
~ | ||
--> | ||
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>software.amazon.lambda</groupId> | ||
<artifactId>powertools-idempotency</artifactId> | ||
<version>2.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>powertools-idempotency-core</artifactId> | ||
<packaging>jar</packaging> | ||
|
||
<name>Powertools for AWS Lambda (Java) library Idempotency - Core</name> | ||
<description> | ||
Idempotency module common implementation | ||
</description> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>software.amazon.lambda</groupId> | ||
<artifactId>powertools-serialization</artifactId> | ||
</dependency> | ||
<!-- Test dependencies --> | ||
</dependencies> | ||
</project> |
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
eldimi marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains 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
File renamed without changes.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you don't have checkstyle applied.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be fixed now. I think it is because we only format uncommitted and if I forget to format before commit, I am missing some files..