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

BOT: Dart Dependency Updater #235

Merged
merged 3 commits into from
Nov 30, 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
6 changes: 6 additions & 0 deletions json_theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [6.5.4] - November 30th, 2024

* Updated dependency on example for `intl`.
* Updated `json_class` dependency due to `intl`.


## [6.5.3+6] - November 12, 2024

* Automated dependency updates
Expand Down
36 changes: 18 additions & 18 deletions json_theme/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
name: 'example'
description: 'Example application for the JSON Theme'
publish_to: 'none'
version: '1.0.0+41'
version: '1.0.0+42'

environment:
environment:
sdk: '>=3.3.0 <4.0.0'

dependencies:
flutter:
dependencies:
flutter:
sdk: 'flutter'
form_validation: '^3.1.1+8'
form_validation: '^3.2.0'
google_fonts: '^6.2.1'
intl: '^0.19.0'
json_theme:
intl: '>=0.19.0<1.0.0'
json_theme:
path: '../'
meta: '^1.12.0'

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

flutter:
flutter:
uses-material-design: true
assets:
assets:
- 'assets/themes/'
fonts:
fonts:
- family: 'lato'
fonts:
fonts:
- asset: 'assets/fonts/Lato-Regular.ttf'
- family: 'metal'
fonts:
fonts:
- asset: 'assets/fonts/MetalMania-Regular.ttf'
- family: 'MaterialIcons'
fonts:
fonts:
- asset: 'assets/fonts/MaterialIcons-Regular.ttf'

permittedLicenses:
permittedLicenses:
- 'Apache-2.0'
- 'BSD-2-Clause'
- 'BSD-3-Clause'
Expand All @@ -45,7 +45,7 @@ permittedLicenses:
- 'MPL-2.0'
- 'Zlib'

packageLicenseOverride:
packageLicenseOverride:
flutter: 'BSD-3-Clause'
flutter_driver: 'BSD-3-Clause'
flutter_goldens: 'BSD-3-Clause'
Expand All @@ -56,7 +56,7 @@ packageLicenseOverride:
integration_test: 'BSD-3-Clause'
rxdart: 'Apache-2.0'

ignore_updates:
ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down
4 changes: 2 additions & 2 deletions json_theme/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'json_theme'
description: 'A library to dynamically generate a ThemeData object from a JSON file or dynamic map object'
homepage: 'https://github.com/peiffer-innovations/json_theme'
version: '6.5.3+6'
version: '6.5.4'

environment:
sdk: '>=3.2.0 <4.0.0'
Expand All @@ -14,7 +14,7 @@ analyzer:
dependencies:
flutter:
sdk: 'flutter'
json_class: '^3.0.0+16'
json_class: '^3.0.1'
json_schema: '^5.2.0'
json_theme_annotation: '^1.0.3+11'
logging: '^1.3.0'
Expand Down