@atlaspack/query 2.14.1 → 2.14.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaspack/query
2
2
 
3
+ ## 2.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`90150df`](https://github.com/atlassian-labs/atlaspack/commit/90150dfb68236e1d1c11813108ecabd92cff9366)]:
8
+ - @atlaspack/core@2.16.0
9
+ - @atlaspack/cache@3.0.1
10
+
11
+ ## 2.14.2
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`8f4e6c1`](https://github.com/atlassian-labs/atlaspack/commit/8f4e6c1b0e7c1fd48624afda48c1dcc599f1460f)]:
16
+ - @atlaspack/cache@3.0.0
17
+ - @atlaspack/core@2.15.1
18
+ - @atlaspack/graph@3.4.2
19
+
3
20
  ## 2.14.1
4
21
 
5
22
  ### Patch Changes
package/lib/index.js CHANGED
@@ -138,6 +138,7 @@ async function loadGraphs(cacheDir) {
138
138
  if (assetGraphBlob) {
139
139
  try {
140
140
  var _cacheInfo$get3;
141
+ // TODO: this should be reviewed when `cachePerformanceImprovements` flag is removed, as we'll be writing files to LMDB cache instead of large blobs
141
142
  let file = await cache.getLargeBlob(_path().default.basename(assetGraphBlob).slice(0, -'-0'.length));
142
143
  let timeToDeserialize = Date.now();
143
144
  let obj = _v().default.deserialize(file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/query",
3
- "version": "2.14.1",
3
+ "version": "2.14.3",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,9 +18,9 @@
18
18
  },
19
19
  "main": "src/index.js",
20
20
  "dependencies": {
21
- "@atlaspack/cache": "2.13.3",
22
- "@atlaspack/core": "2.15.0",
23
- "@atlaspack/graph": "3.4.1",
21
+ "@atlaspack/cache": "3.0.1",
22
+ "@atlaspack/core": "2.16.0",
23
+ "@atlaspack/graph": "3.4.2",
24
24
  "nullthrows": "^1.1.1",
25
25
  "table": "^6.8.1",
26
26
  "v8-compile-cache": "^2.0.0"
package/src/index.js CHANGED
@@ -128,6 +128,7 @@ export async function loadGraphs(cacheDir: string): Promise<{|
128
128
  let assetGraph;
129
129
  if (assetGraphBlob) {
130
130
  try {
131
+ // TODO: this should be reviewed when `cachePerformanceImprovements` flag is removed, as we'll be writing files to LMDB cache instead of large blobs
131
132
  let file = await cache.getLargeBlob(
132
133
  path.basename(assetGraphBlob).slice(0, -'-0'.length),
133
134
  );