From 8b73e68c4dfe05827984574f3662012eec6ade9b Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Fri, 24 Jan 2025 10:15:40 -0800 Subject: [PATCH] add issue_tracker links to pubspec files (#1975) --- pkgs/benchmark_harness/pubspec.yaml | 2 +- pkgs/io/pubspec.yaml | 3 ++- pkgs/markdown/pubspec.yaml | 3 ++- pkgs/mime/pubspec.yaml | 9 +++++---- pkgs/package_config/pubspec.yaml | 1 + pkgs/pool/pubspec.yaml | 5 +++-- pkgs/pub_semver/pubspec.yaml | 10 ++++++---- pkgs/pubspec_parse/pubspec.yaml | 3 ++- pkgs/source_maps/pubspec.yaml | 1 + pkgs/source_span/pubspec.yaml | 1 + pkgs/sse/pubspec.yaml | 1 + pkgs/stack_trace/pubspec.yaml | 1 + pkgs/stream_channel/pubspec.yaml | 1 + pkgs/stream_transform/pubspec.yaml | 1 + pkgs/string_scanner/pubspec.yaml | 1 + pkgs/term_glyph/pubspec.yaml | 1 + pkgs/test_reflective_loader/pubspec.yaml | 1 + pkgs/timing/pubspec.yaml | 2 +- pkgs/watcher/pubspec.yaml | 1 + pkgs/yaml/pubspec.yaml | 5 +++-- pkgs/yaml_edit/pubspec.yaml | 5 ++--- 21 files changed, 38 insertions(+), 20 deletions(-) diff --git a/pkgs/benchmark_harness/pubspec.yaml b/pkgs/benchmark_harness/pubspec.yaml index 7d5a9d1e8..d9b82e5fb 100644 --- a/pkgs/benchmark_harness/pubspec.yaml +++ b/pkgs/benchmark_harness/pubspec.yaml @@ -5,7 +5,7 @@ repository: https://github.com/dart-lang/tools/tree/main/pkgs/benchmark_harness issue_tracker: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Abenchmark_harness topics: - - benchmarking + - benchmarking environment: sdk: ^3.2.0 diff --git a/pkgs/io/pubspec.yaml b/pkgs/io/pubspec.yaml index 46b76b362..b02082409 100644 --- a/pkgs/io/pubspec.yaml +++ b/pkgs/io/pubspec.yaml @@ -1,9 +1,10 @@ name: io +version: 1.1.0-wip description: >- Utilities for the Dart VM Runtime including support for ANSI colors, file copying, and standard exit code values. -version: 1.1.0-wip repository: https://github.com/dart-lang/tools/tree/main/pkgs/io +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Aio environment: sdk: ^3.4.0 diff --git a/pkgs/markdown/pubspec.yaml b/pkgs/markdown/pubspec.yaml index 4f0c0d331..3a713831b 100644 --- a/pkgs/markdown/pubspec.yaml +++ b/pkgs/markdown/pubspec.yaml @@ -3,9 +3,10 @@ version: 7.3.1-wip description: >- A portable Markdown library written in Dart that can parse Markdown into HTML. repository: https://github.com/dart-lang/tools/tree/main/pkgs/markdown +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Amarkdown topics: - - markdown + - markdown executables: markdown: diff --git a/pkgs/mime/pubspec.yaml b/pkgs/mime/pubspec.yaml index 6f1dec73e..31ac74885 100644 --- a/pkgs/mime/pubspec.yaml +++ b/pkgs/mime/pubspec.yaml @@ -5,11 +5,12 @@ description: >- a file extension and file contents. repository: https://github.com/dart-lang/tools/tree/main/pkgs/mime issue_tracker: https://github.com/dart-lang/tools/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Amime + topics: - - magic-numbers - - mime - - mimetype - - multipart-form + - magic-numbers + - mime + - mimetype + - multipart-form environment: sdk: ^3.2.0 diff --git a/pkgs/package_config/pubspec.yaml b/pkgs/package_config/pubspec.yaml index 28f3e1364..634d71050 100644 --- a/pkgs/package_config/pubspec.yaml +++ b/pkgs/package_config/pubspec.yaml @@ -2,6 +2,7 @@ name: package_config version: 2.1.1 description: Support for reading and writing Dart Package Configuration files. repository: https://github.com/dart-lang/tools/tree/main/pkgs/package_config +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Apackage_config environment: sdk: ^3.4.0 diff --git a/pkgs/pool/pubspec.yaml b/pkgs/pool/pubspec.yaml index a205b7494..3324028b8 100644 --- a/pkgs/pool/pubspec.yaml +++ b/pkgs/pool/pubspec.yaml @@ -1,9 +1,10 @@ name: pool version: 1.5.2-wip description: >- - Manage a finite pool of resources. - Useful for controlling concurrent file system or network requests. + Manage a finite pool of resources. Useful for controlling concurrent file + system or network requests. repository: https://github.com/dart-lang/tools/tree/main/pkgs/pool +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Apool environment: sdk: ^3.4.0 diff --git a/pkgs/pub_semver/pubspec.yaml b/pkgs/pub_semver/pubspec.yaml index 290fb9254..536826a4c 100644 --- a/pkgs/pub_semver/pubspec.yaml +++ b/pkgs/pub_semver/pubspec.yaml @@ -1,12 +1,14 @@ name: pub_semver version: 2.1.5 description: >- - Versions and version constraints implementing pub's versioning policy. This - is very similar to vanilla semver, with a few corner cases. + Versions and version constraints implementing pub's versioning policy. This + is very similar to vanilla semver, with a few corner cases. repository: https://github.com/dart-lang/tools/tree/main/pkgs/pub_semver +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Apub_semver + topics: - - dart-pub - - semver + - dart-pub + - semver environment: sdk: ^3.4.0 diff --git a/pkgs/pubspec_parse/pubspec.yaml b/pkgs/pubspec_parse/pubspec.yaml index 73a11171e..90741efff 100644 --- a/pkgs/pubspec_parse/pubspec.yaml +++ b/pkgs/pubspec_parse/pubspec.yaml @@ -4,9 +4,10 @@ description: >- Simple package for parsing pubspec.yaml files with a type-safe API and rich error reporting. repository: https://github.com/dart-lang/tools/tree/main/pkgs/pubspec_parse +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Apubspec_parse topics: -- dart-pub + - dart-pub environment: sdk: ^3.6.0 diff --git a/pkgs/source_maps/pubspec.yaml b/pkgs/source_maps/pubspec.yaml index 32cbf4fb7..77fb68bb2 100644 --- a/pkgs/source_maps/pubspec.yaml +++ b/pkgs/source_maps/pubspec.yaml @@ -2,6 +2,7 @@ name: source_maps version: 0.10.14-wip description: A library to programmatically manipulate source map files. repository: https://github.com/dart-lang/tools/tree/main/pkgs/source_maps +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Asource_maps environment: sdk: ^3.3.0 diff --git a/pkgs/source_span/pubspec.yaml b/pkgs/source_span/pubspec.yaml index 8757b2dee..870861cd8 100644 --- a/pkgs/source_span/pubspec.yaml +++ b/pkgs/source_span/pubspec.yaml @@ -3,6 +3,7 @@ version: 1.10.1 description: >- Provides a standard representation for source code locations and spans. repository: https://github.com/dart-lang/tools/tree/main/pkgs/source_span +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Asource_span environment: sdk: ^3.1.0 diff --git a/pkgs/sse/pubspec.yaml b/pkgs/sse/pubspec.yaml index bd70f7452..849131e52 100644 --- a/pkgs/sse/pubspec.yaml +++ b/pkgs/sse/pubspec.yaml @@ -5,6 +5,7 @@ description: >- communication through Server Sent Events (SSE) and corresponding POST requests. repository: https://github.com/dart-lang/tools/tree/main/pkgs/sse +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Asse environment: sdk: ^3.3.0 diff --git a/pkgs/stack_trace/pubspec.yaml b/pkgs/stack_trace/pubspec.yaml index 4f387b1c4..f5525af54 100644 --- a/pkgs/stack_trace/pubspec.yaml +++ b/pkgs/stack_trace/pubspec.yaml @@ -2,6 +2,7 @@ name: stack_trace version: 1.12.1 description: A package for manipulating stack traces and printing them readably. repository: https://github.com/dart-lang/tools/tree/main/pkgs/stack_trace +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Astack_trace environment: sdk: ^3.4.0 diff --git a/pkgs/stream_channel/pubspec.yaml b/pkgs/stream_channel/pubspec.yaml index f050fca9c..122064b19 100644 --- a/pkgs/stream_channel/pubspec.yaml +++ b/pkgs/stream_channel/pubspec.yaml @@ -4,6 +4,7 @@ description: >- An abstraction for two-way communication channels based on the Dart Stream class. repository: https://github.com/dart-lang/tools/tree/main/pkgs/stream_channel +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Astream_channel environment: sdk: ^3.3.0 diff --git a/pkgs/stream_transform/pubspec.yaml b/pkgs/stream_transform/pubspec.yaml index 91840b79d..b5a91d98a 100644 --- a/pkgs/stream_transform/pubspec.yaml +++ b/pkgs/stream_transform/pubspec.yaml @@ -2,6 +2,7 @@ name: stream_transform version: 2.1.2-wip description: A collection of utilities to transform and manipulate streams. repository: https://github.com/dart-lang/tools/tree/main/pkgs/stream_transform +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Astream_transform environment: sdk: ^3.4.0 diff --git a/pkgs/string_scanner/pubspec.yaml b/pkgs/string_scanner/pubspec.yaml index 9b259cf7b..d17997b81 100644 --- a/pkgs/string_scanner/pubspec.yaml +++ b/pkgs/string_scanner/pubspec.yaml @@ -2,6 +2,7 @@ name: string_scanner version: 1.4.1 description: A class for parsing strings using a sequence of patterns. repository: https://github.com/dart-lang/tools/tree/main/pkgs/string_scanner +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Astring_scanner environment: sdk: ^3.1.0 diff --git a/pkgs/term_glyph/pubspec.yaml b/pkgs/term_glyph/pubspec.yaml index bac16f1b6..4d4cfa7f3 100644 --- a/pkgs/term_glyph/pubspec.yaml +++ b/pkgs/term_glyph/pubspec.yaml @@ -2,6 +2,7 @@ name: term_glyph version: 1.2.3-wip description: Useful Unicode glyphs and ASCII substitutes. repository: https://github.com/dart-lang/tools/tree/main/pkgs/term_glyph +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Aterm_glyph environment: sdk: ^3.1.0 diff --git a/pkgs/test_reflective_loader/pubspec.yaml b/pkgs/test_reflective_loader/pubspec.yaml index 569933f23..f63ab0140 100644 --- a/pkgs/test_reflective_loader/pubspec.yaml +++ b/pkgs/test_reflective_loader/pubspec.yaml @@ -2,6 +2,7 @@ name: test_reflective_loader version: 0.2.3 description: Support for discovering tests and test suites using reflection. repository: https://github.com/dart-lang/tools/tree/main/pkgs/test_reflective_loader +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Atest_reflective_loader environment: sdk: ^3.1.0 diff --git a/pkgs/timing/pubspec.yaml b/pkgs/timing/pubspec.yaml index 891a8af3d..9e5648f43 100644 --- a/pkgs/timing/pubspec.yaml +++ b/pkgs/timing/pubspec.yaml @@ -3,7 +3,7 @@ version: 1.0.2 description: >- A simple package for tracking the performance of synchronous and asynchronous actions. -repository: https://github.com/dart-lang/tools/tree/main/pkgs/timing +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Atiming environment: sdk: ^3.4.0 diff --git a/pkgs/watcher/pubspec.yaml b/pkgs/watcher/pubspec.yaml index 7781bd445..93db01dff 100644 --- a/pkgs/watcher/pubspec.yaml +++ b/pkgs/watcher/pubspec.yaml @@ -4,6 +4,7 @@ description: >- A file system watcher. It monitors changes to contents of directories and sends notifications when files have been added, removed, or modified. repository: https://github.com/dart-lang/tools/tree/main/pkgs/watcher +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Awatcher environment: sdk: ^3.1.0 diff --git a/pkgs/yaml/pubspec.yaml b/pkgs/yaml/pubspec.yaml index fb37436f2..79dfde940 100644 --- a/pkgs/yaml/pubspec.yaml +++ b/pkgs/yaml/pubspec.yaml @@ -2,10 +2,11 @@ name: yaml version: 3.1.3 description: A parser for YAML, a human-friendly data serialization standard repository: https://github.com/dart-lang/tools/tree/main/pkgs/yaml +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Ayaml topics: - - yaml - - config-format + - yaml + - config-format environment: sdk: ^3.4.0 diff --git a/pkgs/yaml_edit/pubspec.yaml b/pkgs/yaml_edit/pubspec.yaml index 8127a1253..00ff72075 100644 --- a/pkgs/yaml_edit/pubspec.yaml +++ b/pkgs/yaml_edit/pubspec.yaml @@ -3,11 +3,10 @@ version: 2.2.2 description: >- A library for YAML manipulation with comment and whitespace preservation. repository: https://github.com/dart-lang/tools/tree/main/pkgs/yaml_edit - -issue_tracker: https://github.com/dart-lang/yaml_edit/issues +issue_tracker: https://github.com/dart-lang/tools/labels/package%3Ayaml_edit topics: - - yaml + - yaml environment: sdk: ^3.1.0