@atlaspack/feature-flags 2.14.1-canary.511 → 2.14.1-canary.513

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 +19 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @atlaspack/feature-flags
2
2
 
3
+ ## 2.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1050](https://github.com/atlassian-labs/atlaspack/pull/1050) [`c80be61`](https://github.com/atlassian-labs/atlaspack/commit/c80be618e42014208fed60b7a2dccc2e47d53aed) Thanks [@marcins](https://github.com/marcins)! - Add native PackagingRequest, implement temporary JS version for testing.
8
+
9
+ ### Patch Changes
10
+
11
+ - [#1051](https://github.com/atlassian-labs/atlaspack/pull/1051) [`2d3c616`](https://github.com/atlassian-labs/atlaspack/commit/2d3c616bb2ebef55d6850e8ca9eedf13c72f5386) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Add native end-to-end build pipeline via BuildRequest.
12
+
13
+ When the `fullNative` feature flag is enabled, the entire build pipeline (asset graph, bundle graph,
14
+ packaging) runs natively in Rust via a single NAPI call, bypassing the JS request tracker.
15
+
16
+ Key changes:
17
+ - Add `BuildRequest` composing `AssetGraphRequest` and `BundleGraphRequest` with a packaging stub
18
+ - Add `Atlaspack::build()` method and `atlaspack_napi_build` NAPI binding
19
+ - Add `fullNative` feature flag gating the native path in `Atlaspack.ts._build()`
20
+ - Packaging step is a no-op pending PackagingRequest implementation
21
+
3
22
  ## 2.30.1
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/feature-flags",
3
- "version": "2.14.1-canary.511+ea9730dd9",
3
+ "version": "2.14.1-canary.513+4fef2c8c4",
4
4
  "description": "Provides internal feature-flags for the atlaspack codebase.",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -20,5 +20,5 @@
20
20
  "node": ">= 16.0.0"
21
21
  },
22
22
  "type": "commonjs",
23
- "gitHead": "ea9730dd953d0512c2ab97cbba810e7a297a29a6"
23
+ "gitHead": "4fef2c8c4e5f2f0b93994c1d035a8fd47dc44d37"
24
24
  }