-
Notifications
You must be signed in to change notification settings - Fork 131
Comparing changes
Open a pull request
base repository: googleapis/java-spanner
base: v6.57.0
head repository: googleapis/java-spanner
compare: v6.58.0
- 14 commits
- 119 files changed
- 10 contributors
Commits on Jan 29, 2024
-
chore(main): release 6.57.1-SNAPSHOT (#2849)
🤖 I have created a release *beep* *boop* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
Configuration menu - View commit details
-
Copy full SHA for 2af0787 - Browse repository at this point
Copy the full SHA 2af0787View commit details
Commits on Jan 30, 2024
-
chore: remove obsolete release job configs (#2799)
* chore: remove obsolete release job configs * remove extra comma
Configuration menu - View commit details
-
Copy full SHA for 4d9c856 - Browse repository at this point
Copy the full SHA 4d9c856View commit details
Commits on Feb 2, 2024
-
test: disable proto column tests (#2857)
* test: disable proto column tests * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 5ee5540 - Browse repository at this point
Copy the full SHA 5ee5540View commit details
Commits on Feb 6, 2024
-
feat: support Directed Read in Connection API (#2855)
* feat: support Directed Read in Connection API Adds support for setting Directed Read options in the Connection API. The value must be a valid JSON representation of a DirectedReadOptions protobuf instance. * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore: address review comments * fix: verify that DirectedRead is not used for DML --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ee477c2 - Browse repository at this point
Copy the full SHA ee477c2View commit details -
deps: update dependency com.google.cloud:google-cloud-shared-dependen…
…cies to v3.24.0 (#2856) * deps: update dependency com.google.cloud:google-cloud-shared-dependencies to v3.24.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 968877e - Browse repository at this point
Copy the full SHA 968877eView commit details -
chore: remove drop protection before cleanup (#2863)
The cleanup function used to remove old test databases did not remove the drop protection flag before trying to drop a database.
Configuration menu - View commit details
-
Copy full SHA for 1765e08 - Browse repository at this point
Copy the full SHA 1765e08View commit details
Commits on Feb 7, 2024
-
chore: fix session acquire timeout test (#2793)
* chore: fix session acquire timeout test The test for session acquire timeout did not actually do what it was supposed to do, as it did not check that a timeout was actually registered. This again also caused it to busy-wait for 5 seconds to times (MinSessions=0 and MinSessions=1). This fixes both the actual test, and reduces the overall test time by about 10 seconds. * chore: address review comments * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 79c30d2 - Browse repository at this point
Copy the full SHA 79c30d2View commit details -
fix: ignore UnsupportedOperationException for virtual threads (#2866)
The virtual threads util that tries to create a virtual thread factory on JVMs that support this would fail on Java 20, because: 1. Java 20 supports virtual threads as an experimental feature. This means that the code is present. 2. The feature is by default disabled, and throws an UnsupportedOperationException. This fix takes the above into account and returns null if a user tries to create a virtual threads factory on Java 20 with experimental features disabled.
Configuration menu - View commit details
-
Copy full SHA for aa9ad7f - Browse repository at this point
Copy the full SHA aa9ad7fView commit details
Commits on Feb 8, 2024
-
fix: use default query options with statement cache (#2860)
Statements that were executed using the Connection API and that were not found in the statement cache (that is; it was the first time it was executed), would not use the default query options that had been set for the connection. This would mean that for example an optimizer version that had been set for the connection would not be used the first time a given query string would be executed using a connection. All subsequent executions of the statement would use specified optimizer version. This change ensures that both the first and all following executions of the statement use the default query options that have been set.
Configuration menu - View commit details
-
Copy full SHA for 741e4cf - Browse repository at this point
Copy the full SHA 741e4cfView commit details -
feat(spanner): support max_commit_delay in Spanner transactions (#2854)
* add commit delay options * feat: add max_commit_delay options for commit requests * Point stuff to devel * Make samples work with devel. Add a typo. * Cleanup stuff * Remove duplicate definitions. * Fix merge conflict. * Remove SpannerSample pointing to devel. * Add some parans * Add a unit test to ensure unset commit delay is properly propagated * Add an integration test. * change maxCommitDelayInMillis of type Int to maxCommitDelay of type Duration. * Format * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: rahul yadav <[email protected]> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for e2b7ae6 - Browse repository at this point
Copy the full SHA e2b7ae6View commit details -
feat: Open telemetry implementation (#2770)
This PR adds support for [OpenTelemetry](https://opentelemetry.io/) Instrumentation for Traces and Metrics. Add dependency for [OpenTelemetrySDK](https://opentelemetry.io/docs/instrumentation/java/manual/#initialize-the-sdk) and required [exporters](https://opentelemetry.io/docs/instrumentation/java/exporters/). Create OpenTelemetry object with required MeterProvider and TracerProvider exporter . Inject OpenTelemetry object via SpannerOptions or register as Global ` OpenTelemetry openTelemetry = OpenTelemetrySdk.builder() .setPropagators(ContextPropagators.create(W3CTraceContextPropagator.getInstance())) .setTracerProvider(tracerProvider) .setMeterProvider(sdkMeterProvider) .build; SpannerOptions options = SpannerOptions.newBuilder().setOpenTelemetry(openTelemetry).build(); ` By default, OpenTelemetry traces are not enabled. To enable OpenTelemetry traces , call `SpannerOptions.enableOpenTelemetryTraces()` in startup of your application. Enabling OpenTelemetry traces will disable OpenCensus traces. Both OpenCensus and OpenTelemetry traces can not be enabled at the same time.
Configuration menu - View commit details
-
Copy full SHA for 244d6a8 - Browse repository at this point
Copy the full SHA 244d6a8View commit details -
fix: cast for Proto type (#2862)
* fix: cast for Proto type * fix: add null check * feat(spanner): add ENUM compatibility with getLongArray * feat: fix argument * feat: fix bug
Configuration menu - View commit details
-
Copy full SHA for 0a95dba - Browse repository at this point
Copy the full SHA 0a95dbaView commit details -
ci: unmanaged dependency check (#2796)
* ci: unmanaged dependency check * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 5edd518 - Browse repository at this point
Copy the full SHA 5edd518View commit details
Commits on Feb 9, 2024
-
chore(main): release 6.58.0 (#2859)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 7349a2a - Browse repository at this point
Copy the full SHA 7349a2aView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v6.57.0...v6.58.0