diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index a1f18f949..b8c9855aa 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -12,21 +12,21 @@ jobs: fail-fast: false matrix: test_targets: - - XCODE_VERSION: '16.1.0' + - HOST_OS: 'macos-15' + XCODE_VERSION: '16.1.0' IOS_VERSION: '18.1' IOS_MODEL: iPhone 16 Plus - - XCODE_VERSION: '16.0.0' - IOS_VERSION: '18.0' - IOS_MODEL: iPhone 16 Plus - - XCODE_VERSION: '15.3' + - HOST_OS: 'macos-14' + XCODE_VERSION: '15.3' IOS_VERSION: '17.4' IOS_MODEL: iPhone 15 Plus - - XCODE_VERSION: 14.3.1 + - HOST_OS: 'macos-13' + XCODE_VERSION: 14.3.1 IOS_VERSION: '16.4' IOS_MODEL: iPhone 14 Plus # https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md - runs-on: macos-14 + runs-on: ${{matrix.test_targets.HOST_OS}} steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 diff --git a/CHANGELOG.md b/CHANGELOG.md index d1af845b2..1a56783d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [8.11.1](https://github.com/appium/WebDriverAgent/compare/v8.11.0...v8.11.1) (2024-11-11) + +### Miscellaneous Chores + +* bump appium-ios-device ([#955](https://github.com/appium/WebDriverAgent/issues/955)) ([021f349](https://github.com/appium/WebDriverAgent/commit/021f34901866f4a7870914c00781b83bd0cbddc4)) + ## [8.11.0](https://github.com/appium/WebDriverAgent/compare/v8.10.1...v8.11.0) (2024-11-11) ### Features diff --git a/WebDriverAgentLib/Info.plist b/WebDriverAgentLib/Info.plist index 9fd975595..ead3f644e 100644 --- a/WebDriverAgentLib/Info.plist +++ b/WebDriverAgentLib/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 8.11.0 + 8.11.1 CFBundleSignature ???? CFBundleVersion - 8.11.0 + 8.11.1 NSPrincipalClass diff --git a/package.json b/package.json index a678782cd..a06baeeeb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "appium-webdriveragent", - "version": "8.11.0", + "version": "8.11.1", "description": "Package bundling WebDriverAgent", "main": "./build/index.js", "types": "./build/index.d.ts", @@ -76,7 +76,7 @@ "@appium/base-driver": "^9.0.0", "@appium/strongbox": "^0.x", "@appium/support": "^5.0.3", - "appium-ios-device": "^2.5.0", + "appium-ios-device": "^2.7.25", "appium-ios-simulator": "^6.0.0", "async-lock": "^1.0.0", "asyncbox": "^3.0.0",