Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
ad4b0c5
Update max parrallel
jamesnrokt Dec 10, 2025
146518d
test: SDKE-632 Add New Integration Tests (#461)
denischilik Dec 8, 2025
71fe8b7
feat: Implement Manual Scene Delegate Support (#462)
BrandonStalnaker Dec 9, 2025
33df791
fix: Simulator not found failing CI (#472)
jamesnrokt Dec 10, 2025
142b6c1
chore: SDKE-538 Integrate Test Scripts into CI/CD for iOS (#464)
denischilik Dec 11, 2025
28b374e
chore: Align concurrency and branch rules (#474)
jamesnrokt Dec 11, 2025
6cb3475
fix: Flakey test testLoggingCommerceEventToUpload (#475)
jamesnrokt Dec 11, 2025
e6d03fb
test: Fix device test to not use hard coded country (#476)
jamesnrokt Dec 11, 2025
b51774d
chore: Replace C++ Kit Bracket code (#470)
jamesnrokt Dec 11, 2025
5241667
fix: Crash on launch when upgrading due to NSInvalidUnarchiveOperatio…
denischilik Dec 12, 2025
d78a8ec
feat: Add trunk rule to detect mParticle API keys (#481)
jamesnrokt Jan 12, 2026
9f56a05
fix: Rokt User Attribute Mapping Fix (#478)
BrandonStalnaker Jan 12, 2026
a9ab226
fix: Handle Parenthesis in Release Notes (#487)
BrandonStalnaker Jan 14, 2026
16fa905
fix: Use awk for changelog (#488)
BrandonStalnaker Jan 14, 2026
688058e
chore: Format files with Trunk (#490)
jamesnrokt Jan 14, 2026
6ef2319
chore: Fix trunk issues run_integration_tests_ci.sh (#491)
jamesnrokt Jan 14, 2026
6057e0c
chore: Release 8.41.0 (#494)
BrandonStalnaker Jan 15, 2026
19f8265
ci: Add Manual Release Workflow (#499)
BrandonStalnaker Jan 20, 2026
e235073
fix:Correct Manual Release Action (#503)
BrandonStalnaker Jan 20, 2026
291f815
chore: Release v8.41.0 (#504)
mparticle-automation Jan 20, 2026
d765ad3
chore: Release v8.41.1 (#506)
mparticle-automation Jan 20, 2026
5491890
chore: Fix common trunk issues (#510)
jamesnrokt Jan 20, 2026
0194a6c
chore: fix CHANGELOG.md entry for 8.41.0 (#509)
BrandonStalnaker Jan 20, 2026
32f8c68
ci: generate size reports (#496)
jamesnrokt Jan 20, 2026
f833c25
chore: bump actions/checkout from 5 to 6 (#458)
dependabot[bot] Jan 20, 2026
2698a7a
feat: Update mappings during the release process (#497)
denischilik Jan 20, 2026
d632511
chore: bump actions/upload-artifact from 5 to 6 (#479)
dependabot[bot] Jan 20, 2026
656a9d6
Merge branch 'main' into chore/update-workstation-9.0-from-main
jamesnrokt Jan 20, 2026
ba3e569
Correct duplicated code and target
jamesnrokt Jan 20, 2026
595bc14
Update measure_size.sh
jamesnrokt Jan 20, 2026
a01c3ab
Update local SPM version is size reporting
jamesnrokt Jan 20, 2026
2c64ab8
Remove duplicated entries
jamesnrokt Jan 20, 2026
16486e9
Merge branch 'workstation/9.0-Release' into chore/update-workstation-…
jamesnrokt Jan 21, 2026
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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Trunk Check
uses: trunk-io/trunk-action@v1

pod-lint:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: macOS-15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-secondary-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Secondary Platforms iOS Build

on:
workflow_dispatch:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand All @@ -18,7 +19,7 @@ jobs:
working-directory: ./RNExample/ios
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cross-platform-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: macOS-15
steps:
- name: "Checkout Cross Platform Tests"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: "true"
repository: mParticle/crossplatform-sdk-tests
fetch-depth: 1
- name: "Checkout iOS SDK"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
path: .sdks/apple
Expand All @@ -40,7 +40,7 @@ jobs:
run: ./gradlew runIos
- name: Archive Test Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ios-test-results
path: Users/runner/Library/Developer/Xcode/DerivedData
12 changes: 6 additions & 6 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ permissions:
contents: read

env:
XCODE_VERSION: "16.4"
XCODE_VERSION: 16.4
WORKING_DIRECTORY: IntegrationTests
WIREMOCK_VERSION: "3.9.1"
WIREMOCK_VERSION: 3.9.1

jobs:
integration-tests:
Expand All @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app
Expand All @@ -35,8 +35,8 @@ jobs:
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
distribution: temurin
java-version: 17

- name: Download WireMock standalone
run: |
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload artifacts on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: integration-test-artifacts
path: ${{ env.WORKING_DIRECTORY }}/artifacts/
Expand Down
Loading
Loading