Skip to content

Commit

Permalink
Merge branch 'main' into chore/gh-actions-versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr authored Oct 20, 2023
2 parents 23277ab + bb3fbe7 commit 599ab51
Show file tree
Hide file tree
Showing 28 changed files with 1,145 additions and 1,165 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
build: true

test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
# We test against different OSes, because the build toolchain has OS-specific dependencies.
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
node-version: ["20.x", "18.x", "16.x"]
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16
20
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ The following have been deprecated, and will be removed in future major releases

The following changes have been implemented but not released yet:

## [1.17.3](https://github.com/inrupt/solid-client-authn-js/releases/tag/v1.17.3) - 2023-10-10

### Bugfixes

#### browser

- [Mismatching redirect URI](https://github.com/inrupt/solid-client-authn-js/issues/2891) on refresh: the root cause of the bug was a race
condition because of the asynchronous nature of updating the browser URL. The appropriate event is now awaited for, which should prevent
the issue from manifesting.

## [1.17.2](https://github.com/inrupt/solid-client-authn-js/releases/tag/v1.17.2) - 2023-09-15

### Bugfixes
Expand Down
18 changes: 9 additions & 9 deletions e2e/browser/solid-client-authn-browser/test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-app",
"version": "1.17.2",
"version": "1.17.3",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -10,19 +10,19 @@
"test:esbuild": "esbuild components/appContainer/index.tsx --bundle"
},
"dependencies": {
"@inrupt/internal-playwright-testids": "^2.0.2",
"@inrupt/solid-client-authn-browser": "^1.17.2",
"next": "^13.4.7",
"@inrupt/internal-playwright-testids": "^2.4.0",
"@inrupt/solid-client-authn-browser": "^1.17.3",
"next": "^13.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@inrupt/eslint-config-lib": "^2.1.2",
"@playwright/test": "^1.36.2",
"@inrupt/eslint-config-lib": "^2.4.1",
"@playwright/test": "^1.38.1",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"esbuild": "^0.19.2",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.14",
"esbuild": "^0.19.5",
"eslint": "^8.43.0",
"eslint-config-next": "^13.4.13"
}
Expand Down
12 changes: 6 additions & 6 deletions e2e/browser/solid-ui-react/test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "test-solid-ui",
"version": "1.17.2",
"version": "1.17.3",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,17 +9,17 @@
"lint": "next lint"
},
"dependencies": {
"@inrupt/internal-playwright-testids": "^2.1.3",
"@inrupt/solid-client-authn-browser": "^1.17.2",
"@inrupt/internal-playwright-testids": "^2.4.0",
"@inrupt/solid-client-authn-browser": "^1.17.3",
"@inrupt/solid-ui-react": "^2.9.0",
"next": "13.4.19",
"next": "13.5.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.14",
"typescript": "5.2.2"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"useNx": true,
"version": "1.17.2"
"version": "1.17.3"
}
Loading

0 comments on commit 599ab51

Please sign in to comment.