Skip to content

Commit

Permalink
Merge branch 'master' into mila/fix-limbo-bug
Browse files Browse the repository at this point in the history
  • Loading branch information
milaGGL committed Nov 10, 2023
2 parents 9bc6625 + 08733c4 commit 0da6821
Show file tree
Hide file tree
Showing 108 changed files with 1,260 additions and 10,306 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ jobs:
include:
- os: macos-12
xcode: Xcode_14.2
tests: --test-specs=unit
- os: macos-13
xcode: Xcode_15.0.1
tests: --skip-tests
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand All @@ -42,7 +44,7 @@ jobs:
- name: Xcode
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app/Contents/Developer
- name: Build and test
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDatabase.podspec --test-specs=unit --platforms=${{ matrix.target }}
run: scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseDatabase.podspec ${{ matrix.tests }} --platforms=${{ matrix.target }}

integration:
# Don't run on private repo unless it is a PR.
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/firestore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ jobs:
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: ${{ runner.os }}-mint-

- uses: actions/setup-python@v4
with:
python-version: '3.7'

- name: Setup build
run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake

Expand Down Expand Up @@ -176,6 +180,10 @@ jobs:
key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }}
restore-keys: ${{ runner.os }}-mint-

- uses: actions/setup-python@v4
with:
python-version: '3.7'

- name: Install Secret GoogleService-Info.plist
run: scripts/decrypt_gha_secret.sh scripts/gha-encrypted/firestore.plist.gpg \
Firestore/Example/App/GoogleService-Info.plist "$plist_secret"
Expand Down Expand Up @@ -252,6 +260,10 @@ jobs:
restore-keys: |
${{ matrix.sanitizer }}-firestore-ccache-${{ runner.os }}-
- uses: actions/setup-python@v4
with:
python-version: '3.7'

- name: Setup build
run: scripts/install_prereqs.sh Firestore ${{ runner.os }} cmake

Expand Down
471 changes: 236 additions & 235 deletions CoreOnly/NOTICES

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion FirebaseAppCheck.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Pod::Spec.new do |s|
s.osx.weak_framework = 'DeviceCheck'
s.tvos.weak_framework = 'DeviceCheck'

s.dependency 'AppCheckCore', '~> 10.18'
s.dependency 'FirebaseAppCheckInterop', '~> 10.17'
s.dependency 'FirebaseCore', '~> 10.0'
s.dependency 'PromisesObjC', '~> 2.1'
Expand Down Expand Up @@ -93,7 +94,6 @@ Pod::Spec.new do |s|
}
swift_unit_tests.source_files = [
base_dir + 'Tests/Unit/Swift/**/*.swift',
base_dir + 'Tests/Unit/Swift/**/*.h',
]
end

Expand Down
4 changes: 4 additions & 0 deletions FirebaseAppCheck/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 10.18.0
- [changed] Extracted core `FirebaseAppCheck` functionality into a new
[`AppCheckCore`](https://github.com/google/app-check) dependency. (#12067)

# 10.17.0
- [fixed] Added invalid key error handling in App Attest key attestation. (#11986)
- [fixed] Replaced semantic imports (`@import FirebaseAppCheckInterop`) with umbrella header imports
Expand Down

This file was deleted.

Loading

0 comments on commit 0da6821

Please sign in to comment.