Skip to content

Commit d0f9137

Browse files
Update next from master (#85)
* Bump crypto-js and oidc-client in /WebSample/ClientApp (#60) Bumps [crypto-js](https://github.com/brix/crypto-js) to 4.2.0 and updates ancestor dependency [oidc-client](https://github.com/IdentityModel/oidc-client-js). These dependencies need to be updated together. Updates `crypto-js` from 3.3.0 to 4.2.0 - [Commits](brix/crypto-js@3.3.0...4.2.0) Updates `oidc-client` from 1.10.1 to 1.11.5 - [Release notes](https://github.com/IdentityModel/oidc-client-js/releases) - [Changelog](https://github.com/IdentityModel/oidc-client-js/blob/dev/GitReleaseManager.yaml) - [Commits](DuendeArchive/identity-model-oidc-client-js@1.10.1...1.11.5) --- updated-dependencies: - dependency-name: crypto-js dependency-type: indirect - dependency-name: oidc-client dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ashley Marques <marques.ashley@gmail.com> * Fix ConfigureAwait in DatabaseExpiredItemsRemoverLoop to false (#78) * Enhance GitHub Actions workflow for .NET testing and coverage reporting (#82) * Bump bootstrap from 4.6.2 to 5.0.0 in /WebSample/ClientApp (#84) * Bump bootstrap from 4.6.2 to 5.0.0 in /WebSample/ClientApp Bumps [bootstrap](https://github.com/twbs/bootstrap) from 4.6.2 to 5.0.0. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](twbs/bootstrap@v4.6.2...v5.0.0) --- updated-dependencies: - dependency-name: bootstrap dependency-version: 5.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update GitHub Actions workflow to include permissions for checks and contents for cover results * Update GitHub Actions workflow to grant write permissions for issues * Update GitHub Actions workflow to disable comment mode for test result uploads --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ashley Marques <marques.ashley@gmail.com> * Bump ws from 7.5.9 to 7.5.10 in /WebSample/ClientApp (#83) Bumps [ws](https://github.com/websockets/ws) from 7.5.9 to 7.5.10. - [Release notes](https://github.com/websockets/ws/releases) - [Commits](websockets/ws@7.5.9...7.5.10) --- updated-dependencies: - dependency-name: ws dependency-version: 7.5.10 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7916ecf commit d0f9137

4 files changed

Lines changed: 21 additions & 32 deletions

File tree

.github/workflows/dotnet-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: .NET Test & Coverage
22

3+
permissions:
4+
checks: write
5+
contents: read
6+
issues: write
7+
38
on:
49
push:
510
branches: [master, next, add-unit-tests]
@@ -46,6 +51,7 @@ jobs:
4651
uses: EnricoMi/publish-unit-test-result-action@v2
4752
with:
4853
files: ./TestResults/*.trx
54+
comment_mode: off
4955

5056
- name: Check if coverage file exists
5157
run: |

Extensions.Caching.PostgreSql/DatabaseExpiredItemsRemoverLoop.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ private async Task DeleteExpiredCacheItems()
109109
_logger.LogDebug($"Task Delay interval will sleep for {_expiredItemsDeletionInterval}s");
110110
await Task
111111
.Delay(_expiredItemsDeletionInterval, _cancellationTokenSource.Token)
112-
.ConfigureAwait(true);
112+
.ConfigureAwait(false);
113113
_logger.LogDebug($"Task Delay interval resumed after {_expiredItemsDeletionInterval}s");
114114
}
115115
catch (TaskCanceledException)

WebSample/ClientApp/package-lock.json

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

WebSample/ClientApp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
6-
"bootstrap": "^4.1.3",
6+
"bootstrap": "^5.0.0",
77
"http-proxy-middleware": "^2.0.6",
88
"jquery": "^3.6.4",
99
"merge": "^2.1.1",

0 commit comments

Comments
 (0)