Skip to content

Commit

Permalink
added comment to upgrade guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwinvandervalk committed Feb 7, 2025
1 parent 13be58f commit 26d11e0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bff-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: 'ls '
working-directory: test
- name: Test report
if: success() || failure()
if: github.event == 'push' && (success() || failure())
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
name: Test Report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/identity-server-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: 'ls '
working-directory: test
- name: Test report
if: success() || failure()
if: github.event == 'push' && (success() || failure())
uses: dorny/test-reporter@31a54ee7ebcacc03a09ea97a7e5465a47b84aea5
with:
name: Test Report
Expand Down
4 changes: 4 additions & 0 deletions bff/docs/upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,7 @@ a custom IAccessTokenRetriever, then you should adjust their usage accordingly.
/// The remote address of the API.
/// </summary>
public required Uri ApiAddress { get; set; }

### AddAddEntityFrameworkServerSideSessionsServices has been renamed to AddEntityFrameworkServerSideSessionsServices

If you used the method AddAddEntityFrameworkServerSideSessionsServices() in your code, please replace it with the corrected AddEntityFrameworkServerSideSessionsServices()

0 comments on commit 26d11e0

Please sign in to comment.