diff --git a/CHANGELOG.md b/CHANGELOG.md index d603cfc..527c632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [v0.5.1](https://github.com/ArthurFiorette/axios-cache-interceptor/compare/v0.5.0...v0.5.1) +## [v0.6.0](https://github.com/ArthurFiorette/axios-cache-interceptor/compare/v0.5.1...v0.6.0) + +### Merged + +- feat: etag and if-modified-since support [`#53`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/53) +- feat: storage abstractions [`#52`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/52) +- feat: more headers supports, tests and must-revalidate fix [`#51`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/51) +- chore(deps-dev): bump @types/node from 16.11.6 to 16.11.7 [`#48`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/48) +- chore(deps-dev): bump prettier-plugin-jsdoc from 0.3.24 to 0.3.30 [`#47`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/47) + +### Commits + +- feat: immutable cache support [`76a8af7`](https://github.com/ArthurFiorette/axios-cache-interceptor/commit/76a8af743316b4ed63382ece334f77118ee99da7) +- fix: compile to `ES2020`, instead of `ES2021` [`5970483`](https://github.com/ArthurFiorette/axios-cache-interceptor/commit/59704833f2f77ec7d28c83068ad4c302055bb6da) +- style: prettier and changelog config changes [`19d0e9b`](https://github.com/ArthurFiorette/axios-cache-interceptor/commit/19d0e9b69eadc7622546f877298c3a44ed6efc4e) + +## [v0.5.1](https://github.com/ArthurFiorette/axios-cache-interceptor/compare/v0.5.0...v0.5.1) - 2021-11-05 ### Commits - refactor: better typings for axios 0.24 [`bf891bd`](https://github.com/ArthurFiorette/axios-cache-interceptor/commit/bf891bdd095cc7c2dd5363ac6c5207192c70954a) +- tag: v0.5.1 [`6a680c1`](https://github.com/ArthurFiorette/axios-cache-interceptor/commit/6a680c176840fc7d790b98e201ac6a367e959fa6) ## [v0.5.0](https://github.com/ArthurFiorette/axios-cache-interceptor/compare/v0.4.1...v0.5.0) - 2021-10-28 @@ -272,8 +289,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). ## [v0.0.5](https://github.com/ArthurFiorette/axios-cache-interceptor/compare/v0.0.4...v0.0.5) - 2021-09-11 -This reverts commit 80c4220ae3302b39742ab3d153904b6bb8c6134d. - ### Merged - chore(deps-dev): bump prettier from 2.3.2 to 2.4.0 [`#9`](https://github.com/ArthurFiorette/axios-cache-interceptor/pull/9) diff --git a/package.json b/package.json index 71b8c53..63711e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "axios-cache-interceptor", - "version": "0.5.1", + "version": "0.6.0", "description": "Cache interceptor for axios", "main": "./dist/index.js", "types": "./types/index.d.ts",