From bfb15ab9d10312e03ecde7a97392d1413c30e31d Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Tue, 14 Mar 2023 13:06:57 +0100 Subject: [PATCH] appease CI --- .changeset/khaki-months-rhyme.md | 5 +++++ config/bundlesize.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/khaki-months-rhyme.md diff --git a/.changeset/khaki-months-rhyme.md b/.changeset/khaki-months-rhyme.md new file mode 100644 index 00000000000..acaacebb712 --- /dev/null +++ b/.changeset/khaki-months-rhyme.md @@ -0,0 +1,5 @@ +--- +"@apollo/client": patch +--- + +ObservableQuery.getCurrentResult: skip the cache if the running query should not access the cache diff --git a/config/bundlesize.ts b/config/bundlesize.ts index 6f142ff6a29..2cb2ee5d618 100644 --- a/config/bundlesize.ts +++ b/config/bundlesize.ts @@ -3,7 +3,7 @@ import { join } from "path"; import { gzipSync } from "zlib"; import bytes from "bytes"; -const gzipBundleByteLengthLimit = bytes("32.65KB"); +const gzipBundleByteLengthLimit = bytes("32.7KB"); const minFile = join("dist", "apollo-client.min.cjs"); const minPath = join(__dirname, "..", minFile); const gzipByteLen = gzipSync(readFileSync(minPath)).byteLength;