Skip to content

Commit 42f665e

Browse files
authored
Merge pull request #251 from panva/v2.18.0-wip
2 parents efbdcc3 + a2b86ff commit 42f665e

File tree

59 files changed

+1533
-698
lines changed

Some content is hidden

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

59 files changed

+1533
-698
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ package-lock.json
3737
.node_repl_history
3838

3939
# TODOs
40-
TODO.md
40+
TODO*.md

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Yay for [SemVer](http://semver.org/).
55
**Table of Contents**
66

77
<!-- TOC START min:2 max:2 link:true update:true -->
8+
- [2.18.0](#2180)
89
- [2.17.0](#2170)
910
- [2.16.0](#2160)
1011
- [2.15.0](#2150)
@@ -26,6 +27,13 @@ Yay for [SemVer](http://semver.org/).
2627
- [^1.0.0](#100)
2728

2829
<!-- TOC END -->
30+
## 2.18.0
31+
- [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.17.0...v2.18.0)
32+
- added `ctx.oidc.entities` with all loaded model/entity instances during a given request
33+
- added `cookies.keys` configuration option for KeyGrip key app passthrough
34+
- added `#provider.setProviderSession` for setting provider session from outside of a regular context
35+
- deprecated `#provider.setSessionAccountId` in favor of `#provider.setProviderSession`
36+
2937
## 2.17.0
3038
- [DIFF](https://github.com/panva/node-oidc-provider/compare/v2.16.0...v2.17.0)
3139
- fixed alternative verb routes to be named as well

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const oidc = new Provider('http://localhost:3000', configuration);
110110
console.log('oidc-provider listening on port 3000, check http://localhost:3000/.well-known/openid-configuration');
111111
})().catch((err) => {
112112
console.error(err);
113-
process.exit(1);
113+
process.exitCode = 1;
114114
});
115115
```
116116

0 commit comments

Comments
 (0)