Skip to content

Commit c8a2217

Browse files
deps: update dependency com.google.cloud:sdk-platform-java-config to v3.43.0 (googleapis#1908)
* deps: update dependency com.google.cloud:sdk-platform-java-config to v3.43.0 * initialize Dialect$2 as part of strict-image-heap enforcement * Revert "initialize Dialect$2 as part of strict-image-heap enforcement" This reverts commit d3f0047. * Reapply "initialize Dialect$2 as part of strict-image-heap enforcement" This reverts commit bde7751. * initialize Dialect$1 at build time * initialize immutable map entry at build time * initialize subclass of immutable map entry * initialize database dialect $1 * add test class initialization * add test class initialization ii * move parameterized initialization to production config * move junit config to test config * Revert "move junit config to test config" This reverts commit d78fe2f. * include runwith in initialized junit classes * add junit method order to image heap * add junit's category to image heap * remove java.lang.annotation from image heap * initialize parameterized junit class at build time * initialize framework in image-heap * initialize it test parameter at build time explicitly * explicitly initialize singleton immutablebimap --------- Co-authored-by: diegomarquezp <[email protected]>
1 parent dfddf08 commit c8a2217

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

.github/workflows/unmanaged_dependency_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
shell: bash
1515
run: .kokoro/build.sh
1616
- name: Unmanaged dependency check
17-
uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.42.0
17+
uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.43.0
1818
with:
1919
bom-path: pom.xml

.kokoro/presubmit/graalvm-native-17.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.42.0"
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_b:3.43.0"
77
}
88

99
env_vars: {

.kokoro/presubmit/graalvm-native.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Configure the docker image for kokoro-trampoline.
44
env_vars: {
55
key: "TRAMPOLINE_IMAGE"
6-
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.42.0"
6+
value: "gcr.io/cloud-devrel-public-resources/graalvm_sdk_platform_a:3.43.0"
77
}
88

99
env_vars: {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.google.cloud</groupId>
1616
<artifactId>sdk-platform-java-config</artifactId>
17-
<version>3.42.0</version>
17+
<version>3.43.0</version>
1818
</parent>
1919
<developers>
2020
<developer>

samples/quickperf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.google.cloud</groupId>
1414
<artifactId>sdk-platform-java-config</artifactId>
15-
<version>3.42.0</version>
15+
<version>3.43.0</version>
1616
<relativePath/>
1717
</parent>
1818

samples/snippets/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.google.cloud</groupId>
1111
<artifactId>sdk-platform-java-config</artifactId>
12-
<version>3.42.0</version>
12+
<version>3.43.0</version>
1313
<relativePath/>
1414
</parent>
1515

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Args = --initialize-at-build-time==com.google.cloud.spanner.IntegrationTestEnv,\
22
com.google.cloud.spanner.jdbc.it.JdbcIntegrationTestEnv,\
3+
com.google.cloud.spanner.jdbc.it.DialectTestParameter,\
34
com.google.common.collect.RegularImmutableMap,\
5+
com.google.common.collect.ImmutableMapEntry,\
6+
com.google.common.collect.ImmutableMapEntry$NonTerminalImmutableMapEntry,\
7+
com.google.common.collect.SingletonImmutableBiMap,\
48
com.google.cloud.spanner.Dialect,\
9+
com.google.cloud.spanner.Dialect$2,\
10+
com.google.cloud.spanner.Dialect$1,\
511
com.google.spanner.admin.database.v1.DatabaseDialect,\
6-
org.junit.runners.MethodSorters
12+
com.google.spanner.admin.database.v1.DatabaseDialect$1,\
13+
org.junit.runners.MethodSorters,\
14+
org.junit.runners.Parameterized,\
15+
org.junit.runner.RunWith,\
16+
org.junit.FixMethodOrder,\
17+
org.junit.experimental.categories.Category,\
18+
org.junit.runners.parameterized.BlockJUnit4ClassRunnerWithParameters,\
19+
org.junit.runners.model.FrameworkField,\

0 commit comments

Comments
 (0)