Skip to content

Commit 1db5416

Browse files
authored
Merge pull request #530 from codeforpdx/Development
Version Update from v0.10.0 to v0.11.0
2 parents e88319f + 112e683 commit 1db5416

File tree

133 files changed

+10243
-9417
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+10243
-9417
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16
1+
16.20.2

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,20 @@ PASS is currently in development working towards MVP release by generous efforts
3333

3434
- ### Prerequisites
3535

36-
Currently we require Node version 16 or higher and NPM for our package manager. Most places recommend using a node version manager to install node and npm. To proceed using NVM perform the following..
36+
Currently we require Node version 16.20.2 and NPM for our package manager. We recommend managing node and npm using Node Version Manager (NVM). To do so:
3737

3838
1. Download NVM for your system.
3939

4040
- For Mac, Linux, and other POSIX users: https://github.com/nvm-sh/nvm
4141
- For Windows users: https://github.com/coreybutler/nvm-windows
4242

43-
2. Install node version 16:
43+
2. Install node version 16.20.2:
4444
```
45-
nvm install 16
45+
nvm install 16.20.2
4646
```
4747
3. Use that node version:
4848
```
49-
nvm use 16
49+
nvm use 16.20.2
5050
```
5151
4. Check that node and npm are set up:
5252
```

__mocks__/@inrupt/solid-client.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import { vi } from 'vitest';
2-
import { mockSolidDatasetFrom, addMockResourceAclTo } from '@inrupt/solid-client';
2+
import {
3+
mockSolidDatasetFrom,
4+
addMockResourceAclTo,
5+
createSolidDataset as realCreateSolidDataset
6+
} from '@inrupt/solid-client';
37

48
export * from '@inrupt/solid-client';
59

@@ -18,9 +22,10 @@ export const saveAclFor = vi.fn((url) =>
1822
export const saveSolidDatasetAt = vi.fn(mockDatasetFactory);
1923
export const getSolidDataset = vi.fn(mockDatasetFactory);
2024
export const createContainerAt = vi.fn(() => Promise.resolve());
25+
export const createSolidDataset = vi.fn(() => realCreateSolidDataset());
2126
export const deleteFile = vi.fn(() => Promise.resolve());
2227
export const getSolidDatasetWithAcl = vi.fn(mockDatasetFactory);
2328
export const saveSolidDatasetInContainer = vi.fn(() => Promise.resolve());
2429
export const getFile = vi.fn(() => Promise.resolve());
2530
export const saveFileInContainer = vi.fn(() => Promise.resolve());
26-
export const getWebIdDataset = vi.fn((url) => Promise.resolve(mockSolidDatasetFrom(url)))
31+
export const getWebIdDataset = vi.fn((url) => Promise.resolve(mockSolidDatasetFrom(url)));

__mocks__/src/constants/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const ENV = {
2-
VITE_SOLID_IDENTITY_PROVIDER: 'https://solidcommunity.net'
2+
VITE_SOLID_IDENTITY_PROVIDER: 'https://solidcommunity.net',
3+
VITE_SUGGESTED_OIDC_OPTIONS: 'http://testurl_1.com/, http://testurl_2.com/, http://testurl_3.com/'
34
};
45

56
export { ENV }; /* eslint-disable-line */
6-

env.template

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
VITE_SOLID_IDENTITY_PROVIDER="http://localhost:3000/"
22
VITE_SOLID_POD_SERVER="http://localhost:3000/"
3+
VITE_SUGGESTED_OIDC_OPTIONS="http://localhost:3000/, https://opencommons.net/, https://solidcommunity.net/, https://login.inrupt.com/, https://inrupt.net/"

0 commit comments

Comments
 (0)