featurely-site-manager 1.1.29 → 1.3.0
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 +38 -0
- package/README.md +250 -771
- package/dist/index.d.mts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.js +238 -13
- package/dist/index.mjs +238 -13
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,44 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.0] - 2026-04-28
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Beta Program Support**: Feature flags now support beta-only targeting
|
|
13
|
+
- `betaUsersOnly` field on feature flags - restrict features to enrolled beta users
|
|
14
|
+
- `betaUserEmails` array in site config - list of users enrolled in beta program
|
|
15
|
+
- Beta enrollment status is automatically evaluated in `isFeatureEnabled()`
|
|
16
|
+
- Percentage rollouts apply within the beta user group when `betaUsersOnly` is true
|
|
17
|
+
- Users can enroll/unenroll via project settings in the Featurely dashboard
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- Feature flag evaluation now checks beta enrollment before other targeting rules
|
|
22
|
+
- Non-beta users will never see features marked with `betaUsersOnly: true`
|
|
23
|
+
- SiteConfig interface now includes `betaUserEmails` field
|
|
24
|
+
|
|
25
|
+
## [1.2.0] - 2026-04-21
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- **Advanced Analytics Features**:
|
|
30
|
+
- Click heatmap tracking with coordinate sampling (`enableHeatmaps`, `heatmapSampleRate`)
|
|
31
|
+
- Rage click detection for frustration analysis (`enableRageClickDetection`)
|
|
32
|
+
- Scroll depth tracking at 25%, 50%, 75%, 90%, 100% milestones (`enableScrollTracking`)
|
|
33
|
+
- Performance monitoring for resource timing and long tasks (`enablePerformanceTracking`)
|
|
34
|
+
- Revenue tracking with `trackRevenue(eventName, amount, currency, properties)` method
|
|
35
|
+
- Heatmap events now include viewport-normalized coordinates and scroll position
|
|
36
|
+
- Rage click events track element details and click count
|
|
37
|
+
- Resource timing events filter out analytics scripts and track cache status
|
|
38
|
+
- Long task detection for UI blocking tasks >100ms
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- Analytics configuration now supports granular control over tracking features
|
|
43
|
+
- Heatmap clicks are sampled (default 10%) to reduce data volume
|
|
44
|
+
- Performance tracking filters resources <50ms to focus on significant delays
|
|
45
|
+
|
|
8
46
|
## [1.1.0] - 2026-03-15
|
|
9
47
|
|
|
10
48
|
### Added
|