Skip to content

Commit

Permalink
Merge pull request dart-backend#154 from dukefirehawk/feature/dart35
Browse files Browse the repository at this point in the history
Feature/dart35
  • Loading branch information
dukefirehawk authored Nov 4, 2024
2 parents f2e80c6 + b75af84 commit c8e3aaf
Show file tree
Hide file tree
Showing 100 changed files with 588 additions and 302 deletions.
373 changes: 192 additions & 181 deletions CHANGELOG.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions packages/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
4 changes: 2 additions & 2 deletions packages/auth/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: angel3_auth
description: A complete authentication plugin for Angel3. Includes support for stateless JWT tokens, Basic Auth, and more.
version: 8.2.0
version: 8.3.0
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/auth
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
charcode: ^1.3.0
collection: ^1.17.0
crypto: ^3.0.0
Expand Down
6 changes: 6 additions & 0 deletions packages/auth_oauth2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
6 changes: 3 additions & 3 deletions packages/auth_oauth2/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: angel3_auth_oauth2
version: 8.2.0
version: 8.3.0
description: Angel3 library for authenticating users with external identity providers via OAuth2.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/auth_oauth2
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_auth: ^8.0.0
angel3_framework: ^8.0.0
angel3_auth: ^8.2.0
angel3_framework: ^8.4.0
http_parser: ^4.0.0
oauth2: ^2.0.0
dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions packages/auth_twitter/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## 8.0.0

* Require Dart >= 3.3
* Require Dart >= 3.5
* Updated `oauth1` to `belatuk_oauth1`
* Updated `lints` to 4.0.0
* Updated `lints` to 5.0.0
* Updated repository link
* Fixed linter warnings

Expand Down
4 changes: 2 additions & 2 deletions packages/auth_twitter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ publish_to: none
environment:
sdk: ">=3.3.0 <4.0.0"
dependencies:
angel3_auth: ^8.0.0
angel3_framework: ^8.0.0
angel3_auth: ^8.2.0
angel3_framework: ^8.4.0
http: ^1.0.0
path: ^1.9.0
belatuk_oauth1: ^3.0.0
Expand Down
6 changes: 6 additions & 0 deletions packages/cache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
6 changes: 3 additions & 3 deletions packages/cache/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: angel3_cache
version: 8.2.0
version: 8.3.0
description: A service that provides HTTP caching to the response data for Angel3
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/cache
environment:
sdk: '>=3.4.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
collection: ^1.17.0
meta: ^1.9.0
pool: ^1.5.0
logging: ^1.2.0
dev_dependencies:
angel3_test: ^8.0.0
angel3_test: ^8.2.0
glob: ^2.0.1
http: ^1.0.0
test: ^1.24.0
Expand Down
5 changes: 4 additions & 1 deletion packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Change Log

## 8.2.1
## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release
* Updated error handling

## 8.2.0
Expand Down
6 changes: 3 additions & 3 deletions packages/client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_client
version: 8.2.0
version: 8.3.0
description: A browser, mobile and command line based client that supports querying Angel3 servers
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/client
Expand All @@ -14,11 +14,11 @@ dependencies:
path: ^1.8.0
logging: ^1.1.0
dev_dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
angel3_model: ^8.0.0
angel3_mock_request: ^8.0.0
angel3_container: ^8.0.0
angel3_auth: ^8.0.0
angel3_auth: ^8.2.0
async: ^2.11.0
quiver: ^3.2.0
build_runner: ^2.4.0
Expand Down
6 changes: 6 additions & 0 deletions packages/configuration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
4 changes: 2 additions & 2 deletions packages/configuration/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: angel3_configuration
version: 8.2.0
version: 8.3.0
description: Automatic YAML application configuration loader for Angel 3, with .env support.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/configuration
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
belatuk_merge_map: ^5.0.0
dotenv: ^4.1.0
file: ^7.0.0
Expand Down
2 changes: 1 addition & 1 deletion packages/container/angel_container/AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Primary Authors

* __[Thomas Hii]([email protected])__

Thomas is the current maintainer of the code base. He has refactored and migrated the
Thomas is the current maintainer of the code base. He has refactored and migrated the
code base to support NNBD.

* __[Tobe O]([email protected])__
Expand Down
6 changes: 6 additions & 0 deletions packages/container/angel_container/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
2 changes: 1 addition & 1 deletion packages/container/angel_container/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_container
version: 8.2.0
version: 8.3.0
description: Angel3 hierarchical DI container, and pluggable backends for reflection.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/container/angel_container
Expand Down
6 changes: 6 additions & 0 deletions packages/container/angel_container_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
2 changes: 1 addition & 1 deletion packages/container/angel_container_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_container_generator
version: 8.2.0
version: 8.3.0
description: Codegen support for using pkg:reflectable with pkg:angel3_container.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/container/angel_container_generator
Expand Down
6 changes: 6 additions & 0 deletions packages/cors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
6 changes: 3 additions & 3 deletions packages/cors/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: angel3_cors
version: 8.2.0
version: 8.3.0
description: Angel3 CORS middleware. Ported from expressjs/cors to Angel3 framework.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/cors
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
dev_dependencies:
angel3_test: ^8.0.0
angel3_test: ^8.2.0
http: ^1.0.0
lints: ^5.0.0
test: ^1.24.0
Expand Down
6 changes: 6 additions & 0 deletions packages/file_service/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
4 changes: 2 additions & 2 deletions packages/file_service/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: angel3_file_service
version: 8.2.0
version: 8.3.0
description: Angel service that persists data to a file on disk, stored as a JSON list.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/file_service
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
file: ^7.0.0
pool: ^1.5.0
dev_dependencies:
Expand Down
6 changes: 6 additions & 0 deletions packages/framework/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.5.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* res.json() will cause 'Bad state: Cannot modify a closed response.' error.

## 8.4.0

* Require Dart >= 3.3
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_framework
version: 8.4.0
version: 8.5.0
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/framework
Expand Down
6 changes: 6 additions & 0 deletions packages/hot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.4.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.3.0

* Require Dart >= 3.3
Expand Down
6 changes: 3 additions & 3 deletions packages/hot/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: angel3_hot
version: 8.3.0
version: 8.3.1
description: Supports hot reloading/hot code push of Angel3 servers on file changes.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/hot
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.2.0
angel3_websocket: ^8.1.0
angel3_framework: ^8.4.0
angel3_websocket: ^8.2.0
belatuk_html_builder: ^5.1.0
charcode: ^1.3.0
glob: ^2.1.0
Expand Down
8 changes: 7 additions & 1 deletion packages/html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.2.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.1.0

* Require Dart >= 3.3
Expand All @@ -26,7 +32,7 @@

## 4.0.0

* No release. Skipped
* No release Skipped

## 3.0.0

Expand Down
6 changes: 3 additions & 3 deletions packages/html/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: angel3_html
version: 8.1.0
version: 8.2.0
description: Support for rendering html_builder AST's as responses in Angel.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/angel3/packages/html_builder
environment:
sdk: '>=3.5.0 <4.0.0'
dependencies:
angel3_framework: ^8.0.0
angel3_framework: ^8.4.0
belatuk_html_builder: ^5.0.0
dev_dependencies:
angel3_test: ^8.0.0
angel3_test: ^8.2.0
html: ^0.15.0
logging: ^1.0.1
test: ^1.21.0
Expand Down
6 changes: 6 additions & 0 deletions packages/http_exception/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
2 changes: 1 addition & 1 deletion packages/http_exception/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: angel3_http_exception
version: 8.2.0
version: 8.3.0
description: Exception class that can be serialized to JSON and serialized to clients.
homepage: https://angel3-framework.web.app/
repository: https://github.com/dart-backend/angel/tree/master/packages/http_exception
Expand Down
6 changes: 6 additions & 0 deletions packages/jael/angel_jael/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 8.3.0

* Require Dart >= 3.5
* Updated `lints` to 5.0.0
* Updated dependencies to the latest release

## 8.2.0

* Require Dart >= 3.3
Expand Down
Loading

0 comments on commit c8e3aaf

Please sign in to comment.