Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into cleanup_model_package
Browse files Browse the repository at this point in the history
  • Loading branch information
wernerdv committed Jan 13, 2025
2 parents 9931200 + 2b3abd2 commit 1fd4842
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions api/src/test/java/io/kafbat/ui/AbstractIntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ public abstract class AbstractIntegrationTest {
public static final String LOCAL = "local";
public static final String SECOND_LOCAL = "secondLocal";

private static final boolean IS_ARM =
System.getProperty("os.arch").contains("arm") || System.getProperty("os.arch").contains("aarch64");

private static final String CONFLUENT_PLATFORM_VERSION = IS_ARM ? "7.8.0.arm64" : "7.8.0";
private static final String CONFLUENT_PLATFORM_VERSION = "7.8.0";

public static final KafkaContainer kafka = new KafkaContainer(
DockerImageName.parse("confluentinc/cp-kafka").withTag(CONFLUENT_PLATFORM_VERSION))
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
},
"engines": {
"node": "18.17.1",
"pnpm": "9.15.0"
"pnpm": "^9.15.0"
},
"pnpm": {
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<junit.version>5.11.2</junit.version>
<mockito.version>5.14.2</mockito.version>
<okhttp3.mockwebserver.version>4.12.0</okhttp3.mockwebserver.version>
<testcontainers.version>1.20.2</testcontainers.version>
<testcontainers.version>1.20.4</testcontainers.version>

<!-- Frontend dependency versions -->
<node.version>v18.17.1</node.version>
Expand Down

0 comments on commit 1fd4842

Please sign in to comment.