@atlaspack/cache 3.0.2-canary.3 → 3.0.2-canary.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaspack/cache
2
2
 
3
+ ## 3.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#525](https://github.com/atlassian-labs/atlaspack/pull/525) [`cb9da16`](https://github.com/atlassian-labs/atlaspack/commit/cb9da16fb2648e7f53c64df0313f60d5fb8970cc) Thanks [@yamadapc](https://github.com/yamadapc)! - Fix issues with large blob cache writes, run cache writes in a write transaction
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`1a2c14c`](https://github.com/atlassian-labs/atlaspack/commit/1a2c14c3cd4587551cc12e94d0680c8b71ea12bf), [`cb9da16`](https://github.com/atlassian-labs/atlaspack/commit/cb9da16fb2648e7f53c64df0313f60d5fb8970cc)]:
12
+ - @atlaspack/rust@3.2.0
13
+ - @atlaspack/fs@2.14.4
14
+ - @atlaspack/logger@2.14.4
15
+ - @atlaspack/utils@2.14.4
16
+
3
17
  ## 3.0.1
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@atlaspack/cache",
3
3
  "description": "Interface for defining caches and file-system, IDB and LMDB implementations.",
4
- "version": "3.0.2-canary.3+cb9da16fb",
4
+ "version": "3.0.2-canary.4+9dee30885",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "type": "commonjs",
7
7
  "publishConfig": {
@@ -23,12 +23,12 @@
23
23
  "check-ts": "tsc --noEmit index.d.ts"
24
24
  },
25
25
  "dependencies": {
26
- "@atlaspack/build-cache": "2.13.3-canary.66+cb9da16fb",
27
- "@atlaspack/feature-flags": "2.14.1-canary.66+cb9da16fb",
28
- "@atlaspack/fs": "2.14.4-canary.3+cb9da16fb",
29
- "@atlaspack/logger": "2.14.4-canary.3+cb9da16fb",
30
- "@atlaspack/rust": "3.1.2-canary.3+cb9da16fb",
31
- "@atlaspack/utils": "2.14.4-canary.3+cb9da16fb"
26
+ "@atlaspack/build-cache": "2.13.3-canary.67+9dee30885",
27
+ "@atlaspack/feature-flags": "2.14.1-canary.67+9dee30885",
28
+ "@atlaspack/fs": "2.14.4-canary.4+9dee30885",
29
+ "@atlaspack/logger": "2.14.4-canary.4+9dee30885",
30
+ "@atlaspack/rust": "3.1.2-canary.4+9dee30885",
31
+ "@atlaspack/utils": "2.14.4-canary.4+9dee30885"
32
32
  },
33
33
  "devDependencies": {
34
34
  "idb": "^5.0.8"
@@ -36,5 +36,5 @@
36
36
  "browser": {
37
37
  "./src/IDBCache.js": "./src/IDBCache.browser.js"
38
38
  },
39
- "gitHead": "cb9da16fb2648e7f53c64df0313f60d5fb8970cc"
39
+ "gitHead": "9dee30885fc8c0f3654d54151d75f1e89907dafd"
40
40
  }