@atlaspack/core 2.14.1-dev.40 → 2.14.1-dev.41

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,38 @@
1
1
  # @atlaspack/core
2
2
 
3
+ ## 2.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#486](https://github.com/atlassian-labs/atlaspack/pull/486) [`87087f4`](https://github.com/atlassian-labs/atlaspack/commit/87087f44f348ac583a27ea0819122e191ba80f8d) Thanks [@yamadapc](https://github.com/yamadapc)! - Add environment variable to skip cache invalidation
8
+
9
+ ### Patch Changes
10
+
11
+ - [#450](https://github.com/atlassian-labs/atlaspack/pull/450) [`b9d41b1`](https://github.com/atlassian-labs/atlaspack/commit/b9d41b175ad5771651a5b0278a5a0147e669234a) Thanks [@benjervis](https://github.com/benjervis)! - Remove the Atlaspack engines compatibility check
12
+
13
+ - [#420](https://github.com/atlassian-labs/atlaspack/pull/420) [`e1422ad`](https://github.com/atlassian-labs/atlaspack/commit/e1422ad0a801faaa4bc4f1023bed042ffe236e9b) Thanks [@JakeLane](https://github.com/JakeLane)! - Support async script runtime in conditional bundling
14
+
15
+ - [#472](https://github.com/atlassian-labs/atlaspack/pull/472) [`7e357fb`](https://github.com/atlassian-labs/atlaspack/commit/7e357fb173e7958da330e3721667fa5749420952) Thanks [@yamadapc](https://github.com/yamadapc)! - Fix segmentation fault on exit on certain cases
16
+
17
+ - [#478](https://github.com/atlassian-labs/atlaspack/pull/478) [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b) Thanks [@yamadapc](https://github.com/yamadapc)! - The first attempt at Version Packages didn't include the built artifacts.
18
+ This has hopefully been fixed, so this change will force those packages to re-release.
19
+ - Updated dependencies [[`80bd57b`](https://github.com/atlassian-labs/atlaspack/commit/80bd57b9f9e966563957dee0780d956a682eb2d4), [`ae70b81`](https://github.com/atlassian-labs/atlaspack/commit/ae70b810384cf58f9c57d341ab4c925c7bb2060c), [`ce13d5e`](https://github.com/atlassian-labs/atlaspack/commit/ce13d5e885d55518ee6318e7a72e3a6e4e5126f2), [`4aab060`](https://github.com/atlassian-labs/atlaspack/commit/4aab0605c0d4ee8e0dcc3ffa1162eae5b360b677), [`c0a61a9`](https://github.com/atlassian-labs/atlaspack/commit/c0a61a92405b6830fe39cc17622cc2e97bf02dd7), [`cb35e7d`](https://github.com/atlassian-labs/atlaspack/commit/cb35e7d2b90b372de8401792915f12f410508d24), [`e1422ad`](https://github.com/atlassian-labs/atlaspack/commit/e1422ad0a801faaa4bc4f1023bed042ffe236e9b), [`6ec11f1`](https://github.com/atlassian-labs/atlaspack/commit/6ec11f10a9366fb8a9fc0475c7678235056bd80e), [`570493b`](https://github.com/atlassian-labs/atlaspack/commit/570493beaf754e7985aebc7daaaf6dfcfa8fe56b)]:
20
+ - @atlaspack/fs@2.14.1
21
+ - @atlaspack/rust@3.0.1
22
+ - @atlaspack/utils@2.14.1
23
+ - @atlaspack/feature-flags@2.14.1
24
+ - @atlaspack/diagnostic@2.14.1
25
+ - @atlaspack/graph@3.4.1
26
+ - @atlaspack/logger@2.14.1
27
+ - @atlaspack/package-manager@2.14.1
28
+ - @atlaspack/plugin@2.14.1
29
+ - @atlaspack/profiler@2.14.1
30
+ - @atlaspack/types@2.14.1
31
+ - @atlaspack/workers@2.14.1
32
+ - @atlaspack/events@2.14.1
33
+ - @atlaspack/build-cache@2.13.3
34
+ - @atlaspack/cache@2.13.3
35
+
3
36
  ## 2.14.0
4
37
 
5
38
  ### Minor Changes
@@ -1100,7 +1100,7 @@ async function loadRequestGraph(options) {
1100
1100
  });
1101
1101
  }, 5000);
1102
1102
  let startTime = Date.now();
1103
- let events = await options.inputFS.getEventsSince(options.watchDir, snapshotPath, opts);
1103
+ let events = process.env.ATLASPACK_BYPASS_CACHE_INVALIDATION === 'true' ? [] : await options.inputFS.getEventsSince(options.watchDir, snapshotPath, opts);
1104
1104
  clearTimeout(timeout);
1105
1105
  _logger().default.verbose({
1106
1106
  origin: '@atlaspack/core',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.14.1-dev.40+3a5870291",
3
+ "version": "2.14.1-dev.41+e01c10d4c",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -20,21 +20,21 @@
20
20
  "check-ts": "tsc --noEmit index.d.ts"
21
21
  },
22
22
  "dependencies": {
23
- "@atlaspack/build-cache": "2.13.3-dev.40+3a5870291",
24
- "@atlaspack/cache": "2.13.3-dev.40+3a5870291",
25
- "@atlaspack/diagnostic": "2.14.1-dev.40+3a5870291",
26
- "@atlaspack/events": "2.14.1-dev.40+3a5870291",
27
- "@atlaspack/feature-flags": "2.14.1-dev.40+3a5870291",
28
- "@atlaspack/fs": "2.14.1-dev.40+3a5870291",
29
- "@atlaspack/graph": "3.4.1-dev.40+3a5870291",
30
- "@atlaspack/logger": "2.14.1-dev.40+3a5870291",
31
- "@atlaspack/package-manager": "2.14.1-dev.40+3a5870291",
32
- "@atlaspack/plugin": "2.14.1-dev.40+3a5870291",
33
- "@atlaspack/profiler": "2.14.1-dev.40+3a5870291",
34
- "@atlaspack/rust": "3.0.1-dev.40+3a5870291",
35
- "@atlaspack/types": "2.14.1-dev.40+3a5870291",
36
- "@atlaspack/utils": "2.14.1-dev.40+3a5870291",
37
- "@atlaspack/workers": "2.14.1-dev.40+3a5870291",
23
+ "@atlaspack/build-cache": "2.13.3-dev.41+e01c10d4c",
24
+ "@atlaspack/cache": "2.13.3-dev.41+e01c10d4c",
25
+ "@atlaspack/diagnostic": "2.14.1-dev.41+e01c10d4c",
26
+ "@atlaspack/events": "2.14.1-dev.41+e01c10d4c",
27
+ "@atlaspack/feature-flags": "2.14.1-dev.41+e01c10d4c",
28
+ "@atlaspack/fs": "2.14.1-dev.41+e01c10d4c",
29
+ "@atlaspack/graph": "3.4.1-dev.41+e01c10d4c",
30
+ "@atlaspack/logger": "2.14.1-dev.41+e01c10d4c",
31
+ "@atlaspack/package-manager": "2.14.1-dev.41+e01c10d4c",
32
+ "@atlaspack/plugin": "2.14.1-dev.41+e01c10d4c",
33
+ "@atlaspack/profiler": "2.14.1-dev.41+e01c10d4c",
34
+ "@atlaspack/rust": "3.0.1-dev.41+e01c10d4c",
35
+ "@atlaspack/types": "2.14.1-dev.41+e01c10d4c",
36
+ "@atlaspack/utils": "2.14.1-dev.41+e01c10d4c",
37
+ "@atlaspack/workers": "2.14.1-dev.41+e01c10d4c",
38
38
  "@mischnic/json-sourcemap": "^0.1.0",
39
39
  "@parcel/source-map": "^2.1.1",
40
40
  "base-x": "^3.0.8",
@@ -48,7 +48,7 @@
48
48
  "semver": "^7.5.2"
49
49
  },
50
50
  "devDependencies": {
51
- "@atlaspack/babel-register": "2.14.0",
51
+ "@atlaspack/babel-register": "2.14.1",
52
52
  "@types/node": ">= 18",
53
53
  "graphviz": "^0.0.9",
54
54
  "jest-diff": "*",
@@ -67,5 +67,5 @@
67
67
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
68
68
  },
69
69
  "type": "commonjs",
70
- "gitHead": "3a587029124601f8578afe85cbe36d50ee182837"
70
+ "gitHead": "e01c10d4cedb9fe2d82cf311e65d33cae6936501"
71
71
  }
@@ -1697,11 +1697,14 @@ async function loadRequestGraph(options): Async<RequestGraph> {
1697
1697
  });
1698
1698
  }, 5000);
1699
1699
  let startTime = Date.now();
1700
- let events = await options.inputFS.getEventsSince(
1701
- options.watchDir,
1702
- snapshotPath,
1703
- opts,
1704
- );
1700
+ let events =
1701
+ process.env.ATLASPACK_BYPASS_CACHE_INVALIDATION === 'true'
1702
+ ? []
1703
+ : await options.inputFS.getEventsSince(
1704
+ options.watchDir,
1705
+ snapshotPath,
1706
+ opts,
1707
+ );
1705
1708
  clearTimeout(timeout);
1706
1709
 
1707
1710
  logger.verbose({