Skip to content

Commit

Permalink
Release 1.0.0 (#82)
Browse files Browse the repository at this point in the history
* Release 1.0.0
  • Loading branch information
adamjmcgrath committed Apr 2, 2020
1 parent a9b32cb commit e37fd9e
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

## [v1.0.0](https://github.com/auth0/express-openid-connect/tree/v1.0.0) (2020-03-30)
[Full Changelog](https://github.com/auth0/express-openid-connect/compare/v0.8.1...v1.0.0)

**Added**
- Allow to opt-out from sending SDK Telemetry [\#78](https://github.com/auth0/express-openid-connect/pull/78) ([adamjmcgrath](https://github.com/adamjmcgrath))

**Changed**
- Change the default session duration to 1 day [\#80](https://github.com/auth0/express-openid-connect/pull/80) ([adamjmcgrath](https://github.com/adamjmcgrath))

**Fixed**
- Fix case where APP_SESSION_SECRET is set and appSession is not [\#74](https://github.com/auth0/express-openid-connect/pull/74) ([adamjmcgrath](https://github.com/adamjmcgrath))
- Fix cookie options case [\#76](https://github.com/auth0/express-openid-connect/pull/76) ([adamjmcgrath](https://github.com/adamjmcgrath))

## [v0.8.1](https://github.com/auth0/express-openid-connect/tree/v0.8.1) (2020-03-02)
[Full Changelog](https://github.com/auth0/express-openid-connect/compare/v0.8.0...v0.8.1)

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ This library requires:
- Node v10.13 or higher
- Express v4.17 or higher

This library is currently in **Beta status** and has not had a complete security review. We **do not** recommend using this library in production yet. As we move towards general availability, please be aware that releases may contain breaking changes. We will be monitoring the Issues queue here for feedback and questions. PRs and comments on existing PRs are welcome!

[![CircleCI](https://img.shields.io/circleci/build/github/auth0/express-openid-connect/master?style=flat-square)](https://circleci.com/gh/auth0/express-openid-connect/tree/master)
[![codecov](https://img.shields.io/codecov/c/github/auth0/express-openid-connect?style=flat-square)](https://codecov.io/gh/auth0/express-openid-connect)
[![NPM version](https://img.shields.io/npm/v/express-openid-connect.svg?style=flat-square)](https://npmjs.org/package/express-openid-connect)
Expand Down
22 changes: 16 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
{
"name": "express-openid-connect",
"version": "0.8.1",
"version": "1.0.0",
"description": "Express middleware to protect web applications using OpenID Connect.",
"homepage": "https://github.com/auth0/express-openid-connect",
"license": "MIT",
"author": "Auth0 <[email protected]>",
"main": "index.js",
"files": [
"lib",
"middleware",
"index.d.ts"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "mocha",
Expand All @@ -24,7 +29,7 @@
"http-errors": "^1.7.3",
"jose": "^1.24.0",
"on-headers": "^1.0.2",
"openid-client": "^3.14.0",
"openid-client": "^3.14.1",
"p-memoize": "^3.1.0",
"url-join": "^4.0.1"
},
Expand Down

0 comments on commit e37fd9e

Please sign in to comment.