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 #84

Merged
merged 1 commit into from
Jul 2, 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
69 changes: 6 additions & 63 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [4.0.0+21] - July 2, 2024

* Automated dependency updates


## [4.0.0+20] - April 30, 2024

* Automated dependency updates
Expand Down Expand Up @@ -370,66 +375,4 @@

## [1.0.0+1] - December 1st, 2021

* Initial release






























































* Initial release
50 changes: 22 additions & 28 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: 'example'
description: 'Example app for the JsonDynamicWidget library'
publish_to: 'none'
version: '1.0.0+17'
version: '1.0.0+18'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
flutter:
sdk: 'flutter'
json_dynamic_widget: '^7.1.0+7'
json_dynamic_widget: '^7.2.0+6'
json_dynamic_widget_plugin_material_icons:
path: '../'
json_theme: '^6.4.1+5'
json_theme: '^6.5.0+1'
logging: '^1.2.0'
material_icons_named: '^3.16.0'
material_icons_named: '^3.16.0+1'

dev_dependencies:
flutter_test:
Expand All @@ -25,33 +25,27 @@ flutter:
assets:
- 'assets/pages/'

permittedLicenses:
- Apache-2.0
- BSD-2-Clause
- BSD-3-Clause
- MIT
- MIT-Modern-Variant
- MPL-2.0
- Zlib
permittedLicenses:
- 'Apache-2.0'
- 'BSD-2-Clause'
- 'BSD-3-Clause'
- 'MIT'
- 'MIT-Modern-Variant'
- 'MPL-2.0'
- 'Zlib'

# The [license_checker](https://pub.dev/packages/license_checker) package cannot
# detect the built in Flutter packages because they aren't published to pub.dev
# and do not have a LICENSE file in their respective folders. So this section
# informs the license_checker that all the built in Flutter packages all have
# the same BSD-3-Clause license as Flutter itself.
packageLicenseOverride:
flutter: BSD-3-Clause
flutter_driver: BSD-3-Clause
flutter_goldens: BSD-3-Clause
flutter_localizations: BSD-3-Clause
flutter_web_plugins: BSD-3-Clause
flutter_test: BSD-3-Clause
fuchsia_remote_debug_protocol: BSD-3-Clause
integration_test: BSD-3-Clause
rxdart: Apache-2.0
flutter: 'BSD-3-Clause'
flutter_driver: 'BSD-3-Clause'
flutter_goldens: 'BSD-3-Clause'
flutter_localizations: 'BSD-3-Clause'
flutter_web_plugins: 'BSD-3-Clause'
flutter_test: 'BSD-3-Clause'
fuchsia_remote_debug_protocol: 'BSD-3-Clause'
integration_test: 'BSD-3-Clause'
rxdart: 'Apache-2.0'

ignore_updates:

ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down
58 changes: 26 additions & 32 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'json_dynamic_widget_plugin_material_icons'
description: 'A plugin to the JSON Dynamic Widget to provide String name support for Material Icons'
homepage: 'https://github.com/peiffer-innovations/json_dynamic_widget_plugin_material_icons'
version: '4.0.0+20'
version: '4.0.0+21'

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -15,51 +15,45 @@ dependencies:
child_builder: '^2.0.2'
flutter:
sdk: 'flutter'
json_class: '^3.0.0+13'
json_dynamic_widget: '^7.1.0+7'
json_theme: '^6.4.1+5'
json_class: '^3.0.0+15'
json_dynamic_widget: '^7.2.0+6'
json_theme: '^6.5.0+1'
logging: '^1.2.0'
material_icons_named: '^3.16.0'
material_icons_named: '^3.16.0+1'
meta: '^1.12.0'
uuid: '^4.4.0'

false_secrets:
- 'example/web/index.html'

dev_dependencies:
build_runner: '^2.4.9'
flutter_lints: '^3.0.2'
build_runner: '^2.4.11'
flutter_lints: '^4.0.0'
flutter_test:
sdk: 'flutter'
json_dynamic_widget_codegen: '^1.0.5+8'
json_dynamic_widget_codegen: '^1.0.6+4'

permittedLicenses:
- Apache-2.0
- BSD-2-Clause
- BSD-3-Clause
- MIT
- MIT-Modern-Variant
- MPL-2.0
- Zlib
permittedLicenses:
- 'Apache-2.0'
- 'BSD-2-Clause'
- 'BSD-3-Clause'
- 'MIT'
- 'MIT-Modern-Variant'
- 'MPL-2.0'
- 'Zlib'

# The [license_checker](https://pub.dev/packages/license_checker) package cannot
# detect the built in Flutter packages because they aren't published to pub.dev
# and do not have a LICENSE file in their respective folders. So this section
# informs the license_checker that all the built in Flutter packages all have
# the same BSD-3-Clause license as Flutter itself.
packageLicenseOverride:
flutter: BSD-3-Clause
flutter_driver: BSD-3-Clause
flutter_goldens: BSD-3-Clause
flutter_localizations: BSD-3-Clause
flutter_web_plugins: BSD-3-Clause
flutter_test: BSD-3-Clause
fuchsia_remote_debug_protocol: BSD-3-Clause
integration_test: BSD-3-Clause
rxdart: Apache-2.0
flutter: 'BSD-3-Clause'
flutter_driver: 'BSD-3-Clause'
flutter_goldens: 'BSD-3-Clause'
flutter_localizations: 'BSD-3-Clause'
flutter_web_plugins: 'BSD-3-Clause'
flutter_test: 'BSD-3-Clause'
fuchsia_remote_debug_protocol: 'BSD-3-Clause'
integration_test: 'BSD-3-Clause'
rxdart: 'Apache-2.0'

ignore_updates:

ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down