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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
38 changes: 6 additions & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.0.2+14] - May 28, 2024

* Automated dependency updates


## [1.0.2+13] - November 28, 2023

* Automated dependency updates
Expand Down Expand Up @@ -170,35 +175,4 @@

## [0.9.0] - April 16th, 2022

* Beta release































* Beta release
6 changes: 3 additions & 3 deletions example/client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: 'client'
description: 'A new Flutter project.'
publish_to: 'none'
version: '1.0.0+25'
version: '1.0.0+26'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
flutter:
sdk: 'flutter'
flutter_svg: '^2.0.9'
flutter_svg: '^2.0.10+1'
rest_client: '^2.4.0'

dev_dependencies:
flutter_test:
sdk: 'flutter'
flutter_lints: '^3.0.1'
flutter_lints: '^4.0.0'

flutter:
uses-material-design: true
10 changes: 5 additions & 5 deletions example/server/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: 'dynamic_service_example'
description: 'An example of the Dart based dynamic_service'
version: '1.0.0+15'
version: '1.0.0+16'
publish_to: 'none'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
args: '^2.4.2'
args: '^2.5.0'
dynamic_service:
path: '../../'
shelf_cors_headers: '^0.1.5'

dev_dependencies:
build_runner: '^2.4.7'
dependency_validator: '^3.2.3'
build_runner: '^2.4.10'
dependency_validator: '^4.0.0'
functions_framework_builder: '^0.4.10'
test: '^1.24.9'
test: '^1.25.5'
test_process: '^2.1.0'
30 changes: 15 additions & 15 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'dynamic_service'
description: 'A Dart based service for handling dynamic requests and responses'
homepage: 'https://github.com/peiffer-innovations/dynamic_service'
version: '1.0.2+13'
version: '1.0.2+14'

environment:
sdk: '>=3.0.0 <4.0.0'
Expand All @@ -10,28 +10,28 @@ dependencies:
collection: '^1.16.0'
crypto: '^3.0.1'
encrypt: '^5.0.3'
http: '^1.1.2'
intl: '^0.18.1'
http: '^1.2.1'
intl: '^0.19.0'
jose: '^0.3.4'
json_class: '^3.0.0+8'
json_path: '^0.6.6'
json_class: '^3.0.0+13'
json_path: '^0.7.1'
json_schema2: '^5.1.3'
latlong2: '^0.9.0'
latlong2: '^0.9.1'
logging: '^1.2.0'
meta: '^1.9.1'
mime: '^1.0.4'
mime: '^1.0.5'
rest_client: '^2.4.0'
shelf: '^1.4.1'
template_expressions: '^3.1.5'
uuid: '^4.2.1'
x509: '^0.2.4'
yaon: '^1.1.4'
template_expressions: '^3.2.0+7'
uuid: '^4.4.0'
x509: '^0.2.4+2'
yaon: '^1.1.4+10'

dev_dependencies:
args: '^2.4.2'
dependency_validator: '^3.2.3'
flutter_lints: '^3.0.1'
test: '^1.24.9'
args: '^2.5.0'
dependency_validator: '^4.0.0'
flutter_lints: '^4.0.0'
test: '^1.25.5'
test_process: '^2.1.0'

false_secrets:
Expand Down