Skip to content

Commit 9367edb

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/fast-check-4.0.1
2 parents c1ede2c + dfa7a3f commit 9367edb

File tree

14 files changed

+494
-1058
lines changed

14 files changed

+494
-1058
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,17 @@ jobs:
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5656
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
57+
58+
check:
59+
if: always()
60+
needs:
61+
- lint
62+
- sonar-scan
63+
- unit-tests
64+
runs-on: ubuntu-latest
65+
steps:
66+
- name: Decide whether the needed jobs succeeded or failed
67+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
68+
with:
69+
jobs: ${{ toJSON(needs) }}
70+
allowed-skips: sonar-scan

.github/workflows/e2e-browser.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
# Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
2020
os: [ubuntu-latest, windows-latest]
21-
environment-name: ["ESS PodSpaces"]
21+
environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Dev-2-4"]
2222
experimental: [false]
2323
include:
2424
- environment-name: "ESS Dev-2-3"
@@ -59,3 +59,15 @@ jobs:
5959
with:
6060
name: playwright-output
6161
path: test-results/
62+
63+
check:
64+
if: always()
65+
needs:
66+
- e2e-browser
67+
runs-on: ubuntu-latest
68+
steps:
69+
- name: Decide whether the needed jobs succeeded or failed
70+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
71+
with:
72+
allowed-skips: e2e-browser
73+
jobs: ${{ toJSON(needs) }}

.github/workflows/e2e-node.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest]
2222
node-version: [22.x, 20.x, 18.x]
23-
environment-name: ["ESS PodSpaces", "ESS Dev-2-3"]
23+
environment-name: ["ESS PodSpaces", "ESS Release-2-3", "ESS Dev-2-4"]
2424
experimental: [false]
2525
steps:
2626
- uses: actions/checkout@v4
@@ -51,3 +51,15 @@ jobs:
5151
E2E_TEST_FEATURE_ACP_V3: ${{ secrets.E2E_TEST_FEATURE_ACP_V3 }}
5252
E2E_TEST_FEATURE_WAC: ${{ secrets.E2E_TEST_FEATURE_WAC }}
5353
E2E_TEST_FEATURE_PROBLEM_DETAILS: ${{ secrets.E2E_TEST_FEATURE_PROBLEM_DETAILS }}
54+
55+
check:
56+
if: always()
57+
needs:
58+
- e2e-node
59+
runs-on: ubuntu-latest
60+
steps:
61+
- name: Decide whether the needed jobs succeeded or failed
62+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
63+
with:
64+
allowed-skips: e2e-node
65+
jobs: ${{ toJSON(needs) }}

.github/workflows/scheduled.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ The following changes are pending, and will be applied on the next major release
88

99
## Unreleased changes
1010

11+
### Patch changes
12+
13+
- Removed the legacy behavior in the internal `getWellKnownSolid` method so that the only place it looks for
14+
the `.well-known/solid` resource is the server root.
15+
1116
## [2.1.2](https://github.com/inrupt/solid-client-js/releases/tag/v2.1.2) - 2024-10-15
1217

1318
### Internal change
@@ -240,7 +245,7 @@ The following changes have been implemented but not released yet:
240245

241246
### Bugfixes
242247

243-
- `getWellKnownSolid` fetches well known solid from the server's root by default.
248+
- `getWellKnownSolid` fetches well-known solid from the server's root by default.
244249

245250
## [1.22.0] - 2022-04-26
246251

0 commit comments

Comments
 (0)