Skip to content

Commit df3dd66

Browse files
jonahwilliamsEgor
authored and
Egor
committed
[versions] increase package:platform constraint (flutter#2934)
package:platform required a breaking change in the behavior of FakePlatform in order to enable null safety, but there will be no other breaking changes in 3.X Since this does not affect path provider or local_auth, the pubspec constraint can be increased.
1 parent 235107f commit df3dd66

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

packages/local_auth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.3
2+
3+
* Increase upper range of `package:platform` constraint to allow 3.X versions.
4+
15
## 0.6.2+4
26

37
* Update package:e2e reference to use the local version in the flutter/plugins

packages/local_auth/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: local_auth
22
description: Flutter plugin for Android and iOS device authentication sensors
33
such as Fingerprint Reader and Touch ID.
44
homepage: https://github.com/flutter/plugins/tree/master/packages/local_auth
5-
version: 0.6.2+4
5+
version: 0.6.3
66

77
flutter:
88
plugin:
@@ -18,7 +18,7 @@ dependencies:
1818
sdk: flutter
1919
meta: ^1.0.5
2020
intl: ">=0.15.1 <0.17.0"
21-
platform: ^2.0.0
21+
platform: ">=2.0.0 <4.0.0"
2222
flutter_plugin_android_lifecycle: ^1.0.2
2323

2424
dev_dependencies:

packages/path_provider/path_provider_platform_interface/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.3
2+
3+
* Increase upper range of `package:platform` constraint to allow 3.X versions.
4+
15
## 1.0.2
26

37
* Update lower bound of dart dependency to 2.1.0.

packages/path_provider/path_provider_platform_interface/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ description: A common platform interface for the path_provider plugin.
33
homepage: https://github.com/flutter/plugins/tree/master/packages/path_provider/path_provider_platform_interface
44
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
55
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
6-
version: 1.0.2
6+
version: 1.0.3
77

88
dependencies:
99
flutter:
1010
sdk: flutter
1111
meta: ^1.0.5
12-
platform: ^2.0.0
12+
platform: ">=2.0.0 <4.0.0"
1313
plugin_platform_interface: ^1.0.1
1414

1515
dev_dependencies:

0 commit comments

Comments
 (0)