diff --git a/CHANGELOG.md b/CHANGELOG.md index 843463f..c841966 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +# 11.7.1 +- [fixed] `AnyValue` type fixes to support decoding values fetched using PostgreSQL `jsonb_build_object`. `AnyValue` now internally stores data as a JSON value / dictionary instead of `Swift.Data`. + # 11.7.0 +- [changed] Firebase Data Connect has exited beta and is now generally available for use. - [changed] **Breaking Change:** Refactored the base `DataConnectError` error type to be a protocol instead of an enum and introduced concrete error types `DataConnectInitError`, `DataConnectCodecError`, `DataConnectOperationError`. Note that if you have code using a `switch` on the previous error enum, you will need to update that code. See the [PR] (https://github.com/firebase/data-connect-ios-sdk/pull/42) for a usage example and `DataConnectError.swift` for implementation details. - [added] Support for partial errors via the above mentioned `DataConnectOperationError`. diff --git a/Sources/Internal/Version.swift b/Sources/Internal/Version.swift index 0442f3b..1fc0bb1 100644 --- a/Sources/Internal/Version.swift +++ b/Sources/Internal/Version.swift @@ -18,7 +18,7 @@ import GoogleUtilities_Environment @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *) struct Version { - static let sdkVersion = "11.7.0" + static let sdkVersion = "11.7.1" // returns value of form gl-PLATFORM_NAME/PLATFORM_VERSION static func platformVersionHeader() -> String {