Skip to content

Commit

Permalink
[vector_graphics*] Relax dependency constraints of vector_graphics, v…
Browse files Browse the repository at this point in the history
…ector_graphics_codec, vector_graphics_compiler, flutter_svg (#8018)

Relax the dependency constrraints of the vector graphics packages. Since there are no actual changes to the vector_graphics_codec package and the listed version is already published, I don't think it needs a version bump to remove the publish key.

Fixes flutter/flutter#157626
  • Loading branch information
jonahwilliams authored Nov 5, 2024
1 parent 79f8b0b commit 7219431
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
4 changes: 4 additions & 0 deletions packages/vector_graphics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.14

* Relaxes dependency constraint on vector_graphics_codec.

## 1.1.13

* Fix execution on the web with WebAssembly.
Expand Down
11 changes: 3 additions & 8 deletions packages/vector_graphics/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
3 changes: 0 additions & 3 deletions packages/vector_graphics_codec/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: vector_graphics_codec
description: An encoding library for the binary format used in `package:vector_graphics`
repository: https://github.com/flutter/packages/tree/main/packages/vector_graphics_codec
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

environment:
Expand Down
4 changes: 4 additions & 0 deletions packages/vector_graphics_compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.1.13

* Relaxes dependency constraint on vector_graphics_codec.

## 1.1.12

* Transfers the package source from https://github.com/dnfield/vector_graphics
Expand Down
8 changes: 2 additions & 6 deletions packages/vector_graphics_compiler/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
5 changes: 5 additions & 0 deletions third_party/packages/flutter_svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 2.0.13

* Relaxes the dependency constraints on vector_graphics, vector_graphics_codec,
and vector_graphics_compiler.

## 2.0.12

* Adds `missing_code_block_language_in_doc_comment` lint.
Expand Down
9 changes: 4 additions & 5 deletions third_party/packages/flutter_svg/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12
version: 2.0.13

environment:
sdk: ^3.4.0
Expand All @@ -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:
Expand Down

0 comments on commit 7219431

Please sign in to comment.