Skip to content

Commit

Permalink
chore/update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nank1ro committed Apr 12, 2024
1 parent ec653a2 commit 3b6e49b
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 55 deletions.
16 changes: 8 additions & 8 deletions examples/github_search/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ dependencies:
flutter_solidart: ^1.7.0
json_annotation: ^4.8.1
equatable: ^2.0.5
http: ^1.0.0
meta: ^1.9.1
url_launcher: ^6.1.11
http: ^1.2.1
meta: ^1.11.0
url_launcher: ^6.2.6

dev_dependencies:
flutter_test:
Expand All @@ -46,11 +46,11 @@ dev_dependencies:
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.1
custom_lint: ^0.5.0
solidart_lint: ^1.0.0
json_serializable: ^6.7.0
build_runner: ^2.4.5
flutter_lints: ^2.0.3
custom_lint: ^0.5.11
solidart_lint: ^1.1.0
json_serializable: ^6.7.1
build_runner: ^2.4.9

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
14 changes: 5 additions & 9 deletions examples/todos/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=2.18.6 <3.0.0"
sdk: ^3.0.0

# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
Expand All @@ -32,24 +32,20 @@ dependencies:
flutter:
sdk: flutter
flutter_solidart: ^1.7.0

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
uuid: ^3.0.7
uuid: ^4.4.0

dev_dependencies:
custom_lint: ^0.5.0
custom_lint: ^0.5.11
flutter_test:
sdk: flutter

solidart_lint: ^1.0.0
solidart_lint: ^1.1.0
# The "flutter_lints" package below contains a set of recommended lints to
# encourage good coding practices. The lint set provided by the package is
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
flutter_lints: ^2.0.3

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
12 changes: 4 additions & 8 deletions examples/toggle_theme/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=2.18.6 <3.0.0"
sdk: ^3.0.0

# Dependencies specify other packages that your package needs in order to work.
# To automatically upgrade your package dependencies to the latest versions
Expand All @@ -33,12 +33,8 @@ dependencies:
sdk: flutter
flutter_solidart: ^1.7.0

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2

dev_dependencies:
custom_lint: ^0.5.0
custom_lint: ^0.5.11
flutter_test:
sdk: flutter

Expand All @@ -47,8 +43,8 @@ dev_dependencies:
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
solidart_lint: ^1.0.0
flutter_lints: ^3.0.2
solidart_lint: ^1.1.0

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
4 changes: 4 additions & 0 deletions packages/flutter_solidart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.7.1

- Update dependencies

## 1.7.0

### Changes from solidart
Expand Down
12 changes: 4 additions & 8 deletions packages/flutter_solidart/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ environment:
dependencies:
flutter:
sdk: flutter
http: ^0.13.5

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
http: ^0.13.6
flutter_solidart: ^1.7.0

dev_dependencies:
Expand All @@ -47,9 +43,9 @@ dev_dependencies:
# activated in the `analysis_options.yaml` file located at the root of your
# package. See that file for information about deactivating specific lint
# rules and activating additional ones.
flutter_lints: ^2.0.0
custom_lint: ^0.5.0
solidart_lint: ^1.0.0
flutter_lints: ^3.0.2
custom_lint: ^0.6.4
solidart_lint: ^1.1.0

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec
Expand Down
2 changes: 1 addition & 1 deletion packages/flutter_solidart/lib/src/widgets/show.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class _ShowState<T extends bool> extends State<Show<T>> {
void initState() {
super.initState();
disposeEffect = Effect((_) {
show.value = widget.when();
show.value = widget.when.call();
});
}

Expand Down
10 changes: 5 additions & 5 deletions packages/flutter_solidart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_solidart
description: A simple State Management solution for Flutter applications inspired by SolidJS
version: 1.7.0
version: 1.7.1
repository: https://github.com/nank1ro/solidart
documentation: https://docs.page/nank1ro/solidart~dev
topics:
Expand All @@ -12,16 +12,16 @@ environment:
flutter: ">=1.17.0"

dependencies:
collection: ^1.17.2
collection: ^1.18.0
flutter:
sdk: flutter
meta: ^1.9.1
solidart: ^1.5.0
meta: ^1.11.0
solidart: ^1.5.4

dev_dependencies:
flutter_test:
sdk: flutter
mockito: ^5.4.2
mockito: ^5.4.4
very_good_analysis: ^5.1.0

flutter:
8 changes: 4 additions & 4 deletions packages/solidart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ environment:
sdk: ^3.0.0

dependencies:
collection: ^1.17.2
meta: ^1.9.1
collection: ^1.18.0
meta: ^1.11.0

dev_dependencies:
mockito: ^5.4.2
test: ^1.24.9
mockito: ^5.4.4
test: ^1.25.3
very_good_analysis: ^5.1.0
11 changes: 7 additions & 4 deletions packages/solidart_devtools_extension/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: solidart_devtools_extension
description: "solidart DevTools extension"
publish_to: "none"
version: 0.2.0
version: 0.2.1

environment:
sdk: ^3.0.0

dependencies:
flutter:
sdk: flutter
devtools_extensions: 0.0.9
devtools_app_shared: 0.0.5
devtools_extensions: 0.1.0
devtools_app_shared: 0.1.0
flutter_solidart:
path: ../flutter_solidart
collection: ^1.18.0
Expand All @@ -19,7 +19,10 @@ dev_dependencies:
flutter_test:
sdk: flutter

flutter_lints: ^2.0.0
flutter_lints: ^3.0.2

dependency_overrides:
vm_service: ^13.0.0

flutter:
uses-material-design: true
4 changes: 4 additions & 0 deletions packages/solidart_lint/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.1

- Update dependencies

## 1.1.0

- **CHORE**: Update `flutter_solidart` dependency
Expand Down
14 changes: 7 additions & 7 deletions packages/solidart_lint/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: solidart_lint
description: solidart_lint is a developer tool for users of solidart, designed to help stop common issues and simplify repetitive tasks
version: 1.1.0
version: 1.1.1
repository: https://github.com/nank1ro/solidart
documentation: https://docs.page/nank1ro/solidart
topics:
Expand All @@ -12,13 +12,13 @@ environment:
sdk: ^3.0.0

dependencies:
analyzer: ^6.2.0
analyzer: ^6.4.1
analyzer_plugin: ^0.11.3
collection: ^1.17.2
custom_lint_builder: ^0.5.5
collection: ^1.18.0
custom_lint_builder: ^0.6.4

dev_dependencies:
lints: ^3.0.0
test: ^1.24.9
solidart: ^1.2.0
flutter_solidart: ^1.5.0
test: ^1.25.2
solidart: ^1.5.4
flutter_solidart: ^1.7.0
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name: solidart_melos
environment:
sdk: ^3.0.0
dev_dependencies:
melos: ^3.1.0
melos: ^3.4.0

0 comments on commit 3b6e49b

Please sign in to comment.