Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.

Expand Down
2 changes: 1 addition & 1 deletion Sources/Internal/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading