Skip to content

Commit b31c72a

Browse files
authored
prep for publishing the shelf packages (#242)
1 parent b4f5f0b commit b31c72a

File tree

16 files changed

+50
-36
lines changed

16 files changed

+50
-36
lines changed

pkgs/shelf/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## 1.3.1-dev
1+
## 1.3.1
2+
3+
* Update the pubspec `repository` field.
24

35
## 1.3.0
46

pkgs/shelf/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shelf
2-
version: 1.3.1-dev
2+
version: 1.3.1
33
description: >
44
A model for web server middleware that encourages composition and easy reuse.
55
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf

pkgs/shelf_packages_handler/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 3.0.1-dev
1+
## 3.0.1
22

3-
- Require Dart `2.14`.
3+
* Require Dart `2.14`.
4+
* Update the pubspec `repository` field.
45

56
## 3.0.0
67

pkgs/shelf_packages_handler/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shelf_packages_handler
2-
version: 3.0.1-dev
2+
version: 3.0.1
33
description: A shelf handler for serving a `packages/` directory.
44
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_packages_handler
55

pkgs/shelf_proxy/CHANGELOG.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
## 1.0.2-dev
1+
## 1.0.2
2+
3+
* Update the pubspec `repository` field.
24

35
## 1.0.1
46

5-
- Drop dependency on `package:pedantic`.
6-
- Require Dart `2.14`.
7+
* Drop dependency on `package:pedantic`.
8+
* Require Dart `2.14`.
79

810
## 1.0.0
911

10-
- Require Dart `2.12`.
11-
- Enable null safety.
12-
- Removed deprecated `createProxyHandler`.
12+
* Require Dart `2.12`.
13+
* Enable null safety.
14+
* Removed deprecated `createProxyHandler`.
1315

1416
## 0.1.0+7
1517

pkgs/shelf_proxy/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shelf_proxy
2-
version: 1.0.2-dev
2+
version: 1.0.2
33
description: A shelf handler for proxying HTTP requests to another server.
44
repository: https://github.com/dart-lang/shelf/tree/master/pkgs/shelf_proxy
55

pkgs/shelf_router/CHANGELOG.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
1+
## 1.1.3
2+
3+
* Update the pubspec `repository` field.
4+
15
## v1.1.2
26

3-
* Remove trailing slash requirement when using `mount`.
7+
* Remove trailing slash requirement when using `mount`.
48

59
## v1.1.1
610

7-
* Fix `Router.routeNotFound` to enable multiple `read()` calls on it.
11+
* Fix `Router.routeNotFound` to enable multiple `read()` calls on it.
812

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

1822
Changing the router to continue pattern matching additional routes if a matched
1923
_handler_ or _nested router_ returns the sentinel `routeNotFound` response

pkgs/shelf_router/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shelf_router
2-
version: 1.1.2
2+
version: 1.1.3
33
description: >
44
A convinent request router for the shelf web-framework, with support for
55
URL-parameters, nested routers and routers generated from source annotations.

pkgs/shelf_router_generator/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## v1.0.3-dev
1+
## v1.0.3
2+
3+
* Update the pubspec `repository` field.
24

35
## v1.0.2
46

@@ -10,9 +12,9 @@
1012

1113
## v1.0.0
1214

13-
* Support update-to-date dependencies.
14-
* Migrate implementation to null safety.
15-
* Generate null-safe code.
15+
* Support update-to-date dependencies.
16+
* Migrate implementation to null safety.
17+
* Generate null-safe code.
1618

1719
## v0.7.2+4
1820

pkgs/shelf_router_generator/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: shelf_router_generator
2-
version: 1.0.3-dev
2+
version: 1.0.3
33
description: >
44
A package:build compatible builder for generating request routers for the
55
shelf web-framework based on source annotations.

0 commit comments

Comments
 (0)