diff --git a/.release-please-manifest-individual.json b/.release-please-manifest-individual.json index 8b32d9217347..dd8c9ec37b87 100644 --- a/.release-please-manifest-individual.json +++ b/.release-please-manifest-individual.json @@ -7,7 +7,7 @@ "bigtable": "1.33.0", "datastore": "1.20.0", "errorreporting": "0.3.1", - "firestore": "1.17.0", + "firestore": "1.18.0", "logging": "1.12.0", "profiler": "0.4.1", "pubsub": "1.45.1", diff --git a/firestore/CHANGES.md b/firestore/CHANGES.md index 0aa328e0e1ae..8a0a7fa588d2 100644 --- a/firestore/CHANGES.md +++ b/firestore/CHANGES.md @@ -1,5 +1,21 @@ # Changes +## [1.18.0](https://github.com/googleapis/google-cloud-go/compare/firestore/v1.17.0...firestore/v1.18.0) (2024-11-13) + + +### Features + +* **firestore:** Add WithCommitResponseTo TransactionOption ([#6967](https://github.com/googleapis/google-cloud-go/issues/6967)) ([eb25266](https://github.com/googleapis/google-cloud-go/commit/eb252663ad0bdabbd5de1767b42a69fd2aee54b2)) +* **firestore:** Surfacing the error returned from the service in Bulkwriter ([#10826](https://github.com/googleapis/google-cloud-go/issues/10826)) ([9ae039a](https://github.com/googleapis/google-cloud-go/commit/9ae039a38856133a2bde4c3bd70155d17538c974)) + + +### Bug Fixes + +* **firestore:** Add UTF-8 validation ([#10881](https://github.com/googleapis/google-cloud-go/issues/10881)) ([9199843](https://github.com/googleapis/google-cloud-go/commit/9199843947bc3a0fa415dba50ba2221850e0fbad)) +* **firestore:** Allow using != with nil ([#11112](https://github.com/googleapis/google-cloud-go/issues/11112)) ([5b59819](https://github.com/googleapis/google-cloud-go/commit/5b59819e2d603ef55c4cf056b70af6a08d335373)) +* **firestore:** Update google.golang.org/api to v0.203.0 ([8bb87d5](https://github.com/googleapis/google-cloud-go/commit/8bb87d56af1cba736e0fe243979723e747e5e11e)) +* **firestore:** WARNING: On approximately Dec 1, 2024, an update to Protobuf will change service registration function signatures to use an interface instead of a concrete type in generated .pb.go files. This change is expected to affect very few if any users of this client library. For more information, see https://togithub.com/googleapis/google-cloud-go/issues/11020. ([8bb87d5](https://github.com/googleapis/google-cloud-go/commit/8bb87d56af1cba736e0fe243979723e747e5e11e)) + ## [1.17.0](https://github.com/googleapis/google-cloud-go/compare/firestore/v1.16.0...firestore/v1.17.0) (2024-09-11) @@ -249,4 +265,3 @@ This is the first tag to carve out firestore as its own module. See: https://github.com/golang/go/wiki/Modules#is-it-possible-to-add-a-module-to-a-multi-module-repository. - diff --git a/firestore/internal/version.go b/firestore/internal/version.go index 6607c695d5cb..ddddbd21f21f 100644 --- a/firestore/internal/version.go +++ b/firestore/internal/version.go @@ -15,4 +15,4 @@ package internal // Version is the current tagged release of the library. -const Version = "1.17.0" +const Version = "1.18.0"