Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pkgs/shelf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## 1.3.1-dev
## 1.3.1

* Update the pubspec `repository` field.

## 1.3.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf
version: 1.3.1-dev
version: 1.3.1
description: >
A model for web server middleware that encourages composition and easy reuse.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf
Expand Down
5 changes: 3 additions & 2 deletions pkgs/shelf_packages_handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0.1-dev
## 3.0.1

- Require Dart `2.14`.
* Require Dart `2.14`.
* Update the pubspec `repository` field.

## 3.0.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_packages_handler/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_packages_handler
version: 3.0.1-dev
version: 3.0.1
description: A shelf handler for serving a `packages/` directory.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_packages_handler

Expand Down
14 changes: 8 additions & 6 deletions pkgs/shelf_proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
## 1.0.2-dev
## 1.0.2

* Update the pubspec `repository` field.

## 1.0.1

- Drop dependency on `package:pedantic`.
- Require Dart `2.14`.
* Drop dependency on `package:pedantic`.
* Require Dart `2.14`.

## 1.0.0

- Require Dart `2.12`.
- Enable null safety.
- Removed deprecated `createProxyHandler`.
* Require Dart `2.12`.
* Enable null safety.
* Removed deprecated `createProxyHandler`.

## 0.1.0+7

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_proxy/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_proxy
version: 1.0.2-dev
version: 1.0.2
description: A shelf handler for proxying HTTP requests to another server.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_proxy

Expand Down
22 changes: 13 additions & 9 deletions pkgs/shelf_router/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
## 1.1.3

* Update the pubspec `repository` field.

## v1.1.2

* Remove trailing slash requirement when using `mount`.
* Remove trailing slash requirement when using `mount`.

## v1.1.1

* Fix `Router.routeNotFound` to enable multiple `read()` calls on it.
* Fix `Router.routeNotFound` to enable multiple `read()` calls on it.

## v1.1.0
* `params` is deprecated in favor of `Request.params` adding using an extension
on `Request`.
* The default `notFoundHandler` now returns a sentinel `routeNotFound` response
object which causes 404 with the message 'Route not found'.
* __Minor breaking__: Handlers and sub-routers that return the sentinel
`routeNotFound` response object will be ignored and pattern matching will
continue on additional routes/handlers.
* `params` is deprecated in favor of `Request.params` adding using an extension
on `Request`.
* The default `notFoundHandler` now returns a sentinel `routeNotFound` response
object which causes 404 with the message 'Route not found'.
* __Minor breaking__: Handlers and sub-routers that return the sentinel
`routeNotFound` response object will be ignored and pattern matching will
continue on additional routes/handlers.

Changing the router to continue pattern matching additional routes if a matched
_handler_ or _nested router_ returns the sentinel `routeNotFound` response
Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_router/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_router
version: 1.1.2
version: 1.1.3
description: >
A convinent request router for the shelf web-framework, with support for
URL-parameters, nested routers and routers generated from source annotations.
Expand Down
10 changes: 6 additions & 4 deletions pkgs/shelf_router_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## v1.0.3-dev
## v1.0.3

* Update the pubspec `repository` field.

## v1.0.2

Expand All @@ -10,9 +12,9 @@

## v1.0.0

* Support update-to-date dependencies.
* Migrate implementation to null safety.
* Generate null-safe code.
* Support update-to-date dependencies.
* Migrate implementation to null safety.
* Generate null-safe code.

## v0.7.2+4

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_router_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_router_generator
version: 1.0.3-dev
version: 1.0.3
description: >
A package:build compatible builder for generating request routers for the
shelf web-framework based on source annotations.
Expand Down
5 changes: 3 additions & 2 deletions pkgs/shelf_static/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.1.1-dev
## 1.1.1

- Require Dart `2.14`.
* Require Dart `2.14`.
* Update the pubspec `repository` field.

## 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_static/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_static
version: 1.1.1-dev
version: 1.1.1
description: Static file server support for the shelf package and ecosystem.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_static

Expand Down
5 changes: 3 additions & 2 deletions pkgs/shelf_test_handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.0.1-dev
## 2.0.1

- Require Dart `2.14`.
* Require Dart `2.14`.
* Update the pubspec `repository` field.

## 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_test_handler/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_test_handler
version: 2.0.1-dev
version: 2.0.1
description: A Shelf handler that makes it easy to test HTTP interactions.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_test_handler

Expand Down
5 changes: 3 additions & 2 deletions pkgs/shelf_web_socket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 1.0.2-dev
## 1.0.2

- Require Dart `2.14`.
* Require Dart `2.14`.
* Update the pubspec `repository` field.

## 1.0.1

Expand Down
2 changes: 1 addition & 1 deletion pkgs/shelf_web_socket/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: shelf_web_socket
version: 1.0.2-dev
version: 1.0.2
description: >
A shelf handler that wires up a listener for every connection.
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_web_socket
Expand Down