@atlaskit/react-ufo 5.4.0 → 5.4.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/AGENTS.md CHANGED
@@ -111,9 +111,14 @@ graph LR
111
111
 
112
112
  The package supports multiple TTVC calculation algorithms:
113
113
 
114
- - `fy25.01`, `fy25.02`: Legacy revisions
115
- - `fy25.03`: Current default revision (`DEFAULT_TTVC_REVISION`)
116
- - `fy26.04`, `next`: Experimental revisions
114
+ - `fy25.01`, `fy25.02`, `fy25.03`: Legacy revisions
115
+ - `fy26.04`: Current default revision (`DEFAULT_TTVC_REVISION`)
116
+ - `next`: Experimental revision
117
+
118
+ > **Important**: Changing `DEFAULT_TTVC_REVISION` (i.e. cleaning up the feature gate after full
119
+ > rollout) is a **breaking change** and must use a **major version bump** in the changeset. This is
120
+ > because downstream consumers may depend on the specific revision for VC metric calculations and
121
+ > payload processing.
117
122
 
118
123
  ## Directory Structure
119
124
 
@@ -455,12 +460,18 @@ interface Config {
455
460
 
456
461
  When making changes:
457
462
 
458
- 1. Run unit tests: `cd platform && yarn test packages/react-ufo`
459
- 2. Run integration tests to verify VC measurement accuracy
460
- 3. Consider impact on downstream Glance/Performance Portal processing
461
- 4. Update sampling rates carefully as they affect data volume
462
- 5. Feature flag new functionality for gradual rollout
463
- 6. Coordinate with the FeObs team (`#help-devinfra-fe-observability`) for major changes
463
+ 1. **Always create a changeset** for any changes outside of tests and documentation:
464
+ ```bash
465
+ yarn changeset --ni @atlaskit/react-ufo patch "Description of change"
466
+ ```
467
+ Use `major` for breaking changes (e.g. changing `DEFAULT_TTVC_REVISION`), `minor` for new
468
+ features, and `patch` for bug fixes.
469
+ 2. Run unit tests: `cd platform && afm test packages/react-ufo/atlaskit`
470
+ 3. Run integration tests to verify VC measurement accuracy
471
+ 4. Consider impact on downstream Glance/Performance Portal processing
472
+ 5. Update sampling rates carefully as they affect data volume
473
+ 6. Feature flag new functionality for gradual rollout
474
+ 7. Coordinate with the FeObs team (`#help-devinfra-fe-observability`) for major changes
464
475
 
465
476
  ## Dangerous Operations — Never Do These
466
477
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaskit/ufo-interaction-ignore
2
2
 
3
+ ## 5.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`44280d02aa09f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/44280d02aa09f) -
8
+ Fix 3P metrics silently discarded when TTVC v3 disabled: use dynamic revision resolution via
9
+ getMostRecentVCRevision instead of hardcoded DEFAULT_TTVC_REVISION, update default to fy26.04, and
10
+ fix setUFOConfig enforcement to apply regardless of byExperience presence
11
+
3
12
  ## 5.4.0
4
13
 
5
14
  ### Minor Changes