-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: Apply formatting, using a formatter that supports Java 17 * fix: Don't throw exception if JulieOps is not allowed to delete topics (#3) * Don't throw exception if JuleOps is not allowed to delete topics. * Update dependencies (#2) * Update README.md * fix: Apply formatting, using a formatter that supports Java 17 * chore: Update dependencies * chore: Update dependencies * Update container versions * fix: Replace deprecated AssertJ method * chore: Upgrade Confluent version in workflow * fix: Replace deprecated methods * fix: Replace deprecated methods * chore: Update dependencies * fix: Extend connector path for new version of connect * fix: Revert ksqldb-server to a version that makes the test pass * fix: Correct return value from exception handler * fix: Hack around bug KAFKA-14325 * feat: Support finding topology files recursively (#4) * fix: Clean up zookeeper (#5) The Zookeeper dependency is required for a single test method only. This PR moves all ZK* classes to src/test, and marks the zookeeper dependency as test-coped. Unfortunately, recent versions of zookeeper drag in a logback dependency, that appears to turn on global DEBUG logging. So this PR also exludes those logback dependencies. Fixes #548 * fix: Allow logging of INFO+ from AdminClient (#6) * Excludes all Log4j2Plugins.dat from the shaded jar, to avoid Log4j2 startup problems (ERROR StatusLogger Unrecognized conversion specifier...) * Adds a log4j.properties that will be picked up by the Kafka dependencies * Create dependabot.yml * chore: Update plug-in versions * chore: Update jackson and redis to remove vulnerable json and snakeyaml packages * chore: Update plugins * chore: Update some deps * chore: Upgrade testcontainers * Updates (#8) * chore: Update some deps * chore: Update some deps * chore: Upgrade Confluent Platform * docs: Fetch changelog from v4.4.1 tag to get all history * chore: Remove unused imports and trailing whitespace (#9) * chore: Remove unused imports * docs: Remove trailing spaces * Update src/test/java/com/purbon/kafka/topology/integration/MDSBaseTest.java Co-authored-by: piotrsmolinski <piotr.smolinski.77@gmail.com> --------- Co-authored-by: piotrsmolinski <piotr.smolinski.77@gmail.com>
- Loading branch information
1 parent
3d25f29
commit 3fae19d
Showing
43 changed files
with
397 additions
and
127 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "Maven" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ logs/* | |
.cluster-state | ||
*.iml | ||
_build | ||
*~ | ||
|
||
dependency-reduced-pom.xml | ||
server-api/logs/ | ||
|
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
Oops, something went wrong.