From f928cfa45c5fa6e1c4b05343dbc42fdc0d4435d5 Mon Sep 17 00:00:00 2001 From: arthurfiorette Date: Thu, 13 Jan 2022 19:04:00 -0300 Subject: [PATCH] tag: v0.8.1 --- CHANGELOG.md | 27 ++++++++++++++++++++++++++- package.json | 2 +- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 788b4c82..d7228199 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,31 @@ 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.8.0](https://github.com/arthurfiorette/axios-cache-interceptor/compare/v0.8.0-beta1...v0.8.0) +## [v0.8.1](https://github.com/arthurfiorette/axios-cache-interceptor/compare/v0.8.0...v0.8.1) + +### Merged + +- build: Yarn v2 and `ESM` & `CJS` bundles [`#114`](https://github.com/arthurfiorette/axios-cache-interceptor/pull/114) +- chore(deps): bump follow-redirects from 1.14.6 to 1.14.7 [`#113`](https://github.com/arthurfiorette/axios-cache-interceptor/pull/113) +- chore(deps-dev): bump webpack from 5.65.0 to 5.66.0 [`#112`](https://github.com/arthurfiorette/axios-cache-interceptor/pull/112) + +### Commits + +- chore: eslint `no-explicit-any` [`93df4fd`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/93df4fd93b8531407243d8dbf465e3ef83e7a9fd) +- deps: fixed colors (marak/colors.js#285) [`8243da5`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/8243da50827e99649203f0616146143f0dc0e14e) +- deps: updated `typescript-eslint` monorepo [`829b1a7`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/829b1a70b188d851e92969dfff33ca59711c5cbc) +- docs: fixed casing [`c76f2b7`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/c76f2b7db85715ed98c2b505bffb766b51153fdb) +- docs: updated download urls [`ab53ac1`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/ab53ac13dd18bd80f1fd62f2394fa1d94e20b9d2) +- feat: cache predicate now supports async functions [`88d45cc`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/88d45cc0fb2ece6e1a77af50cdfe0c630d6fd071) +- fix: await unawaited promises and eslint more severe [`ff73ad5`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/ff73ad5c690fb2bc44467cda76702e676f3e7d33) +- fix: removed deprecated code [`e11e346`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/e11e3466f12273ce472beb8a1ed01d595f010eaa) +- refactor: prefer `unknown` instead of `any` [`d0b0e2f`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/d0b0e2fb6cfc0b682c763af779f48fc40818729f) +- refactor: removed `return await` [`c3661a6`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/c3661a64e957e4f0e8df721ab23bdea703d2247a) +- refactor: simplified `cachePredicate` [`38a5ecd`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/38a5ecd3651d044371b5ea98b8ac46b7980405c3) +- refactor: used triple equal sign [`1b93070`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/1b93070db439713c0184de1ebb18994b63756781) +- test: static roots to prevent other tests from running [`57ee1e0`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/57ee1e0df2e9657fc1bcb1f02dd2276a56df58cf) + +## [v0.8.0](https://github.com/arthurfiorette/axios-cache-interceptor/compare/v0.8.0-beta1...v0.8.0) - 2022-01-08 ### Commits @@ -20,6 +44,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). - refactor: removed "abstract" buildInterceptor function [`f30e262`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/f30e2622dd10b7515e08d89253d44d92b23733a0) - refactor: removed classes to decrease bundle size [`cd2f14c`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/cd2f14c446626a350b59606adf5c16940b6624b6) - refactor!: removed `isAxiosCacheInterceptor` function [`37431a9`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/37431a9d34409d868aca25c74029b351165909ee) +- tag: v0.8.0 [`46a4ee5`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/46a4ee595716a4fe70dbc4019d644d6b33dc934e) - tests: fixed coverage by enabling `sourceMaps` again [`17408aa`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/17408aac85da6ad08eb5cd2c32dca5569c2e3f23) - tests: splited header interpreter tests into multiple files [`4f938a4`](https://github.com/arthurfiorette/axios-cache-interceptor/commit/4f938a47935d15f096d4d50ff6e969462b994c48) diff --git a/package.json b/package.json index e8163a9b..92d329a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "axios-cache-interceptor", - "version": "0.8.0", + "version": "0.8.1", "description": "Cache interceptor for axios", "main": "./cjs/index.js", "types": "./cjs/index.d.ts",