Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into feat_add-stackTra…
Browse files Browse the repository at this point in the history
…ce-to-viewModel-onError
  • Loading branch information
Pebkac03 committed Jan 4, 2025
2 parents fbd509c + 3d2a6f5 commit 6574d42
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Package and Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.REPO_DEPLOYMENT_TOKEN }}
- uses: subosito/flutter-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:
name: Linting and Testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: dart format --fix --set-exit-if-changed .
- run: flutter analyze
# - run: flutter analyze # removing analyze for now, we only care about test passing
- run: flutter test --coverage
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v3
uses: zgosalvez/github-actions-report-lcov@v4
with:
coverage-files: coverage/lcov*.info
artifact-name: code-coverage-report
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [3.4.4](https://github.com/Stacked-Org/stacked/compare/v3.4.3...v3.4.4) (2024-12-12)


### Bug Fixes

* **deps:** update dependency get_it to v8 ([#1128](https://github.com/Stacked-Org/stacked/issues/1128)) ([4398fed](https://github.com/Stacked-Org/stacked/commit/4398fed7cef851d11223cf93d6858ef34e84ac76))

## [3.4.3](https://github.com/Stacked-Org/stacked/compare/v3.4.2...v3.4.3) (2024-06-24)


Expand Down
20 changes: 10 additions & 10 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: stacked
description: The framework to build testable, scalable and maintainable flutter apps
version: 3.4.3
version: 3.4.4
homepage: https://github.com/FilledStacks/stacked
platforms:
android:
Expand All @@ -11,21 +11,21 @@ platforms:
windows:

environment:
sdk: '>=2.17.0 <3.0.0'
sdk: ">=3.5.0 <4.0.0"

dependencies:
flutter:
sdk: flutter
get_it: ^7.1.4
meta: ^1.3.0
provider: ^6.0.0
collection: ^1.15.0
get_it: ^8.0.2
meta: ^1.15.0
provider: ^6.1.2
collection: ^1.18.0
# Remove the path and use pub one after publish the stacked_shared
stacked_shared: ^1.3.1
universal_io: ^2.0.4
path: ^1.8.2
stacked_shared: ^1.4.2
universal_io: ^2.2.2
path: ^1.9.0

dev_dependencies:
flutter_lints: ^2.0.1
flutter_lints: ^5.0.0
flutter_test:
sdk: flutter

0 comments on commit 6574d42

Please sign in to comment.