-
Notifications
You must be signed in to change notification settings - Fork 52
Comparing changes
Open a pull request
base repository: googleapis/java-spanner-jdbc
base: v2.20.1
head repository: googleapis/java-spanner-jdbc
compare: v2.20.2
- 20 commits
- 37 files changed
- 3 contributors
Commits on Jul 4, 2024
-
chore(main): release 2.20.2-SNAPSHOT (#1674)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 52cfbfc - Browse repository at this point
Copy the full SHA 52cfbfcView commit details
Commits on Jul 6, 2024
-
chore(deps): update dependency com.google.cloud:google-cloud-spanner-…
…jdbc to v2.20.1 (#1675)
Configuration menu - View commit details
-
Copy full SHA for f6ad873 - Browse repository at this point
Copy the full SHA f6ad873View commit details
Commits on Jul 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4c9a3f2 - Browse repository at this point
Copy the full SHA 4c9a3f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for faf7c49 - Browse repository at this point
Copy the full SHA faf7c49View commit details
Commits on Jul 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ddf47f4 - Browse repository at this point
Copy the full SHA ddf47f4View commit details
Commits on Jul 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7d17ec7 - Browse repository at this point
Copy the full SHA 7d17ec7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23934f7 - Browse repository at this point
Copy the full SHA 23934f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bb0a6d - Browse repository at this point
Copy the full SHA 6bb0a6dView commit details
Commits on Jul 16, 2024
-
build(deps): update dependency org.apache.maven.plugins:maven-project…
…-info-reports-plugin to v3.6.2 (#1683)
Configuration menu - View commit details
-
Copy full SHA for 98bf7c6 - Browse repository at this point
Copy the full SHA 98bf7c6View commit details
Commits on Jul 25, 2024
-
deps: update dependency org.springframework.boot:spring-boot-starter-…
…parent to v3.3.2 (#1686)
Configuration menu - View commit details
-
Copy full SHA for 2be70c7 - Browse repository at this point
Copy the full SHA 2be70c7View commit details -
deps: update dependency org.springframework.boot:spring-boot-starter-…
…data-jdbc to v3.3.2 (#1685)
Configuration menu - View commit details
-
Copy full SHA for 6a57b49 - Browse repository at this point
Copy the full SHA 6a57b49View commit details -
Configuration menu - View commit details
-
Copy full SHA for 34cb127 - Browse repository at this point
Copy the full SHA 34cb127View commit details
Commits on Aug 6, 2024
-
deps: update dependency org.hamcrest:hamcrest to v3 (#1697)
* deps: update dependency org.hamcrest:hamcrest to v3 * deps: remove separate hamcrest dependency management * chore: remove all usage of hamcrest --------- Co-authored-by: Knut Olav Løite <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3933cf2 - Browse repository at this point
Copy the full SHA 3933cf2View commit details -
test: verify that executeUpdate can be used for DDL (#1694)
The JDBC driver should now support executing DDL using the executeUpdate methods of java.sql.Statement and java.sql.PreparedStatement. Closes #1150
Configuration menu - View commit details
-
Copy full SHA for 1583b24 - Browse repository at this point
Copy the full SHA 1583b24View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6a54f7 - Browse repository at this point
Copy the full SHA c6a54f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 148c655 - Browse repository at this point
Copy the full SHA 148c655View commit details -
deps: update dependency com.google.cloud:sdk-platform-java-config to …
…v3.33.0 (#1693) * deps: update dependency com.google.cloud:sdk-platform-java-config to v3.33.0 * deps: add incubator dep needed for test * deps: work around unnecessary dependency * chore: run formatter --------- Co-authored-by: Knut Olav Løite <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 08011a5 - Browse repository at this point
Copy the full SHA 08011a5View commit details -
fix: support getShort for DATA_TYPE in TypeInfo (#1691)
* fix: support getShort for DATA_TYPE in TypeInfo The ResultSet that is returned by DatabaseMetadata#getTypeInfo has a column at index 2 with the name DATA_TYPE. This field should contain one of the java.sql.Types constants, or a vendor-specific type code. The JDBC specification states that this column should be a `short` (although the constants in java.sql.Types are of type `int`). Cloud Spanner (at the time of writing) does not support any int16 fields. The type code is therefore returned as an int64. The codes that are used for vendor-specific types by Spanner exceed the max value of a `short`, and therefore resulted in an OUT_OF_RANGE exception if you tried to call `ResultSet#getShort(int)` on this column for any of the Spanner-specific types (e.g. JSON). This change fixes that by adding an additional vendor type code for these types that does fit in a `short`. This value is returned when `getShort(int)` is called on the ResultSet. Fixes #1688 * chore: cleanup
Configuration menu - View commit details
-
Copy full SHA for 828aff6 - Browse repository at this point
Copy the full SHA 828aff6View commit details
Commits on Aug 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ce00b17 - Browse repository at this point
Copy the full SHA ce00b17View commit details -
chore(main): release 2.20.2 (#1678)
🤖 I have created a release *beep* *boop* --- ## [2.20.2](https://togithub.com/googleapis/java-spanner-jdbc/compare/v2.20.1...v2.20.2) (2024-08-07) ### Bug Fixes * Support getShort for DATA_TYPE in TypeInfo ([#1691](https://togithub.com/googleapis/java-spanner-jdbc/issues/1691)) ([828aff6](https://togithub.com/googleapis/java-spanner-jdbc/commit/828aff6f7015b5f91ebbc2ad54aeeecf5515a9bd)) ### Dependencies * Bump Spanner to 6.72.0 ([#1698](https://togithub.com/googleapis/java-spanner-jdbc/issues/1698)) ([ce00b17](https://togithub.com/googleapis/java-spanner-jdbc/commit/ce00b176d39fe728eadd386d4e9794dc1fc0fbca)) * Update dependency com.google.api.grpc:proto-google-cloud-trace-v1 to v2.47.0 ([#1695](https://togithub.com/googleapis/java-spanner-jdbc/issues/1695)) ([148c655](https://togithub.com/googleapis/java-spanner-jdbc/commit/148c655a8bd1309250b5158d0f20a167e89bd9fe)) * Update dependency com.google.cloud:google-cloud-trace to v2.47.0 ([#1696](https://togithub.com/googleapis/java-spanner-jdbc/issues/1696)) ([c6a54f7](https://togithub.com/googleapis/java-spanner-jdbc/commit/c6a54f7a3045fc711fcad8d16294c67aa8eb8810)) * Update dependency com.google.cloud:sdk-platform-java-config to v3.33.0 ([#1693](https://togithub.com/googleapis/java-spanner-jdbc/issues/1693)) ([08011a5](https://togithub.com/googleapis/java-spanner-jdbc/commit/08011a520a2fb14d06614da5e2c7b9ae47d6c6f1)) * Update dependency com.google.cloud.opentelemetry:exporter-trace to v0.31.0 ([#1679](https://togithub.com/googleapis/java-spanner-jdbc/issues/1679)) ([ddf47f4](https://togithub.com/googleapis/java-spanner-jdbc/commit/ddf47f4fc7e1c05e6e3086ada0ff3b2c1efeb2af)) * Update dependency io.opentelemetry:opentelemetry-bom to v1.40.0 ([#1676](https://togithub.com/googleapis/java-spanner-jdbc/issues/1676)) ([faf7c49](https://togithub.com/googleapis/java-spanner-jdbc/commit/faf7c4908a926cd7a10ea0b860babcaa97c4c7e1)) * Update dependency org.hamcrest:hamcrest to v3 ([#1697](https://togithub.com/googleapis/java-spanner-jdbc/issues/1697)) ([3933cf2](https://togithub.com/googleapis/java-spanner-jdbc/commit/3933cf2c4099e0d06c1dc4e4583c11ba5e4eae19)) * Update dependency org.springframework.boot:spring-boot-starter-data-jdbc to v3.3.2 ([#1685](https://togithub.com/googleapis/java-spanner-jdbc/issues/1685)) ([6a57b49](https://togithub.com/googleapis/java-spanner-jdbc/commit/6a57b49a34f2b44f42f6c07eaf5da063a1d648d0)) * Update dependency org.springframework.boot:spring-boot-starter-parent to v3.3.2 ([#1686](https://togithub.com/googleapis/java-spanner-jdbc/issues/1686)) ([2be70c7](https://togithub.com/googleapis/java-spanner-jdbc/commit/2be70c74f673c796d7b366b56644b6d00038bc07)) * Update dependency org.springframework.data:spring-data-bom to v2024.0.2 ([#1680](https://togithub.com/googleapis/java-spanner-jdbc/issues/1680)) ([23934f7](https://togithub.com/googleapis/java-spanner-jdbc/commit/23934f7f38f5c99b7a6859ab69525ce368317128)) --- 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 5f082df - Browse repository at this point
Copy the full SHA 5f082dfView 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 v2.20.1...v2.20.2