@atlaspack/feature-flags 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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaspack/feature-flags
2
2
 
3
+ ## 2.14.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#511](https://github.com/atlassian-labs/atlaspack/pull/511) [`11d6f16`](https://github.com/atlassian-labs/atlaspack/commit/11d6f16b6397dee2f217167e5c98b39edb63f7a7) Thanks [@yamadapc](https://github.com/yamadapc)! - Clean-up dylib worker threads segmentation fault bug fix feature-flag
8
+
3
9
  ## 2.14.2
4
10
 
5
11
  ### Patch Changes
package/lib/index.js CHANGED
@@ -25,7 +25,6 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
25
25
  conditionalBundlingNestedRuntime: false,
26
26
  patchProjectPaths: false,
27
27
  cachePerformanceImprovements: false,
28
- enableRustWorkerThreadDylibHack: true,
29
28
  inlineStringReplacementPerf: false,
30
29
  conditionalBundlingAsyncRuntime: false,
31
30
  conditionalBundlingReporterDuplicateFix: false
package/lib/types.d.ts CHANGED
@@ -72,11 +72,6 @@ export type FeatureFlags = {
72
72
  */
73
73
  patchProjectPaths: boolean;
74
74
 
75
- /**
76
- * Enable loading of the parcel dylib in the main thread.
77
- */
78
- enableRustWorkerThreadDylibHack: boolean;
79
-
80
75
  /**
81
76
  * Enables optimized inline string replacement perf for the packager.
82
77
  * Used heavily for inline bundles.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/feature-flags",
3
- "version": "2.14.2",
3
+ "version": "2.14.3",
4
4
  "description": "Provides internal feature-flags for the atlaspack codebase.",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
package/src/index.js CHANGED
@@ -20,7 +20,6 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
20
20
  conditionalBundlingNestedRuntime: false,
21
21
  patchProjectPaths: false,
22
22
  cachePerformanceImprovements: false,
23
- enableRustWorkerThreadDylibHack: true,
24
23
  inlineStringReplacementPerf: false,
25
24
  conditionalBundlingAsyncRuntime: false,
26
25
  conditionalBundlingReporterDuplicateFix: false,
package/src/types.js CHANGED
@@ -61,10 +61,6 @@ export type FeatureFlags = {|
61
61
  * This feature is experimental and should not be used in production. It will used to test downloadble cache artefacts.
62
62
  */
63
63
  patchProjectPaths: boolean,
64
- /**
65
- * Enable loading of the parcel dylib in the main thread.
66
- */
67
- enableRustWorkerThreadDylibHack: boolean,
68
64
  /**
69
65
  * Enables optimized inline string replacement perf for the packager.
70
66
  * Used heavily for inline bundles.