Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
76754310ba build(deps): bump com.github.docker-java:docker-java from 3.6.0 to 3.7.0
Bumps [com.github.docker-java:docker-java](https://github.com/docker-java/docker-java) from 3.6.0 to 3.7.0.
- [Release notes](https://github.com/docker-java/docker-java/releases)
- [Changelog](https://github.com/docker-java/docker-java/blob/main/CHANGELOG.md)
- [Commits](https://github.com/docker-java/docker-java/compare/3.6.0...3.7.0)

---
updated-dependencies:
- dependency-name: com.github.docker-java:docker-java
  dependency-version: 3.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-19 07:02:27 +00:00
6 changed files with 2729 additions and 1684 deletions

View File

@@ -50,7 +50,7 @@ jobs:
repository: kestra-io/kestra-ee repository: kestra-io/kestra-ee
event-type: "oss-updated" event-type: "oss-updated"
client-payload: >- client-payload: >-
{"commit_sha":"${{ github.event.pull_request.head.sha }}","pr_repo":"${{ github.repository }}"} {"commit_sha":"${{ github.sha }}","pr_repo":"${{ github.repository }}"}
file-changes: file-changes:
if: ${{ github.event.pull_request.draft == false }} if: ${{ github.event.pull_request.draft == false }}

View File

@@ -15,7 +15,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
class AppTest { class AppTest {
@Test @Test
void testHelp2() { void testHelp() {
ByteArrayOutputStream out = new ByteArrayOutputStream(); ByteArrayOutputStream out = new ByteArrayOutputStream();
System.setOut(new PrintStream(out)); System.setOut(new PrintStream(out));

View File

@@ -14,7 +14,7 @@ class NoopCacheTest {
private Cache<String, String> cache = new NoopCache<>(); private Cache<String, String> cache = new NoopCache<>();
@Test @Test
void getIfPresentChangeToBeremove() { void getIfPresent() {
cache.put("key", "value"); cache.put("key", "value");
assertThat(cache.getIfPresent("key")).isNull(); assertThat(cache.getIfPresent("key")).isNull();

View File

@@ -113,8 +113,8 @@ dependencies {
api 'com.h2database:h2:2.4.240' api 'com.h2database:h2:2.4.240'
api 'com.mysql:mysql-connector-j:9.5.0' api 'com.mysql:mysql-connector-j:9.5.0'
api 'org.postgresql:postgresql:42.7.8' api 'org.postgresql:postgresql:42.7.8'
api 'com.github.docker-java:docker-java:3.6.0' api 'com.github.docker-java:docker-java:3.7.0'
api 'com.github.docker-java:docker-java-transport-httpclient5:3.6.0' api 'com.github.docker-java:docker-java-transport-httpclient5:3.7.0'
api (group: 'org.opensearch.client', name: 'opensearch-java', version: "$opensearchVersion") api (group: 'org.opensearch.client', name: 'opensearch-java', version: "$opensearchVersion")
api (group: 'org.opensearch.client', name: 'opensearch-rest-client', version: "$opensearchRestVersion") api (group: 'org.opensearch.client', name: 'opensearch-rest-client', version: "$opensearchRestVersion")
api (group: 'org.opensearch.client', name: 'opensearch-rest-high-level-client', version: "$opensearchRestVersion") // used by the elasticsearch plugin api (group: 'org.opensearch.client', name: 'opensearch-rest-high-level-client', version: "$opensearchRestVersion") // used by the elasticsearch plugin

4385
ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -98,8 +98,8 @@
"@types/testing-library__jest-dom": "^6.0.0", "@types/testing-library__jest-dom": "^6.0.0",
"@types/testing-library__user-event": "^4.2.0", "@types/testing-library__user-event": "^4.2.0",
"@typescript-eslint/parser": "^8.46.4", "@typescript-eslint/parser": "^8.46.4",
"@vitejs/plugin-vue": "^6.0.2", "@vitejs/plugin-vue": "^6.0.1",
"@vitejs/plugin-vue-jsx": "^5.1.2", "@vitejs/plugin-vue-jsx": "^5.1.1",
"@vitest/browser": "^3.2.4", "@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4", "@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^10.2.0", "@vue/eslint-config-prettier": "^10.2.0",
@@ -131,18 +131,18 @@
"uuid": "^13.0.0", "uuid": "^13.0.0",
"vite": "npm:rolldown-vite@latest", "vite": "npm:rolldown-vite@latest",
"vitest": "^3.2.4", "vitest": "^3.2.4",
"vue-tsc": "^3.1.4" "vue-tsc": "^3.1.3"
}, },
"optionalDependencies": { "optionalDependencies": {
"@esbuild/darwin-arm64": "^0.27.0", "@esbuild/darwin-arm64": "^0.27.0",
"@esbuild/darwin-x64": "^0.27.0", "@esbuild/darwin-x64": "^0.27.0",
"@esbuild/linux-x64": "^0.27.0", "@esbuild/linux-x64": "^0.27.0",
"@rollup/rollup-darwin-arm64": "^4.53.3", "@rollup/rollup-darwin-arm64": "^4.53.2",
"@rollup/rollup-darwin-x64": "^4.53.3", "@rollup/rollup-darwin-x64": "^4.53.2",
"@rollup/rollup-linux-x64-gnu": "^4.53.3", "@rollup/rollup-linux-x64-gnu": "^4.53.2",
"@swc/core-darwin-arm64": "^1.15.2", "@swc/core-darwin-arm64": "^1.15.1",
"@swc/core-darwin-x64": "^1.15.2", "@swc/core-darwin-x64": "^1.15.1",
"@swc/core-linux-x64-gnu": "^1.15.2" "@swc/core-linux-x64-gnu": "^1.15.1"
}, },
"overrides": { "overrides": {
"bootstrap": { "bootstrap": {