Skip to content

Commit c6bb456

Browse files
Bump oidc-rp dep to rc-005
1 parent f58d1c2 commit c6bb456

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"homepage": "https://github.com/solid/solid-multi-rp-client",
4040
"dependencies": {
4141
"kvplus-files": "0.0.4",
42-
"@trust/oidc-rp": "^0.2.0"
42+
"oidc-rp": "git://github.com/anvilresearch/oidc-rp.git#rc-005"
4343
},
4444
"devDependencies": {
4545
"sinon": "^2.2.0",

src/client-store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const OIDCRelyingParty = require('@trust/oidc-rp')
1+
const OIDCRelyingParty = require('oidc-rp')
22
const KVPFileStore = require('kvplus-files')
33
const COLLECTION_NAME = 'clients'
44

src/multi-rp-client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22
const ClientStore = require('./client-store')
3-
const OIDCRelyingParty = require('@trust/oidc-rp')
3+
const OIDCRelyingParty = require('oidc-rp')
44
const DEFAULT_MAX_AGE = 86400
55

66
class MultiRpClient {

test/unit/client-store-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const test = require('tape')
44
const KVPFileStore = require('kvplus-files')
55

66
const ClientStore = require('../../src/client-store')
7-
const OIDCRelyingParty = require('@trust/oidc-rp')
7+
const OIDCRelyingParty = require('oidc-rp')
88

99
const storeBasePath = './test/store/'
1010
const storeOptions = { path: storeBasePath }

test/unit/multi-rp-client-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const test = require('tape')
44
const sinon = require('sinon')
55

66

7-
const OIDCRelyingParty = require('@trust/oidc-rp')
7+
const OIDCRelyingParty = require('oidc-rp')
88
const MultiRpClient = require('../../src/index')
99
const ClientStore = require('../../src/client-store')
1010

0 commit comments

Comments
 (0)