Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(version): Bump version #5167

Merged
merged 8 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@
**/pigeons/*.h linguist-generated
**/pigeons/*.m linguist-generated

## Generated by Drift
**/*.drift.dart

## Generated SDK files
packages/**/lib/src/sdk/src/** linguist-generated

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Launches an iOS simulator and caches it for further action runs
inputs:
ios-version:
description: The iOS version
default: "latest"
default: "17.5"
runs:
using: "node16"
main: "dist/index.mjs"
34 changes: 17 additions & 17 deletions .github/composite_actions/launch_ios_simulator/dist/main.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .github/composite_actions/log_cw_metric/dist/main.cjs.map

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions .github/composite_actions/setup_chromedriver/dist/main.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
sdk: 3.3.0

- name: Setup pnpm
uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # 2.4.0
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # 4.0.0
with:
version: 8
version: 9

- name: Get Packages
working-directory: actions
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
matrix:
ios-version:
- "15.0"
- "latest"
- "17.5"
steps:
- name: Git Checkout
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amplify_canaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
flutter-version: "3.19.0"
ios-version:
- "15.0"
- "latest"
- "17.5"
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0
with:
Expand Down
6 changes: 5 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,13 @@ Some platforms require additional setup. See below for details.
`libsecret` and `glib` are required for some plugins. They can be installed on Debian based linux distributions such as Ubuntu by running the command below.

```sh
sudo apt-get update && sudo apt-get install libsecret-1-dev libglib2.0-dev
sudo apt update && sudo apt install libsecret-1-dev libglib2.0-dev
```
For RPM-based Linux distributions such as Fedora, CentOS, or RHEL, you can install `libsecret` and `glib` by running the following command:

```sh
sudo dnf update && sudo dnf install libsecret-devel glib2-devel
```
**VS Code Remote Container**

[VS Code Remote Containers](https://code.visualstudio.com/docs/remote/containers) can be used for linux development. `/devcontainer` contains a Dockerfile that will install the required dependencies.
Expand Down
5 changes: 4 additions & 1 deletion actions/bin/launch_ios_simulator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ import 'package:collection/collection.dart';

Future<void> main(List<String> args) => wrapMain(launch);

// TODO(equartey): Refactor to enable downloading of iOS 18 runtimes given
// Apple's breaking change which `Xcodes` does not yet support.
// https://github.com/XcodesOrg/xcodes/releases/tag/1.5.0
Future<void> launch() async {
await installXcodes();
final iosVersionArg = core.getInput('ios-version');
final iosVersion =
iosVersionArg == 'latest' ? await getLatest() : 'iOS $iosVersionArg';
Expand All @@ -24,7 +28,6 @@ Future<void> launch() async {
);
if (runtimeIdentifier == null) {
core.info('No runtime found for $iosVersion');
await installXcodes();
await installRuntime(iosVersion);
}
runtimeIdentifier = await core.withGroup(
Expand Down
2 changes: 1 addition & 1 deletion actions/bin/launch_ios_simulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Launches an iOS simulator and caches it for further action runs
inputs:
ios-version:
description: The iOS version
default: "latest"
default: "17.5"
runs:
using: "node16"
main: "dist/index.mjs"
Loading
Loading