Skip to content

Commit e2c77b3

Browse files
authored
Merge branch 'master' into AlexeyBukin-patch-1
2 parents 317c521 + b924de8 commit e2c77b3

File tree

18 files changed

+459
-412
lines changed

18 files changed

+459
-412
lines changed

.github/workflows/dart.yml

Lines changed: 221 additions & 156 deletions
Large diffs are not rendered by default.

.github/workflows/no-response.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
if: ${{ github.repository_owner == 'dart-lang' }}
2121
steps:
22-
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639
22+
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f
2323
with:
2424
days-before-stale: -1
2525
days-before-close: 14

.github/workflows/publish.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ jobs:
1313
publish:
1414
if: ${{ github.repository_owner == 'dart-lang' }}
1515
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
16+
permissions:
17+
id-token: write
18+
pull-requests: write

.github/workflows/pull_request_label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: write
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9
19+
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b
2020
with:
2121
repo-token: "${{ secrets.GITHUB_TOKEN }}"
2222
sync-labels: true

pkgs/shelf_router_generator/CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
## 1.1.2
1+
## 1.1.4
22

33
* Updated `README.md` with current example from `examples/main.dart`.
44

5+
## 1.1.3
6+
7+
* Require `analyzer: ^8.1.1`
8+
* Require `build: ^4.0.0`
9+
* Require `build_config: ^1.2.0`
10+
* Require `source_gen: ^4.0.1`
11+
* Require `sdk: ^3.9.0`
12+
13+
## 1.1.2
14+
15+
* Require `analyzer: '>=7.4.0 <9.0.0'`
16+
* Require `build: ^3.0.0`
17+
* Require `build_config: ^1.1.0`
18+
* Require `source_gen: ^3.0.0`
19+
* Require `sdk: ^3.7.0`
20+
521
## 1.1.1
622

723
* Support the latest `package:analyzer` and `package:source_gen`

pkgs/shelf_router_generator/example/main.g.dart

Lines changed: 8 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkgs/shelf_router_generator/lib/builder.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ import 'src/shelf_router_generator.dart';
2929
/// A [Builder] that generates a `_$<className>Router(<className> service)`
3030
/// function for each class `<className>` containing a member annotated with
3131
/// [shelf_router.Route].
32-
Builder shelfRouter(BuilderOptions _) => SharedPartBuilder(
33-
[ShelfRouterGenerator()],
34-
'shelf_router',
35-
);
32+
Builder shelfRouter(BuilderOptions _) =>
33+
SharedPartBuilder([ShelfRouterGenerator()], 'shelf_router');

0 commit comments

Comments
 (0)