@atlaspack/query 2.14.2 → 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 +8 -0
- package/lib/index.js +1 -0
- package/package.json +3 -3
- package/src/index.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 2.14.2
|
|
4
12
|
|
|
5
13
|
### 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.
|
|
3
|
+
"version": "2.14.3",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"main": "src/index.js",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@atlaspack/cache": "3.0.
|
|
22
|
-
"@atlaspack/core": "2.
|
|
21
|
+
"@atlaspack/cache": "3.0.1",
|
|
22
|
+
"@atlaspack/core": "2.16.0",
|
|
23
23
|
"@atlaspack/graph": "3.4.2",
|
|
24
24
|
"nullthrows": "^1.1.1",
|
|
25
25
|
"table": "^6.8.1",
|
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
|
);
|