diff --git a/CHANGELOG.md b/CHANGELOG.md index b5dfdb0..b04d7b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [9.0.1](https://github.com/BowlingX/apollo-proxy-cache/compare/v9.0.0...v9.0.1) (2024-05-29) + + +### Bug Fixes + +* fixed es imports ([eda572a](https://github.com/BowlingX/apollo-proxy-cache/commit/eda572a74a6c5274c8b8f86be8ce512b0845d97d)) + # [9.0.0](https://github.com/BowlingX/apollo-proxy-cache/compare/v8.1.3...v9.0.0) (2024-05-29) diff --git a/package.json b/package.json index cb09c67..f0f97af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "apollo-proxy-cache", - "version": "9.0.0", + "version": "9.0.1", "description": "Provides an apollo-link and express (proxy) middleware setup to support a local `@cache` directive", "main": "build/cjs/index.js", "typings": "build/mjs/index.d.ts", diff --git a/src/proxyCacheLink.ts b/src/proxyCacheLink.ts index ec3adcf..be4aee8 100644 --- a/src/proxyCacheLink.ts +++ b/src/proxyCacheLink.ts @@ -1,4 +1,4 @@ -import { ApolloLink, FetchResult, Observable } from '@apollo/client/core' +import { ApolloLink, FetchResult, Observable } from '@apollo/client' import { hasDirectives } from 'apollo-utilities' import type { Subscription } from 'zen-observable-ts' import type { Cache } from './caches/types.js'