Added AUTHORS.md

This commit is contained in:
thomashii@dukefirehawk.com 2021-05-02 12:12:43 +08:00
parent 1bc68956de
commit 31e52b6ad3
92 changed files with 250 additions and 85 deletions

2
AUTHORS.md Normal file
View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -17,7 +17,7 @@
* Migrated json_god to 4.0.0 (13/13 tests passed) * Migrated json_god to 4.0.0 (13/13 tests passed)
* Migrated angel_client to 4.0.0 (6/13 tests passed) * Migrated angel_client to 4.0.0 (6/13 tests passed)
* Migrated angel_websocket to 4.0.0 (2/3 tests passed) * Migrated angel_websocket to 4.0.0 (2/3 tests passed)
* Migrated test to 4.0.0 (1/1 test passed) * Migrated angel_test to 4.0.0 (1/1 test passed)
* Added symbol_table and migrated to 2.0.0 (16/16 tests passed) * Added symbol_table and migrated to 2.0.0 (16/16 tests passed)
* Migrated jael to 4.0.0 (20/20 tests passed) * Migrated jael to 4.0.0 (20/20 tests passed)
* Migrated jael_preprocessor to 3.0.0 (5/5 tests passed) * Migrated jael_preprocessor to 3.0.0 (5/5 tests passed)
@ -28,9 +28,9 @@
* Migrated hot to 4.0.0 (0/0 tests passed) * Migrated hot to 4.0.0 (0/0 tests passed)
* Added range_header and migrated to 3.0.0 (12/12 tests passed) * Added range_header and migrated to 3.0.0 (12/12 tests passed)
* Migrated static to 4.0.0 (1/1 test passed) * Migrated static to 4.0.0 (1/1 test passed)
* Migrated basic-sdk-2.12.x_nnbd template to 4.0.0 (1/1 test passed) * Created basic-sdk-2.12.x_nnbd template (1/1 test passed)
* Updated angel_serialize to 5.0.0 (in progress) * Updated angel_serialize to 4.0.0 (in progress)
* Updated angel_serialize_generator to 5.0.0 (in progress) * Updated angel_serialize_generator to 4.0.0 (in progress)
# 3.0.0 (Non NNBD) # 3.0.0 (Non NNBD)
* Changed Dart SDK requirements for all packages to ">=2.10.0 <3.0.0" * Changed Dart SDK requirements for all packages to ">=2.10.0 <3.0.0"

View file

@ -1,5 +1,5 @@
# Todo ### angel_framework
* Migrate http_server to shelf
### Container/angel_container_generator ### Container/angel_container_generator
* test/reflector_test.reflectab.dart - Changed ImplicitGetterMirrorImpl() from 5 to 3 parameters (revisit later) * test/reflector_test.reflectab.dart - Changed ImplicitGetterMirrorImpl() from 5 to 3 parameters (revisit later)

2
packages/auth/AUTHORS.md Normal file
View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.1.5+1 # 2.1.5+1
* Fix error in popup page. * Fix error in popup page.

View file

@ -1,8 +1,7 @@
name: angel_auth name: angel_auth
description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more. description: A complete authentication plugin for Angel. Includes support for stateless JWT tokens, Basic Auth, and more.
version: 4.0.0 version: 4.0.0
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/angel_auth
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -23,4 +22,4 @@ dev_dependencies:
io: ^1.0.0 io: ^1.0.0
logging: ^1.0.0 logging: ^1.0.0
pedantic: ^1.11.0 pedantic: ^1.11.0
test: ^1.16.8 test: ^1.17.3

2
packages/cli/AUTHORS.md Normal file
View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.1.7+1 # 2.1.7+1
* Fix a bug where new directories were not being created in * Fix a bug where new directories were not being created in
`init`. `init`.

View file

@ -1,4 +1,5 @@
# Todo # Todo
* Migrate inflection2, mustache4dart2 and prompts packages to NNBD
* `service` * `service`
* Add tests * Add tests

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,11 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.2 # 2.0.2
* `_join` previously discarded quer parameters, etc. * `_join` previously discarded quer parameters, etc.
* Allow any `Map<String, dynamic>` as body, not just `Map<String, String>`. * Allow any `Map<String, dynamic>` as body, not just `Map<String, String>`.

View file

@ -1,8 +1,7 @@
name: angel_client name: angel_client
version: 4.0.0 version: 4.0.0
description: Support for querying Angel servers in the browser, Flutter, and command-line. description: Support for querying Angel servers in the browser, Flutter, and command-line.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/angel_client
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -42,4 +41,4 @@ dev_dependencies:
ref: sdk-2.12.x_nnbd ref: sdk-2.12.x_nnbd
path: packages/mock_request path: packages/mock_request
pedantic: ^1.11.0 pedantic: ^1.11.0
test: ^1.16.8 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,2 +1,5 @@
# 2.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 1.0.1 # 1.0.1
* Added `CodeBuffer.noWhitespace()`. * Added `CodeBuffer.noWhitespace()`.

View file

@ -1,12 +1,11 @@
name: code_buffer name: code_buffer
version: 2.0.0 version: 2.0.0
description: An advanced StringBuffer geared toward generating code, and source maps. description: An advanced StringBuffer geared toward generating code, and source maps.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/thosakwe/code_buffer
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dependencies: dependencies:
charcode: ^1.2.0 charcode: ^1.2.0
source_span: ^1.8.1 source_span: ^1.8.1
dev_dependencies: dev_dependencies:
test: ^1.16.8 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 2.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 1.1.0 # 1.1.0
* Add `tupleX` parsers. Hooray for strong typing! * Add `tupleX` parsers. Hooray for strong typing!

View file

@ -30,7 +30,7 @@ final Parser credentialString = match<Map<String, String>?>(
.value((r) { .value((r) {
var decoded = utf8.decode(base64Url.decode(r.span!.text)); var decoded = utf8.decode(base64Url.decode(r.span!.text));
var scanner = new SpanScanner(decoded); var scanner = new SpanScanner(decoded);
return credentials.parse(scanner)!.value; return credentials.parse(scanner).value;
}); });
final Parser basic = match<Null>('Basic').space(); final Parser basic = match<Null>('Basic').space();
@ -42,7 +42,7 @@ void main() {
stdout.write('Enter a basic auth value: '); stdout.write('Enter a basic auth value: ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = basicAuth.parse(scanner)!; var result = basicAuth.parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -57,7 +57,7 @@ void main() {
stdout.write('Enter an expression: '); stdout.write('Enter an expression: ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = calculator.parse(scanner)!; var result = calculator.parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -15,7 +15,7 @@ main() {
stdout.write('Enter a string (ex "a,b,c"): '); stdout.write('Enter a string (ex "a,b,c"): ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = id.separatedBy(match(',').space()).parse(scanner)!; var result = id.separatedBy(match(',').space()).parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -57,7 +57,7 @@ main() {
stdout.write('Enter some JSON: '); stdout.write('Enter some JSON: ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = JSON.parse(scanner)!; var result = JSON.parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -24,7 +24,7 @@ main() {
stdout.write('Enter a number: '); stdout.write('Enter a number: ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = number.parse(scanner)!; var result = number.parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -31,7 +31,7 @@ main() {
stdout.write('Enter a query string: '); stdout.write('Enter a query string: ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var scanner = new SpanScanner(line, sourceUrl: 'stdin'); var scanner = new SpanScanner(line, sourceUrl: 'stdin');
var result = pairs.parse(scanner)!; var result = pairs.parse(scanner);
if (!result.successful) { if (!result.successful) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -33,8 +33,8 @@ void main() {
new RegExp( new RegExp(
r'[A-Za-z_!\\$",\\+-\\./:;\\?<>%&\\*@\[\]\\{\}\\|`\\^~][A-Za-z0-9_!\\$",\\+-\\./:;\\?<>%&\*@\[\]\\{\}\\|`\\^~]*'), r'[A-Za-z_!\\$",\\+-\\./:;\\?<>%&\\*@\[\]\\{\}\\|`\\^~][A-Za-z0-9_!\\$",\\+-\\./:;\\?<>%&\*@\[\]\\{\}\\|`\\^~]*'),
errorMessage: 'Expected an ID') errorMessage: 'Expected an ID')
.map((r) => .map((r) => symbols[r.span!.text] ??=
symbols[r.span!.text] ??= throw "Undefined symbol: '${r.span!.text}'"); throw "Undefined symbol: '${r.span!.text}'");
var atom = number.castDynamic().or(id); var atom = number.castDynamic().or(id);
@ -70,7 +70,7 @@ void main() {
while (true) { while (true) {
stdout.write('> '); stdout.write('> ');
var line = stdin.readLineSync()!; var line = stdin.readLineSync()!;
var result = expr.parse(new SpanScanner(line))!; var result = expr.parse(new SpanScanner(line));
if (result.errors.isNotEmpty) { if (result.errors.isNotEmpty) {
for (var error in result.errors) { for (var error in result.errors) {

View file

@ -10,5 +10,5 @@ void main() {
var grammar = tuple3(pub, dart, lang); var grammar = tuple3(pub, dart, lang);
var scanner = SpanScanner('pub dart lang'); var scanner = SpanScanner('pub dart lang');
print(grammar.parse(scanner)!.value); print(grammar.parse(scanner).value);
} }

View file

@ -1,7 +1,6 @@
name: combinator name: combinator
version: 2.0.0 version: 2.0.0
description: Packrat parser combinators that support static typing, generics, file spans, memoization, and more. description: Packrat parser combinators that support static typing, generics, file spans, memoization, and more.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/combinator.git homepage: https://github.com/thosakwe/combinator.git
publish_to: none publish_to: none
environment: environment:
@ -17,4 +16,4 @@ dependencies:
string_scanner: ^1.1.0 string_scanner: ^1.1.0
tuple: ^2.0.0 tuple: ^2.0.0
dev_dependencies: dev_dependencies:
test: ^1.16.8 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.2.0 # 2.2.0
* Allow including one configuration within another. * Allow including one configuration within another.
* Badly-formatted `.env` files will no longer issue a warning, * Badly-formatted `.env` files will no longer issue a warning,

View file

@ -1,8 +1,7 @@
name: angel_configuration name: angel_configuration
description: Automatic YAML application configuration loader for Angel, with .env support. description: Automatic YAML application configuration loader for Angel, with .env support.
version: 3.0.0 version: 3.0.0
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/angel_configuration
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -25,4 +24,4 @@ dev_dependencies:
# logging: ^0.11.0 # logging: ^0.11.0
pedantic: ^1.11.0 pedantic: ^1.11.0
# pretty_logging: ^1.0.0 # pretty_logging: ^1.0.0
test: ^1.15.7 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 3.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 2.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 1.1.0 # 1.1.0
* `pedantic` lints. * `pedantic` lints.
* Add `ThrowingReflector`, which throws on all operations. * Add `ThrowingReflector`, which throws on all operations.

View file

@ -1,8 +1,7 @@
name: angel_container name: angel_container
version: 3.0.0 version: 3.0.0
author: Tobe O <thosakwe@gmail.com>
description: A hierarchical DI container, and pluggable backends for reflection. description: A hierarchical DI container, and pluggable backends for reflection.
homepage: https://github.com/angel-dart/container.git homepage: https://github.com/dukefirehawk/angel
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dependencies: dependencies:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.1.1 # 2.1.1
* `AngelHttp.uri` now returns an empty `Uri` if the server is not listening. * `AngelHttp.uri` now returns an empty `Uri` if the server is not listening.

View file

@ -1,3 +1,4 @@
* Migrate http_server to shelf
* Support for [Trestle](https://github.com/dart-bridge/trestle), use this as default, set up migration system around this * Support for [Trestle](https://github.com/dart-bridge/trestle), use this as default, set up migration system around this
* Angel CLI * Angel CLI
* Angel bootstrap project * Angel bootstrap project

View file

@ -1,8 +1,7 @@
name: angel_framework name: angel_framework
version: 4.0.0 version: 4.0.0
description: A high-powered HTTP server with dependency injection, routing and much more. description: A high-powered HTTP server with dependency injection, routing and much more.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/angel_framework
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -52,10 +51,8 @@ dependencies:
ref: sdk-2.12.x_nnbd ref: sdk-2.12.x_nnbd
path: packages/mock_request path: packages/mock_request
path: ^1.8.0 path: ^1.8.0
# pedantic: ^1.0.0
#quiver_hashcode: ^3.0.0+1
quiver: ^3.0.0 quiver: ^3.0.0
recase: ^4.0.0-nullsafety.0 recase: ^4.0.0
stack_trace: ^1.10.0 stack_trace: ^1.10.0
string_scanner: ^1.1.0 string_scanner: ^1.1.0
tuple: ^2.0.0 tuple: ^2.0.0
@ -64,6 +61,5 @@ dependencies:
dev_dependencies: dev_dependencies:
http: ^0.13.1 http: ^0.13.1
io: ^1.0.0 io: ^1.0.0
#pretty_logging: ^1.0.0 test: ^1.17.3
test: ^1.16.8

2
packages/hot/AUTHORS.md Normal file
View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.6 # 2.0.6
* Support `--observe=*`, `--enable-vm-service=*` (`startsWith`, instead of `==`). * Support `--observe=*`, `--enable-vm-service=*` (`startsWith`, instead of `==`).

View file

@ -1,8 +1,7 @@
name: angel_hot name: angel_hot
description: Supports hot reloading/hot code push of Angel servers on file changes. description: Supports hot reloading/hot code push of Angel servers on file changes.
version: 4.0.0 version: 4.0.0
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/hot
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 2.0.0
* Migrated to work with Dart SDK 2.12.x NNBD
# 1.0.4 # 1.0.4
* Added `rebuild`, `rebuildRecursive`, and `NodeBuilder`. * Added `rebuild`, `rebuildRecursive`, and `NodeBuilder`.

View file

@ -1,7 +1,6 @@
name: html_builder name: html_builder
description: Build HTML AST's and render them to HTML. This can be used as an internal DSL, i.e. for a templating engine. description: Build HTML AST's and render them to HTML. This can be used as an internal DSL, i.e. for a templating engine.
version: 2.0.0 version: 2.0.0
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/html_builder homepage: https://github.com/thosakwe/html_builder
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 3.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 2.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 1.1.0 # 1.1.0
* Emit `is_error` and `status_code` in `toJson()`. * Emit `is_error` and `status_code` in `toJson()`.
* No more `camelCase` at all. * No more `camelCase` at all.

View file

@ -1,8 +1,7 @@
name: angel_http_exception name: angel_http_exception
version: 3.0.0 version: 3.0.0
description: Exception class that can be serialized to JSON and serialized to clients. description: Exception class that can be serialized to JSON and serialized to clients.
#author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/dukefirehawk/angel/packages/http_exception
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dev_dependencies: dev_dependencies:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.0 # 2.0.0
* Angel 2 and Dart 2 updates. * Angel 2 and Dart 2 updates.
* Default to `.jael` instead of `.jl`. * Default to `.jael` instead of `.jl`.

View file

@ -1,8 +1,7 @@
name: angel_jael name: angel_jael
version: 4.0.0 version: 4.0.0
description: Angel support for the Jael templating engine, similar to Blade or Liquid. description: Angel support for the Jael templating engine, similar to Blade or Liquid.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/jael/tree/master/jael
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -41,7 +40,7 @@ dev_dependencies:
ref: sdk-2.12.x_nnbd ref: sdk-2.12.x_nnbd
path: packages/test path: packages/test
html: ^0.15.0 html: ^0.15.0
test: ^1.15.7 test: ^1.17.3
dependency_overrides: dependency_overrides:
web_socket_channel: ^2.0.0 web_socket_channel: ^2.0.0
http: ^0.13.0 http: ^0.13.0

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.2 # 2.0.2
* Fixed handling of `if` in non-strict mode. * Fixed handling of `if` in non-strict mode.
* Roll `JaelFormatter` and `jaelfmt`. * Roll `JaelFormatter` and `jaelfmt`.

View file

@ -1,7 +1,6 @@
name: jael name: jael
version: 4.0.0 version: 4.0.0
description: A simple server-side HTML templating engine for Dart. Comparable to Blade or Liquid. description: A simple server-side HTML templating engine for Dart. Comparable to Blade or Liquid.
author: Tobe O <thosakwe@gmail.com>
homepage: https://docs.angel-dart.dev/packages/front-end/jael homepage: https://docs.angel-dart.dev/packages/front-end/jael
publish_to: none publish_to: none
environment: environment:
@ -21,9 +20,9 @@ dependencies:
url: https://github.com/dukefirehawk/angel.git url: https://github.com/dukefirehawk/angel.git
ref: sdk-2.12.x_nnbd ref: sdk-2.12.x_nnbd
path: packages/symbol_table path: packages/symbol_table
collection: ^1.15.0-nullsafety.4 collection: ^1.15.0
dev_dependencies: dev_dependencies:
pedantic: ^1.0.0 pedantic: ^1.11.0
test: ^1.0.0 test: ^1.17.3
executables: executables:
jaelfmt: jaelfmt jaelfmt: jaelfmt

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.1 # 2.0.1
* Fixed a bug where failed file resolutions would not become proper errors. * Fixed a bug where failed file resolutions would not become proper errors.

View file

@ -1,8 +1,7 @@
name: jael_preprocessor name: jael_preprocessor
version: 4.0.0 version: 4.0.0
description: A pre-processor for resolving blocks and includes within Jael templates. description: A pre-processor for resolving blocks and includes within Jael templates.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/jael/tree/master/jael_preprocessor
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.0-beta+3 # 2.0.0-beta+3
* Long-needed updates, ensured Dart 2 compatibility, fixed DDC breakages. * Long-needed updates, ensured Dart 2 compatibility, fixed DDC breakages.
* Patches for reflection bugs with typing. * Patches for reflection bugs with typing.

View file

@ -1,7 +1,5 @@
name: json_god name: json_god
version: 4.0.0 version: 4.0.0
authors:
- Tobe O <thosakwe@gmail.com>
description: Easy JSON serialization and deserialization in Dart. description: Easy JSON serialization and deserialization in Dart.
homepage: https://github.com/thosakwe/json_god homepage: https://github.com/thosakwe/json_god
environment: environment:
@ -11,4 +9,4 @@ dependencies:
logging: ^1.0.1 logging: ^1.0.1
dev_dependencies: dev_dependencies:
stack_trace: ^1.10.0 stack_trace: ^1.10.0
test: ^1.16.8 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 2.0.0
* Migrated to work with Dart SDK 2.12.x NNBD
# 1.0.2 # 1.0.2
* Add an example, for Pub's sake. * Add an example, for Pub's sake.

View file

@ -2,8 +2,7 @@ name: merge_map
description: Combine multiple Maps into one. Equivalent to Object.assign in JS. description: Combine multiple Maps into one. Equivalent to Object.assign in JS.
version: 2.0.0 version: 2.0.0
homepage: https://github.com/thosakwe/merge_map homepage: https://github.com/thosakwe/merge_map
author: Tobe O <thosakwe@gmail.com>
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dev_dependencies: dev_dependencies:
test: ^1.16.8 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 3.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 2.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 1.0.3 # 1.0.3
* `idAsInt` returns `null` when `id` is `null`. * `idAsInt` returns `null` when `id` is `null`.

View file

@ -1,8 +1,7 @@
name: angel_model name: angel_model
version: 3.0.0 version: 3.0.0
description: Angel's basic data model class, no longer with the added weight of the whole framework. description: Angel's basic data model class, no longer with the added weight of the whole framework.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/dukefirehawk/angel/packages/model
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
dev_dependencies: dev_dependencies:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,2 +1,8 @@
# 3.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 2.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 1.0.0 # 1.0.0
* Initial release. * Initial release.

View file

@ -1,7 +1,6 @@
name: pretty_logging name: pretty_logging
version: 4.0.0 version: 3.0.0
description: Standalone helper for colorful logging output, using pkg:io AnsiCode. description: Standalone helper for colorful logging output, using pkg:io AnsiCode.
#author: Tobe Osakwe <thosakwe@gmail.com>
homepage: https://github.com/dukefirehawk/angel homepage: https://github.com/dukefirehawk/angel
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -9,4 +8,4 @@ dependencies:
io: ^1.0.0 io: ^1.0.0
logging: ^1.0.0 logging: ^1.0.0
dev_dependencies: dev_dependencies:
pedantic: ^1.0.0 pedantic: ^1.11.0

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 3.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 2.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 1.0.0 # 1.0.0
* Support SSL/HTTP2. * Support SSL/HTTP2.
* Support muting the logger via `--quiet`. * Support muting the logger via `--quiet`.

View file

@ -1,8 +1,7 @@
name: angel_production name: angel_production
version: 3.0.0 version: 3.0.0
description: Helpers for concurrency, message-passing, rotating loggers, and other production functionality in Angel. description: Helpers for concurrency, message-passing, rotating loggers, and other production functionality in Angel.
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/production
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 3.0.0
* Migrated to work with Dart SDK 2.12.x NNBD
# 2.3.0 # 2.3.0
* Allow `2.x` versions of `stream_channel`. * Allow `2.x` versions of `stream_channel`.
* Apply `package:pedantic` lints. * Apply `package:pedantic` lints.

View file

@ -1,7 +1,6 @@
name: pub_sub name: pub_sub
version: 3.0.0 version: 3.0.0
description: Keep application instances in sync with a simple pub/sub API. description: Keep application instances in sync with a simple pub/sub API.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/pub_sub homepage: https://github.com/thosakwe/pub_sub
publish_to: none publish_to: none
environment: environment:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 3.0.0
* Migrated to work with Dart SDK 2.12.x NNBD
# 2.0.2 # 2.0.2
* Fix bug in `toContentRange` that printed invalid indices. * Fix bug in `toContentRange` that printed invalid indices.
* Fold header items by default. * Fold header items by default.

View file

@ -1,7 +1,6 @@
name: range_header name: range_header
version: 3.0.0 version: 3.0.0
description: Range header parser for Dart. Beyond parsing, a stream transformer is included. description: Range header parser for Dart. Beyond parsing, a stream transformer is included.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/range_header homepage: https://github.com/thosakwe/range_header
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 5.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 4.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 3.1.0+1 # 3.1.0+1
* Accidentally hit `CTRL-C` while uploading `3.1.0`; this version ensures everything is ok. * Accidentally hit `CTRL-C` while uploading `3.1.0`; this version ensures everything is ok.

View file

@ -1,8 +1,7 @@
name: angel_route name: angel_route
description: A powerful, isomorphic routing library for Dart. It is mainly used in the Angel framework, but can be used in Flutter and on the Web. description: A powerful, isomorphic routing library for Dart. It is mainly used in the Angel framework, but can be used in Flutter and on the Web.
version: 5.0.0 version: 5.0.0
author: Tobe O <thosakwe@gmail.com> homepage: https://github.com/dukefirehawk/angel
homepage: https://github.com/angel-dart/angel_route
publish_to: none publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
@ -18,4 +17,4 @@ dev_dependencies:
build_web_compilers: ^2.16.4 build_web_compilers: ^2.16.4
http: ^0.13.0 http: ^0.13.0
pedantic: ^1.11.0 pedantic: ^1.11.0
test: ^1.16.5 test: ^1.17.3

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.1.3+2 # 2.1.3+2
* Prepare for upcoming change to File.openRead() * Prepare for upcoming change to File.openRead()

View file

@ -1,11 +1,10 @@
name: angel_static name: angel_static
description: Static server middleware for Angel. Also capable of serving Range responses. description: Static server middleware for Angel. Also capable of serving Range responses.
version: 4.0.0 version: 4.0.0
homepage: https://github.com/dukefirehawk/angel
publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
homepage: https://github.com/angel-dart/static
author: Tobe O <thosakwe@gmail.com>
publish_to: none
dependencies: dependencies:
angel_framework: angel_framework:
git: git:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,6 @@
# 2.0.0
* Migrated to work with Dart SDK 2.12.x NNBD
## 1.0.4 ## 1.0.4
* Added `context` to `SymbolTable`. * Added `context` to `SymbolTable`.

View file

@ -1,7 +1,6 @@
name: symbol_table name: symbol_table
version: 3.0.0 version: 2.0.0
description: A generic symbol table implementation in Dart, with support for scopes and constants. description: A generic symbol table implementation in Dart, with support for scopes and constants.
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/thosakwe/symbol_table homepage: https://github.com/thosakwe/symbol_table
publish_to: none publish_to: none
environment: environment:
@ -9,4 +8,4 @@ environment:
dependencies: dependencies:
collection: ^1.15.0 collection: ^1.15.0
dev_dependencies: dev_dependencies:
test: ^1.15.7 test: ^1.17.3

2
packages/test/AUTHORS.md Normal file
View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.1 # 2.0.1
* Update badge. * Update badge.
* Handle userInfo + basic auth. * Handle userInfo + basic auth.

View file

@ -1,7 +1,6 @@
author: Tobe O <thosakwe@gmail.com>
description: Testing utility library for the Angel framework. Use with package:test.
homepage: https://github.com/angel-dart/test.git
name: angel_test name: angel_test
description: Testing utility library for the Angel framework. Use with package:test.
homepage: https://github.com/dukefirehawk/angel
version: 4.0.0 version: 4.0.0
publish_to: none publish_to: none
environment: environment:

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -0,0 +1,2 @@
Tobe O <thosakwe@gmail.com>
Thomas Hii <thomashii@dukefirehawk.com>

View file

@ -1,3 +1,9 @@
# 4.0.0
* Migrated to support Dart SDK 2.12.x NNBD
# 3.0.0
* Migrated to work with Dart SDK 2.12.x Non NNBD
# 2.0.3 # 2.0.3
* Remove `WebSocketController.plugin`. * Remove `WebSocketController.plugin`.
* Remove any unawaited futures. * Remove any unawaited futures.

View file

@ -1,11 +1,10 @@
name: angel_websocket name: angel_websocket
description: Support for using pkg:angel_client with WebSockets. Designed for Angel. description: Support for using pkg:angel_client with WebSockets. Designed for Angel.
version: 4.0.0
homepage: https://github.com/dukefirehawk/angel
publish_to: none
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'
version: 3.0.0
author: Tobe O <thosakwe@gmail.com>
homepage: https://github.com/angel-dart/angel_websocket
publish_to: none
dependencies: dependencies:
angel_auth: angel_auth:
git: git:
@ -50,7 +49,7 @@ dev_dependencies:
path: packages/model path: packages/model
# logging: ^0.11.0 # logging: ^0.11.0
pedantic: ^1.11.0 pedantic: ^1.11.0
test: ^1.16.8 test: ^1.17.3
#dependency_overrides: #dependency_overrides:
# angel_framework: # angel_framework:
# path: ../framework # path: ../framework