Skip to content

Commit 64625ce

Browse files
Update CHANGELOG for 11.7.2 (#57)
1 parent 41aed3a commit 64625ce

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.github/workflows/spm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
FIREBASE_MAIN: 1
3333
steps:
3434
- uses: actions/checkout@v4
35+
- name: Xcode
36+
run: sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer
3537
- name: Generate Swift Package.resolved
3638
id: swift_package_resolve
3739
run: |
@@ -71,8 +73,6 @@ jobs:
7173
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
7274
- name: Setup Scripts Directory
7375
run: ./setup-scripts.sh
74-
- name: Install iOS Platform
75-
run: xcodebuild -downloadPlatform iOS
7676
- name: Integration Test Setup
7777
run: Tests/Integration/Emulator/start-emulator.sh
7878
- name: Unit and Integration Tests

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 11.7.2
2+
- [fixed] `DataConnectOperationError` now includes underlying server error messages in the debug description instead of a generic decoding error. [#14945](https://github.com/firebase/firebase-ios-sdk/issues/14945)
3+
14
# 11.7.1
25
- [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`.
36

Sources/Internal/Version.swift

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import GoogleUtilities_Environment
1818

1919
@available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *)
2020
struct Version {
21-
static let sdkVersion = "11.7.1"
21+
static let sdkVersion = "11.7.2"
2222

2323
// returns value of form gl-PLATFORM_NAME/PLATFORM_VERSION
2424
static func platformVersionHeader() -> String {
@@ -30,7 +30,11 @@ struct Version {
3030

3131
// returns the build time major version of swift
3232
static func swiftVersion() -> String {
33-
#if swift(>=6)
33+
#if swift(>=6.2)
34+
return "6.2"
35+
#elseif swift(>=6.1)
36+
return "6.1"
37+
#elseif swift(>=6)
3438
return "6"
3539
#elseif swift(>=5.10)
3640
return "5.10"

0 commit comments

Comments
 (0)