Skip to content

Commit

Permalink
actions-dart-dependency-updater:
Browse files Browse the repository at this point in the history
  • Loading branch information
action committed May 28, 2024
1 parent 1978acf commit 4dbd5ec
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 91 deletions.
41 changes: 6 additions & 35 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [2.0.2+12] - May 28, 2024

* Automated dependency updates


## [2.0.2+11] - April 30, 2024

* Automated dependency updates
Expand Down Expand Up @@ -149,38 +154,4 @@

## [1.0.0] - July 5th, 2023

* Initial release


































* Initial release
46 changes: 20 additions & 26 deletions example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: 'example'
description: 'Example app for the JsonDynamicWidget library'
publish_to: 'none'
version: '1.0.0+13'
version: '1.0.0+14'

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+2'
json_dynamic_widget_plugin_js:
path: '../'
logging: '^1.2.0'
Expand All @@ -23,33 +23,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
54 changes: 24 additions & 30 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'json_dynamic_widget_plugin_js'
description: 'A plugin to the JSON Dynamic Widget to provide JS support to the widgets'
homepage: 'https://github.com/peiffer-innovations/json_dynamic_widget_plugin_js'
version: '2.0.2+11'
version: '2.0.2+12'

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -18,8 +18,8 @@ dependencies:
flutter_js: '^0.8.0'
js: '^0.7.1'
json_class: '^3.0.0+13'
json_dynamic_widget: '^7.1.0+7'
json_theme: '^6.4.1+5'
json_dynamic_widget: '^7.2.0+2'
json_theme: '^6.5.0+1'
logging: '^1.2.0'
meta: '^1.12.0'
uuid: '^4.4.0'
Expand All @@ -28,39 +28,33 @@ false_secrets:
- 'example/web/index.html'

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

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

0 comments on commit 4dbd5ec

Please sign in to comment.