@featurevisor/types 2.6.7 → 2.7.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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.7.0](https://github.com/featurevisor/featurevisor/compare/v2.6.7...v2.7.0) (2026-02-05)
7
+
8
+
9
+ ### Features
10
+
11
+ * test by tags ([#383](https://github.com/featurevisor/featurevisor/issues/383)) ([54ddbca](https://github.com/featurevisor/featurevisor/commit/54ddbcaa271fea09008a1064ee58bdb2dbb8fcb9))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.6.7](https://github.com/featurevisor/featurevisor/compare/v2.6.6...v2.6.7) (2026-02-05)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "2.6.7",
3
+ "version": "2.7.0",
4
4
  "description": "Common Typescript types for Featurevisor",
5
5
  "main": "src/index.js",
6
6
  "module": "src/index.js",
@@ -47,5 +47,5 @@
47
47
  "url": "https://github.com/featurevisor/featurevisor/issues"
48
48
  },
49
49
  "license": "MIT",
50
- "gitHead": "369725e89e88f886a88bf52c22d55961bf04e9f6"
50
+ "gitHead": "aebf65e5be80d1f8a67453e45b4609af2490103e"
51
51
  }
package/src/test.d.ts CHANGED
@@ -45,7 +45,7 @@ export interface FeatureAssertion {
45
45
  description?: string;
46
46
  environment: EnvironmentKey;
47
47
  scope?: string;
48
- // @TODO: support `tag` later, similar to `scope` above
48
+ tag?: string;
49
49
  at?: Weight; // bucket weight: 0 to 100
50
50
 
51
51
  sticky?: StickyFeatures;