@atlaspack/feature-flags 2.18.1 → 2.18.2
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 +6 -0
- package/lib/index.js +1 -0
- package/lib/types.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.js +1 -0
- package/src/types.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaspack/feature-flags
|
|
2
2
|
|
|
3
|
+
## 2.18.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#652](https://github.com/atlassian-labs/atlaspack/pull/652) [`644b157`](https://github.com/atlassian-labs/atlaspack/commit/644b157dee72a871acc2d0facf0b87b8eea51956) Thanks [@yamadapc](https://github.com/yamadapc)! - Fix bugs related to build aborts. Builds and cache writes will no longer be aborted.
|
|
8
|
+
|
|
3
9
|
## 2.18.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/lib/index.js
CHANGED
|
@@ -30,6 +30,7 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
|
30
30
|
environmentDeduplication: false,
|
|
31
31
|
inlineStringReplacementPerf: false,
|
|
32
32
|
conditionalBundlingAsyncRuntime: false,
|
|
33
|
+
fixBuildAbortCorruption: false,
|
|
33
34
|
// Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
34
35
|
verboseRequestInvalidationStats: true,
|
|
35
36
|
conditionalBundlingReporterDuplicateFix: false,
|
package/lib/types.d.ts
CHANGED
|
@@ -36,6 +36,11 @@ export type FeatureFlags = {
|
|
|
36
36
|
*/
|
|
37
37
|
inlineRequiresMultiThreading: boolean;
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* Disables aborting of builds and fixes bugs related to state corruption on abort.
|
|
41
|
+
*/
|
|
42
|
+
fixBuildAbortCorruption: boolean;
|
|
43
|
+
|
|
39
44
|
/**
|
|
40
45
|
* Enable VCS mode. Expected values are:
|
|
41
46
|
* - OLD - default value, return watchman result
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -31,6 +31,7 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
|
|
|
31
31
|
environmentDeduplication: false,
|
|
32
32
|
inlineStringReplacementPerf: false,
|
|
33
33
|
conditionalBundlingAsyncRuntime: false,
|
|
34
|
+
fixBuildAbortCorruption: false,
|
|
34
35
|
// Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
35
36
|
verboseRequestInvalidationStats: true,
|
|
36
37
|
conditionalBundlingReporterDuplicateFix: false,
|
package/src/types.js
CHANGED
|
@@ -30,6 +30,10 @@ export type FeatureFlags = {|
|
|
|
30
30
|
* Run inline requires optimizer in the rayon thread pool.
|
|
31
31
|
*/
|
|
32
32
|
inlineRequiresMultiThreading: boolean,
|
|
33
|
+
/**
|
|
34
|
+
* Disables aborting of builds and fixes bugs related to state corruption on abort.
|
|
35
|
+
*/
|
|
36
|
+
fixBuildAbortCorruption: boolean,
|
|
33
37
|
/**
|
|
34
38
|
* Enable VCS mode. Expected values are:
|
|
35
39
|
* - OLD - default value, return watchman result
|