@atlaspack/core 2.16.2-canary.127 → 2.16.2-canary.128
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 +33 -0
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @atlaspack/core
|
|
2
2
|
|
|
3
|
+
## 2.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#640](https://github.com/atlassian-labs/atlaspack/pull/640) [`dbb4072`](https://github.com/atlassian-labs/atlaspack/commit/dbb40721ebeb45990a14ba04e6b44e7f836fb32d) Thanks [@JakeLane](https://github.com/JakeLane)! - Clean up conditional bundling feature flags
|
|
8
|
+
|
|
9
|
+
- [#693](https://github.com/atlassian-labs/atlaspack/pull/693) [`18a57cf`](https://github.com/atlassian-labs/atlaspack/commit/18a57cf8a4789b2de5ad8e2676f317a26cc91417) Thanks [@mattcompiles](https://github.com/mattcompiles)! - These packages should have been bumped in [pull request 691](https://github.com/atlassian-labs/atlaspack/pull/691).
|
|
10
|
+
|
|
11
|
+
Rectifying by creating a new changeset now.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#690](https://github.com/atlassian-labs/atlaspack/pull/690) [`c4415a4`](https://github.com/atlassian-labs/atlaspack/commit/c4415a455543d984ca28452c2cb87a794d22497c) Thanks [@yamadapc](https://github.com/yamadapc)! - Bug fix for build abort state corruption
|
|
16
|
+
|
|
17
|
+
- [#685](https://github.com/atlassian-labs/atlaspack/pull/685) [`f0f7c71`](https://github.com/atlassian-labs/atlaspack/commit/f0f7c7168a1d3d18c6f30d2daed611275692b7c5) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Fixes an issue where star re-exports of empty files (usually occurring in compiled typescript libraries) could cause exports to undefined at runtime.
|
|
18
|
+
Fix is behind the feature-flag `emptyFileStarRexportFix`.
|
|
19
|
+
|
|
20
|
+
- [#678](https://github.com/atlassian-labs/atlaspack/pull/678) [`3ba1aee`](https://github.com/atlassian-labs/atlaspack/commit/3ba1aee6a794a26b2f0255aaf6d003981532d0ae) Thanks [@marcins](https://github.com/marcins)! - Move adding of Atlaspack V3 disposable to be conditional on Atlaspack V3
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`dbb4072`](https://github.com/atlassian-labs/atlaspack/commit/dbb40721ebeb45990a14ba04e6b44e7f836fb32d), [`becf977`](https://github.com/atlassian-labs/atlaspack/commit/becf977f625d5ee46dae3d4c679f173bf5f40cc0), [`becf977`](https://github.com/atlassian-labs/atlaspack/commit/becf977f625d5ee46dae3d4c679f173bf5f40cc0), [`c4415a4`](https://github.com/atlassian-labs/atlaspack/commit/c4415a455543d984ca28452c2cb87a794d22497c), [`f0f7c71`](https://github.com/atlassian-labs/atlaspack/commit/f0f7c7168a1d3d18c6f30d2daed611275692b7c5), [`de23e0c`](https://github.com/atlassian-labs/atlaspack/commit/de23e0ce49d5504fe3947ac26640a3d951087da3), [`c9631af`](https://github.com/atlassian-labs/atlaspack/commit/c9631aff284b2c1c27e8a52f9da392ce65d666e8), [`18a57cf`](https://github.com/atlassian-labs/atlaspack/commit/18a57cf8a4789b2de5ad8e2676f317a26cc91417), [`a5ed1b4`](https://github.com/atlassian-labs/atlaspack/commit/a5ed1b414498560f393ff491af4da25b6e8dde56)]:
|
|
23
|
+
- @atlaspack/feature-flags@2.19.0
|
|
24
|
+
- @atlaspack/utils@2.17.0
|
|
25
|
+
- @atlaspack/rust@3.4.1
|
|
26
|
+
- @atlaspack/package-manager@2.14.18
|
|
27
|
+
- @atlaspack/fs@2.15.13
|
|
28
|
+
- @atlaspack/cache@3.2.13
|
|
29
|
+
- @atlaspack/graph@3.5.7
|
|
30
|
+
- @atlaspack/workers@2.14.18
|
|
31
|
+
- @atlaspack/logger@2.14.13
|
|
32
|
+
- @atlaspack/profiler@2.14.15
|
|
33
|
+
- @atlaspack/types@2.15.8
|
|
34
|
+
- @atlaspack/plugin@2.14.18
|
|
35
|
+
|
|
3
36
|
## 2.18.8
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/core",
|
|
3
|
-
"version": "2.16.2-canary.
|
|
3
|
+
"version": "2.16.2-canary.128+8847dd115",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -21,21 +21,21 @@
|
|
|
21
21
|
"check-ts": "tsc --noEmit index.d.ts"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@atlaspack/build-cache": "2.13.3-canary.
|
|
25
|
-
"@atlaspack/cache": "3.1.1-canary.
|
|
26
|
-
"@atlaspack/diagnostic": "2.14.1-canary.
|
|
27
|
-
"@atlaspack/events": "2.14.1-canary.
|
|
28
|
-
"@atlaspack/feature-flags": "2.14.1-canary.
|
|
29
|
-
"@atlaspack/fs": "2.14.5-canary.
|
|
30
|
-
"@atlaspack/graph": "3.4.1-canary.
|
|
31
|
-
"@atlaspack/logger": "2.14.5-canary.
|
|
32
|
-
"@atlaspack/package-manager": "2.14.5-canary.
|
|
33
|
-
"@atlaspack/plugin": "2.14.5-canary.
|
|
34
|
-
"@atlaspack/profiler": "2.14.1-canary.
|
|
35
|
-
"@atlaspack/rust": "3.2.1-canary.
|
|
36
|
-
"@atlaspack/types": "2.14.5-canary.
|
|
37
|
-
"@atlaspack/utils": "2.14.5-canary.
|
|
38
|
-
"@atlaspack/workers": "2.14.5-canary.
|
|
24
|
+
"@atlaspack/build-cache": "2.13.3-canary.196+8847dd115",
|
|
25
|
+
"@atlaspack/cache": "3.1.1-canary.128+8847dd115",
|
|
26
|
+
"@atlaspack/diagnostic": "2.14.1-canary.196+8847dd115",
|
|
27
|
+
"@atlaspack/events": "2.14.1-canary.196+8847dd115",
|
|
28
|
+
"@atlaspack/feature-flags": "2.14.1-canary.196+8847dd115",
|
|
29
|
+
"@atlaspack/fs": "2.14.5-canary.128+8847dd115",
|
|
30
|
+
"@atlaspack/graph": "3.4.1-canary.196+8847dd115",
|
|
31
|
+
"@atlaspack/logger": "2.14.5-canary.128+8847dd115",
|
|
32
|
+
"@atlaspack/package-manager": "2.14.5-canary.128+8847dd115",
|
|
33
|
+
"@atlaspack/plugin": "2.14.5-canary.128+8847dd115",
|
|
34
|
+
"@atlaspack/profiler": "2.14.1-canary.196+8847dd115",
|
|
35
|
+
"@atlaspack/rust": "3.2.1-canary.128+8847dd115",
|
|
36
|
+
"@atlaspack/types": "2.14.5-canary.128+8847dd115",
|
|
37
|
+
"@atlaspack/utils": "2.14.5-canary.128+8847dd115",
|
|
38
|
+
"@atlaspack/workers": "2.14.5-canary.128+8847dd115",
|
|
39
39
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
40
40
|
"@parcel/source-map": "^2.1.1",
|
|
41
41
|
"base-x": "^3.0.8",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
61
61
|
},
|
|
62
62
|
"type": "commonjs",
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "8847dd1150b7d2f43211067ba88002c1d34181e3"
|
|
64
64
|
}
|