Skip to content

Commit

Permalink
chore(release): 4.0.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Pooya Parsa committed Feb 2, 2018
1 parent 81c9f9d commit 7112b21
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="4.0.0-rc.0"></a>
# [4.0.0-rc.0](https://github.com/nuxt-community/auth-module/compare/v3.4.1...v4.0.0-rc.0) (2018-02-02)


### Bug Fixes

* guard check ([cf013a0](https://github.com/nuxt-community/auth-module/commit/cf013a0))
* prevent middleware infinite loops ([6ec1b34](https://github.com/nuxt-community/auth-module/commit/6ec1b34))
* ssr and code reduction ([952700c](https://github.com/nuxt-community/auth-module/commit/952700c))
* typo in lodash template ([eac33d2](https://github.com/nuxt-community/auth-module/commit/eac33d2))


### Features

* $auth.hasScope ([6d6c7b3](https://github.com/nuxt-community/auth-module/commit/6d6c7b3))
* $auth.onError ([151868a](https://github.com/nuxt-community/auth-module/commit/151868a))
* allow `token` to be a nested object in the response ([#45](https://github.com/nuxt-community/auth-module/issues/45)) ([8064839](https://github.com/nuxt-community/auth-module/commit/8064839))
* handle endpoints.propertyName ([710561b](https://github.com/nuxt-community/auth-module/commit/710561b)), closes [#46](https://github.com/nuxt-community/auth-module/issues/46)
* rewriteRedirects ([dde409a](https://github.com/nuxt-community/auth-module/commit/dde409a))
* update defaults to axios 5.x ([10157aa](https://github.com/nuxt-community/auth-module/commit/10157aa))
* use new Auth class ([d4da740](https://github.com/nuxt-community/auth-module/commit/d4da740))


### Performance Improvements

* improve cookie handling ([c50e68f](https://github.com/nuxt-community/auth-module/commit/c50e68f))


### BREAKING CHANGES

* Lot's of API and Usage changes



<a name="3.4.1"></a>
## [3.4.1](https://github.com/nuxt-community/auth-module/compare/v3.4.0...v3.4.1) (2017-12-29)

Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nuxtjs/auth",
"version": "3.4.1",
"version": "4.0.0-rc.0",
"description": "Authentication module for Nuxt.js",
"license": "MIT",
"contributors": [
Expand Down Expand Up @@ -30,8 +30,12 @@
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": ["**/templates/**"],
"files": ["lib"],
"eslintIgnore": [
"**/templates/**"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": true
Expand Down

2 comments on commit 7112b21

@sebastianmacias
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for all of this work @pi0

@pi0
Copy link
Member

@pi0 pi0 commented on 7112b21 Feb 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:)

Please sign in to comment.