-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[vector_graphics*] Relax dependency constraints of vector_graphics, vector_graphics_codec, vector_graphics_compiler, flutter_svg #8018
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,7 @@ name: vector_graphics | |
| description: A vector graphics rendering package for Flutter using a binary encoding. | ||
| repository: https://github.com/flutter/packages/tree/main/packages/vector_graphics | ||
| issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+vector_graphics%22 | ||
| # See https://github.com/flutter/flutter/issues/157626 before publishing a new | ||
| # version. | ||
| publish_to: none | ||
| version: 1.1.13 | ||
| version: 1.1.14 | ||
|
|
||
| environment: | ||
| sdk: ^3.4.0 | ||
|
|
@@ -15,14 +12,12 @@ dependencies: | |
| flutter: | ||
| sdk: flutter | ||
| http: ^1.0.0 | ||
| # See https://github.com/flutter/flutter/issues/157626 | ||
| vector_graphics_codec: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics_codec: "^1.1.11+1" | ||
|
||
|
|
||
| dev_dependencies: | ||
| flutter_test: | ||
| sdk: flutter | ||
| # See https://github.com/flutter/flutter/issues/157626 | ||
| vector_graphics_compiler: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics_compiler: "^1.1.11+1" | ||
|
|
||
| platforms: | ||
| android: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| ## 1.1.13 | ||
|
|
||
| * Relax dependency constraint on vector_graphics_codec. | ||
|
||
|
|
||
| ## 1.1.12 | ||
|
|
||
| * Transfers the package source from https://github.com/dnfield/vector_graphics | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,7 @@ name: vector_graphics_compiler | |
| description: A compiler to convert SVGs to the binary format used by `package:vector_graphics`. | ||
| repository: https://github.com/flutter/packages/tree/main/packages/vector_graphics_compiler | ||
| issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+vector_graphics%22 | ||
| # See https://github.com/flutter/flutter/issues/157626 before publishing a new | ||
| # version. | ||
| publish_to: none | ||
| version: 1.1.12 | ||
| version: 1.1.13 | ||
|
|
||
| executables: | ||
| vector_graphics_compiler: | ||
|
|
@@ -18,8 +15,7 @@ dependencies: | |
| meta: ^1.7.0 | ||
| path: ^1.8.0 | ||
| path_parsing: ^1.0.1 | ||
| # See https://github.com/flutter/flutter/issues/157626 | ||
| vector_graphics_codec: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics_codec: "^1.1.11+1" | ||
|
||
| # This uses an exact upper range because it is an external dependency (see | ||
| # https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#dependencies | ||
| # for more information), and this mitigates transitive risk exposure to | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| ## 2.0.12 | ||
|
|
||
| * Relax the dependency constraints on vector_graphics, vector_graphics_codec, | ||
|
||
| and vector_graphics_compiler. | ||
|
|
||
| ## 2.0.11 | ||
|
|
||
| * Transfers the package source from https://github.com/dnfield/flutter_svg | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ name: flutter_svg | |
| description: An SVG rendering and widget library for Flutter, which allows painting and displaying Scalable Vector Graphics 1.1 files. | ||
| repository: https://github.com/flutter/packages/tree/main/third_party/packages/flutter_svg | ||
| issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+flutter_svg%22 | ||
| version: 2.0.11 | ||
| version: 2.0.12 | ||
|
|
||
| environment: | ||
| sdk: ^3.4.0 | ||
|
|
@@ -12,10 +12,9 @@ dependencies: | |
| flutter: | ||
| sdk: flutter | ||
| http: ^1.0.0 | ||
| # See https://github.com/flutter/flutter/issues/157626 | ||
| vector_graphics: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics_codec: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics_compiler: ">=1.1.11+1 <= 1.1.12" | ||
| vector_graphics: "^1.1.11+1" | ||
| vector_graphics_codec: "^1.1.11+1" | ||
| vector_graphics_compiler: "^1.1.11+1" | ||
|
||
|
|
||
| dev_dependencies: | ||
| flutter_test: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Relaxes