@atlaspack/feature-flags 2.15.0 → 2.15.1
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 +2 -0
- package/lib/types.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.js +2 -0
- package/src/types.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaspack/feature-flags
|
|
2
2
|
|
|
3
|
+
## 2.15.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#551](https://github.com/atlassian-labs/atlaspack/pull/551) [`30f6017`](https://github.com/atlassian-labs/atlaspack/commit/30f60175ba4d272c5fc193973c63bc298584775b) Thanks [@yamadapc](https://github.com/yamadapc)! - Log request tracker invalidation counts on start-up
|
|
8
|
+
|
|
3
9
|
## 2.15.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/lib/index.js
CHANGED
|
@@ -28,6 +28,8 @@ const DEFAULT_FEATURE_FLAGS = exports.DEFAULT_FEATURE_FLAGS = {
|
|
|
28
28
|
cachePerformanceImprovements: false,
|
|
29
29
|
inlineStringReplacementPerf: false,
|
|
30
30
|
conditionalBundlingAsyncRuntime: false,
|
|
31
|
+
// Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
32
|
+
verboseRequestInvalidationStats: true,
|
|
31
33
|
conditionalBundlingReporterDuplicateFix: false,
|
|
32
34
|
resolveBundlerConfigFromCwd: false
|
|
33
35
|
};
|
package/lib/types.d.ts
CHANGED
|
@@ -62,6 +62,11 @@ export type FeatureFlags = {
|
|
|
62
62
|
*/
|
|
63
63
|
reduceResolverStringCreation: boolean;
|
|
64
64
|
|
|
65
|
+
/**
|
|
66
|
+
* Add verbose metrics for request tracker invalidation
|
|
67
|
+
*/
|
|
68
|
+
verboseRequestInvalidationStats: boolean;
|
|
69
|
+
|
|
65
70
|
/**
|
|
66
71
|
* Fixes source maps for inline bundles
|
|
67
72
|
*/
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -23,6 +23,8 @@ export const DEFAULT_FEATURE_FLAGS: FeatureFlags = {
|
|
|
23
23
|
cachePerformanceImprovements: false,
|
|
24
24
|
inlineStringReplacementPerf: false,
|
|
25
25
|
conditionalBundlingAsyncRuntime: false,
|
|
26
|
+
// Default to true as it's a monitoring change. Can be turned off if necessary.
|
|
27
|
+
verboseRequestInvalidationStats: true,
|
|
26
28
|
conditionalBundlingReporterDuplicateFix: false,
|
|
27
29
|
resolveBundlerConfigFromCwd: false,
|
|
28
30
|
};
|
package/src/types.js
CHANGED
|
@@ -53,6 +53,10 @@ export type FeatureFlags = {|
|
|
|
53
53
|
* conversions
|
|
54
54
|
*/
|
|
55
55
|
reduceResolverStringCreation: boolean,
|
|
56
|
+
/**
|
|
57
|
+
* Add verbose metrics for request tracker invalidation
|
|
58
|
+
*/
|
|
59
|
+
verboseRequestInvalidationStats: boolean,
|
|
56
60
|
/**
|
|
57
61
|
* Fixes source maps for inline bundles
|
|
58
62
|
*/
|