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 Nov 19, 2024
1 parent a4f4b5c commit 8025526
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 68 deletions.
44 changes: 6 additions & 38 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [1.0.1+8] - November 19, 2024

* Automated dependency updates


## [1.0.1+7] - May 14, 2024

* Automated dependency updates
Expand Down Expand Up @@ -180,41 +185,4 @@

## [1.0.0] - April 3rd, 2023

* Initial release





































* Initial release
4 changes: 2 additions & 2 deletions examples/receiver/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: 'receiver'
publish_to: 'none'
version: '1.0.0+3'
version: '1.0.0+4'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
flutter:
sdk: 'flutter'
logging: '^1.2.0'
logging: '^1.3.0'
screen_streamer:
path: '../../'

Expand Down
4 changes: 2 additions & 2 deletions examples/sender/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: 'sender'
publish_to: 'none'
version: '1.0.0+3'
version: '1.0.0+4'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
flutter:
sdk: 'flutter'
logging: '^1.2.0'
logging: '^1.3.0'
screen_streamer:
path: '../../'

Expand Down
47 changes: 21 additions & 26 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: 'screen_streamer'
description: "A library that can stream an android, ios, etc. Flutter application's screen using WebRTC"
homepage: 'https://github.com/peiffer-innovations/screen_streamer'
version: '1.0.1+7'
version: '1.0.1+8'

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
device_info_plus: '^10.1.0'
device_info_plus: '^11.1.1'
flutter:
sdk: 'flutter'
flutter_background_service: '^5.0.5'
flutter_webrtc: '^0.10.6'
logging: '^1.2.0'
flutter_background_service: '^5.0.10'
flutter_webrtc: '^0.12.1+hotfix.1'
logging: '^1.3.0'
sdp_transform: '^0.3.2'
web_socket_channel: '^2.4.0'

Expand All @@ -22,29 +22,24 @@ dev_dependencies:
sdk: 'flutter'

permittedLicenses:
- Apache-2.0
- BSD-2-Clause
- BSD-3-Clause
- MIT
- MIT-Modern-Variant
- MPL-2.0
- Zlib
- '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:
- 'archive'
Expand Down

0 comments on commit 8025526

Please sign in to comment.