-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1880 from smartdevicelink/release/5.7.0_RC
Release 5.7.0
- Loading branch information
Showing
38 changed files
with
778 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: GitHub CI | |
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
test: | ||
test_Android: | ||
runs-on: macOS-latest | ||
steps: | ||
|
||
|
@@ -15,7 +15,7 @@ jobs: | |
- name: Setup JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
java-version: 11 | ||
|
||
- name: Sdl Android Tests | ||
# For more info, please check out: https://github.com/marketplace/actions/android-emulator-runner | ||
|
@@ -26,6 +26,25 @@ jobs: | |
|
||
- name: Hello Sdl Android Tests | ||
run: ./android/gradlew -p ./android/hello_sdl_android test | ||
|
||
- name: Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
yml: ./codecov.yml | ||
|
||
test_Java: | ||
runs-on: macOS-latest | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Setup JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
|
||
- name: Sdl JavaSE Tests | ||
run: ./javaSE/gradlew -p ./javaSE/javaSE test | ||
|
@@ -36,7 +55,3 @@ jobs: | |
- name: Sdl JavaEE Tests | ||
run: ./javaEE/gradlew -p ./javaEE/javaEE test | ||
|
||
- name: Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
yml: ./codecov.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,49 @@ | ||
# 5.6.1 Release Notes | ||
# 5.7.0 Release Notes | ||
|
||
## Summary: | ||
|
||
|| Version| | ||
|---|---| | ||
| **Protocol** | 5.4.1 | | ||
| **RPC** | 8.0.0 | | ||
| **Tested Targeting** | Android 33 | | ||
| **Tested Targeting** | Android 34 | | ||
|
||
## Bug Fix / Enhancements: | ||
|
||
- [Nearby Devices permission on Android 12 and Above #1839](https://github.com/smartdevicelink/sdl_java_suite/issues/1839) | ||
- [Add pending intent to ping intents] (https://github.com/smartdevicelink/sdl_java_suite/pull/1844 | ||
|
||
- [Fixes #1845 typo in SdlBroadcastReceiver for uncaughtException handler](https://github.com/smartdevicelink/sdl_java_suite/pull/1846 | ||
|
||
- [Bugfix/issue #1842 - NPE in BaseTextAndGraphicsManager](https://github.com/smartdevicelink/sdl_java_suite/pull/1847 | ||
|
||
- [Fix case for UncaughtExceptionHandler in SdlBroadcastReceiver for RemoteServiceException](https://github.com/smartdevicelink/sdl_java_suite/pull/1849 | ||
|
||
- [Update gradle to 7.4.2](https://github.com/smartdevicelink/sdl_java_suite/pull/1853 | ||
|
||
- [Fix NPE in SdlRouterService](https://github.com/smartdevicelink/sdl_java_suite/pull/1870 | ||
|
||
- [Bugfix/issue 1867 Bluetooth notification error fix](https://github.com/smartdevicelink/sdl_java_suite/pull/1868 | ||
|
||
- [Clean LifecycleManager before closing](https://github.com/smartdevicelink/sdl_java_suite/pull/1866 | ||
|
||
- [Move router service message sending to its own thread](https://github.com/smartdevicelink/sdl_java_suite/pull/1871 | ||
|
||
- [Bugfix/issue 1863 update gradle build variants for hello_sdl](https://github.com/smartdevicelink/sdl_java_suite/pull/1864 | ||
|
||
- [Android 14 add package to PendingIntents in RouterService](https://github.com/smartdevicelink/sdl_java_suite/pull/1862 | ||
|
||
- [Android 14 Runtime registered broadcast receivers export behavior](https://github.com/smartdevicelink/sdl_java_suite/pull/1858 | ||
|
||
- [Add logic to handle RAI response failure](https://github.com/smartdevicelink/sdl_java_suite/pull/1873 | ||
|
||
- [Android 14 foreground service type required](https://github.com/smartdevicelink/sdl_java_suite/pull/1860 | ||
|
||
- [Update integration validator with latest permissions and checks for exported](https://github.com/smartdevicelink/sdl_java_suite/pull/1875 | ||
|
||
- [Fix SDLLockScreenActivityEspressoTest for newer devices](https://github.com/smartdevicelink/sdl_java_suite/pull/1877 | ||
|
||
- [Remove only app logic for device listener start](https://github.com/smartdevicelink/sdl_java_suite/pull/1879) | ||
|
||
- [Fix NPE in TransportBroker](https://github.com/smartdevicelink/sdl_java_suite/pull/1882) | ||
|
||
**Full Changelog**: https://github.com/smartdevicelink/sdl_java_suite/compare/5.6.1...RC_5.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.6.1 | ||
5.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.