Skip to content

Commit 4595c9c

Browse files
committed
upgrade deps
use 5005 port to avoid a conflict with some MacOS service
1 parent b11f641 commit 4595c9c

File tree

25 files changed

+2668
-4747
lines changed

25 files changed

+2668
-4747
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ results
2626
*.log
2727
tsconfig.tsbuildinfo
2828
.scannerwork
29-
.nx/cache
29+
.nx

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const session = createSession({
113113
id: 'client',
114114
secret: 'clientSecret',
115115
},
116-
issuer: 'http://localhost:5000',
116+
issuer: 'http://localhost:5005',
117117
scopes: ['openid', 'profile'],
118118
});
119119
// custom auth for each http call:
@@ -151,7 +151,7 @@ const session = createSession({
151151
id: 'client',
152152
secret: 'clientSecret',
153153
},
154-
issuer: 'http://localhost:5000',
154+
issuer: 'http://localhost:5005',
155155
scopes: ['openid', 'profile'],
156156
});
157157
// custom auth for each http call:
@@ -190,7 +190,7 @@ const session = createSession({
190190
id: 'client',
191191
secret: 'clientSecret',
192192
},
193-
issuer: 'http://localhost:5000',
193+
issuer: 'http://localhost:5005',
194194
scopes: ['openid', 'profile'],
195195
});
196196
// custom auth for each http call:

doc/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const session = createSession({
7070
id: 'client',
7171
secret: 'clientSecret',
7272
},
73-
issuer: 'http://localhost:5000',
73+
issuer: 'http://localhost:5005',
7474
scopes: ['openid', 'profile'],
7575
});
7676
// custom auth for each http call:
@@ -105,7 +105,7 @@ const session = createSession({
105105
id: 'client',
106106
secret: 'clientSecret',
107107
},
108-
issuer: 'http://localhost:5000',
108+
issuer: 'http://localhost:5005',
109109
scopes: ['openid', 'profile'],
110110
});
111111
// configure auth once for all http calls:
@@ -129,7 +129,7 @@ const session = createSession({
129129
id: 'client',
130130
secret: 'clientSecret',
131131
},
132-
issuer: 'http://localhost:5000',
132+
issuer: 'http://localhost:5005',
133133
scopes: ['openid', 'profile'],
134134
});
135135

examples/client-axios/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"dependencies": {
1616
"@villedemontreal/auth-core": "^1.1.1",
1717
"@villedemontreal/auth-oidc-plugin-axios": "^1.1.1",
18-
"axios": "1.6.2"
18+
"axios": "1.7.7"
1919
},
2020
"devDependencies": {
21-
"@types/node": "18.x",
22-
"typescript": "5.3.3"
21+
"@types/node": "20.x",
22+
"typescript": "5.6.2"
2323
}
2424
}

examples/client-axios/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async function main(): Promise<void> {
2323
id: 'client',
2424
secret: 'clientSecret',
2525
},
26-
issuer: 'http://localhost:5000',
26+
issuer: 'http://localhost:5005',
2727
scopes: ['openid', 'profile'],
2828
requestTimeout: 5000, // 5s timeout for OIDC requests (overrides global value)
2929
};

examples/client-internal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@villedemontreal/auth-oidc": "^1.1.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "18.x",
21-
"typescript": "5.3.3"
20+
"@types/node": "20.x",
21+
"typescript": "5.6.2"
2222
}
2323
}

examples/client-internal/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function main(): Promise<void> {
2020
id: 'client',
2121
secret: 'clientSecret',
2222
},
23-
issuer: 'http://localhost:5000',
23+
issuer: 'http://localhost:5005',
2424
scopes: ['openid', 'profile'],
2525
requestTimeout: 5000, // 5s timeout for OIDC requests (overrides global value)
2626
};

examples/client-request/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"request-promise-native": "1.0.9"
2020
},
2121
"devDependencies": {
22-
"@types/node": "18.x",
22+
"@types/node": "20.x",
2323
"@types/request": "2.48.12",
2424
"@types/request-promise-native": "1.0.21",
25-
"typescript": "5.3.3"
25+
"typescript": "5.6.2"
2626
}
2727
}

examples/client-request/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ async function main(): Promise<void> {
2626
id: 'client',
2727
secret: 'clientSecret',
2828
},
29-
issuer: 'http://localhost:5000',
29+
issuer: 'http://localhost:5005',
3030
scopes: ['openid', 'profile'],
3131
requestTimeout: 5000, // 5s timeout for OIDC requests (overrides global value)
3232
};

examples/client-superagent/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"dependencies": {
1616
"@villedemontreal/auth-core": "^1.1.1",
1717
"@villedemontreal/auth-oidc-plugin-superagent": "^1.1.1",
18-
"superagent": "8.1.2"
18+
"superagent": "10.1.0"
1919
},
2020
"devDependencies": {
21-
"@types/node": "18.x",
21+
"@types/node": "20.x",
2222
"@types/superagent": "4.1.24",
23-
"typescript": "5.3.3"
23+
"typescript": "5.6.2"
2424
}
2525
}

0 commit comments

Comments
 (0)