Skip to content

Commit a9610b0

Browse files
authored
Merge branch 'main' into background-task-ce
2 parents eafefe1 + 0fccf7b commit a9610b0

File tree

9 files changed

+2236
-11
lines changed

9 files changed

+2236
-11
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
# checkout the code
3030
- name: checkout-code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 0
3434

.github/workflows/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# checkout the code
3333
- name: checkout-code
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
# setup dotnet based on global.json
@@ -44,7 +44,7 @@ jobs:
4444
shell: cmd
4545
run: ./build.cmd ci -release
4646
- name: Publish test results - release
47-
uses: dorny/test-reporter@v1
47+
uses: dorny/test-reporter@v2
4848
if: always()
4949
with:
5050
name: Report release tests

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
# checkout the code
1414
- name: checkout-code
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
# setup dotnet based on global.json

.github/workflows/repo-assist.lock.yml

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

.github/workflows/repo-assist.md

Lines changed: 366 additions & 0 deletions
Large diffs are not rendered by default.

.github/workflows/test-report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test-report-release:
1414
runs-on: windows-latest
1515
steps:
16-
- uses: dorny/test-reporter@v1
16+
- uses: dorny/test-reporter@v2
1717
with:
1818
artifact: test-results-release # artifact name
1919
name: Report release tests # Name of the check run which will be created
@@ -23,7 +23,7 @@ jobs:
2323
test-report-debug:
2424
runs-on: windows-latest
2525
steps:
26-
- uses: dorny/test-reporter@v1
26+
- uses: dorny/test-reporter@v2
2727
with:
2828
artifact: test-results-debug # artifact name
2929
name: Report debug tests # Name of the check run which will be created

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
# checkout the code
1111
- name: checkout-code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
# checkout the code
4141
- name: checkout-code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 0
4545

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ The `TaskSeq` project already has a wide array of functions and functionalities,
228228
- [ ] Make the tasks cancellable with token (see [#133]). **PLANNED FOR 0.5-alpha**
229229
- [ ] Support `ConfiguredCancelableAsyncEnumerable` (see [#167]). **PLANNED FOR 0.5-alpha**
230230
- [ ] Interop with `cancellableTask` and `valueTask` from [`IcedTasks`][24]
231-
- [ ] Interop with `AsyncSeq`.
231+
- [x] Interop with `AsyncSeq` (implemented in `FSharp.Control.AsyncSeq` package).
232232
- [ ] (maybe) Support any awaitable type in the function lib (that is: where a `Task` is required, accept a `ValueTask` and `Async` as well)
233233
- [ ] Add `TaskEx` functionality (separate lib). **DISCUSSION**
234234
- [ ] Move documentation to <https://fsprojects.github.io>

0 commit comments

Comments
 (0)