Skip to content

Commit

Permalink
Add topics to pubspec.yaml (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasfj authored Apr 28, 2023
1 parent 5e81a55 commit bbf5aa8
Show file tree
Hide file tree
Showing 22 changed files with 77 additions and 13 deletions.
3 changes: 3 additions & 0 deletions acyclic_steps/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.11.1
* Added `topics` to `pubspec.yaml`.

## v0.11.0
* Migrated to null-safety, shouldn't involve any breaking changes.

Expand Down
5 changes: 4 additions & 1 deletion acyclic_steps/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: acyclic_steps
version: 0.11.0
version: 0.11.1
description: |
An explicit acyclic step dependency framework with concurrent evaluation
and dependency injection.
homepage: https://github.com/google/dart-neats/tree/master/acyclic_steps
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:acyclic_steps
topics:
- concurrency
- dependency-injection
dependencies:
meta: ^1.1.7
dev_dependencies:
Expand Down
3 changes: 3 additions & 0 deletions canonical_json/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.1.2
* Added `topics` to `pubspec.yaml`.

## v1.1.1
* Fixed lints.
* Fixed HTTP-links in `README.md`.
Expand Down
6 changes: 5 additions & 1 deletion canonical_json/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: canonical_json
version: 1.1.1
version: 1.1.2
description: |
Encoder and decoder for a canonical JSON format, useful when cryptographically
hashing or signing JSON objects.
homepage: https://github.com/google/dart-neats/tree/master/canonical_json
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:canonical_json
topics:
- json
- crypto
- security
dependencies:
typed_data: ^1.1.6
unorm_dart: ^0.2.0
Expand Down
3 changes: 3 additions & 0 deletions chunked_stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.4.2
* Added `topics` to `pubspec.yaml`.

## v1.4.1
- Deprecating `ChunkedStreamIterator` in favor of
[`ChunkedStreamReader`](https://pub.dev/documentation/async/latest/async/ChunkedStreamReader-class.html)
Expand Down
6 changes: 5 additions & 1 deletion chunked_stream/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: chunked_stream
version: 1.4.1
version: 1.4.2
description: |
Utilities for working with chunked streams, such as byte streams which is
often given as a stream of byte chunks with type `Stream<List<int>>`.
homepage: https://github.com/google/dart-neats/tree/master/chunked_stream
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:chunked_stream
topics:
- bytes
- concurrency
- streams
dependencies:
meta: ^1.3.0
dev_dependencies:
Expand Down
3 changes: 3 additions & 0 deletions http_methods/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.1.1
* Add `topics` to `pubspec.yaml`.

## v1.1.0
* Migrate to null-safety

Expand Down
4 changes: 3 additions & 1 deletion http_methods/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: http_methods
version: 1.1.0
version: 1.1.1
description: |
List of all HTTP methods registered with IANA as list of strings, and metadata
such as whether a method idempotent.
homepage: https://github.com/google/dart-neats/tree/master/http_methods
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:http_methods
topics:
- http
environment:
sdk: '>=2.12.0 <3.0.0'
dev_dependencies:
Expand Down
3 changes: 3 additions & 0 deletions neat_cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.3
* Added `topics` to `pubspec.yaml`.

## v2.0.2
* Fixed lints.

Expand Down
5 changes: 4 additions & 1 deletion neat_cache/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: neat_cache
version: 2.0.2
version: 2.0.3
description: |
A neat cache abstraction for wrapping in-memory or redis caches.
homepage: https://github.com/google/dart-neats/tree/master/neat_cache
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:neat_cache
topics:
- server
- caching
dependencies:
convert: ^3.0.0
logging: ^1.0.1
Expand Down
3 changes: 3 additions & 0 deletions neat_periodic_task/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v2.0.1
* Added `topics` to `pubspec.yaml`.

## v2.0.0
* Migrated to null-safety!

Expand Down
5 changes: 4 additions & 1 deletion neat_periodic_task/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: neat_periodic_task
version: 2.0.0
version: 2.0.1
description: |
Auxiliary classes for reliably running a periodic task in a long-running
process such as web-server.
homepage: https://github.com/google/dart-neats/tree/master/neat_periodic_task
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:neat_periodic_task
topics:
- server
- periodic-tasks
dependencies:
retry: ^3.1.0
slugid: ^1.1.0
Expand Down
5 changes: 4 additions & 1 deletion pem/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## v2.0.4
* Updated `topics` in `pubspec.yaml`.

## v2.0.3
* Add `topics` to pubspec.
* Add `topics` to `pubspec.yaml`.

## v2.0.2
* Avoid using deprecated API from
Expand Down
9 changes: 6 additions & 3 deletions pem/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
name: pem
version: 2.0.3
version: 2.0.4
description: |
PEM encoding/decoding of textual keys following RFC 7468,
supporting both lax/strict-mode, and certificates chains of concatenated
PEM blocks.
homepage: https://github.com/google/dart-neats/tree/master/pem
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:pem
topics:
- crypto
- security
- parser
- pem
dependencies:
petitparser: ^5.1.0
dev_dependencies:
Expand All @@ -18,5 +23,3 @@ false_secrets:
- /README.md
- /example/main.dart
- /test/testcases.dart
topics:
- crypto
3 changes: 3 additions & 0 deletions safe_url_check/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.1.1
* Added `topics` to `pubspec.yaml`.

## v1.1.0
* Migrated to null-safety.

Expand Down
5 changes: 4 additions & 1 deletion safe_url_check/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: safe_url_check
version: 1.1.0
version: 1.1.1
description: |
Check if an untrusted URL is broken, without allowing connections to a private
IP address.
homepage: https://github.com/google/dart-neats/tree/master/safe_url_check
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:safe_url_check
topics:
- security
- network

environment:
sdk: '>=2.12.0 <3.0.0'
Expand Down
1 change: 1 addition & 0 deletions sanitize_html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## v2.0.0-dev
* Remove custom HTML rendering logic in favor of logic from `package:html`.
* Added `topics` to `pubspec.yaml`.

## v2.0.0
* Migrate to null safety.
Expand Down
3 changes: 3 additions & 0 deletions sanitize_html/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ description: |
homepage: https://github.com/google/dart-neats/tree/master/sanitize_html
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:sanitize_html
topics:
- security
- html
dependencies:
html: ^0.15.0
meta: ^1.1.7
Expand Down
3 changes: 3 additions & 0 deletions slugid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v1.1.2
* Add `topics` to `pubspec.yaml`.

## v1.1.1
* Implement `Slugid.hashCode`.

Expand Down
4 changes: 3 additions & 1 deletion slugid/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: slugid
version: 1.1.1
version: 1.1.2
description: |
A URL-safe base64 encoding for UUIDv4 stripped of padding. Useful when
embedding short random UUIDs in URLs.
homepage: https://github.com/google/dart-neats/tree/master/slugid
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:slugid
topics:
- uuid

environment:
sdk: '>=2.14.0 <3.0.0'
Expand Down
3 changes: 3 additions & 0 deletions vendor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.9.3
* Added `topics` to `pubspec.yaml`.

## v0.9.2
* Fix import-path rewriting logic.
* Bump `package:analyzer` to `>= 2.7.0 <6.0.0`.
Expand Down
5 changes: 4 additions & 1 deletion vendor/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: vendor
version: 0.9.2
version: 0.9.3
description: |
Utility for vendoring packages into a project and rewriting import/export
statements.
homepage: https://github.com/google/dart-neats/tree/master/vendor
repository: https://github.com/google/dart-neats.git
issue_tracker: https://github.com/google/dart-neats/labels/pkg:vendor
topics:
- tool
- dependency-management
dependencies:
meta: ^1.7.0
analyzer: '>=2.7.0 <6.0.0'
Expand Down

0 comments on commit bbf5aa8

Please sign in to comment.