@featurevisor/types 2.6.0 → 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,75 @@
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
+
17
+ ## [2.6.7](https://github.com/featurevisor/featurevisor/compare/v2.6.6...v2.6.7) (2026-02-05)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * trigger publish ([00ef864](https://github.com/featurevisor/featurevisor/commit/00ef864de50df54d258e0dccbd010005b18aa338))
23
+ * upgrade to Lerna v9 ([756f3ad](https://github.com/featurevisor/featurevisor/commit/756f3ada646d0ab3d7c2bd685ce7bfe2748b56b2))
24
+
25
+
26
+
27
+
28
+
29
+ ## [2.6.6](https://github.com/featurevisor/featurevisor/compare/v2.6.5...v2.6.6) (2026-02-05)
30
+
31
+ **Note:** Version bump only for package @featurevisor/types
32
+
33
+
34
+
35
+
36
+
37
+ ## [2.6.5](https://github.com/featurevisor/featurevisor/compare/v2.6.4...v2.6.5) (2026-02-05)
38
+
39
+ **Note:** Version bump only for package @featurevisor/types
40
+
41
+
42
+
43
+
44
+
45
+ ## [2.6.4](https://github.com/featurevisor/featurevisor/compare/v2.6.3...v2.6.4) (2026-02-05)
46
+
47
+ **Note:** Version bump only for package @featurevisor/types
48
+
49
+
50
+
51
+
52
+
53
+ ## [2.6.3](https://github.com/featurevisor/featurevisor/compare/v2.6.2...v2.6.3) (2026-02-05)
54
+
55
+
56
+ ### Bug Fixes
57
+
58
+ * trigger publish ([1c9be6a](https://github.com/featurevisor/featurevisor/commit/1c9be6aa5ba10403bedd8a4b7caa54953c72e774))
59
+
60
+
61
+
62
+
63
+
64
+ ## [2.6.2](https://github.com/featurevisor/featurevisor/compare/v2.6.1...v2.6.2) (2026-02-05)
65
+
66
+
67
+ ### Bug Fixes
68
+
69
+ * update types ([#384](https://github.com/featurevisor/featurevisor/issues/384)) ([579049a](https://github.com/featurevisor/featurevisor/commit/579049a2d1efaa17032fe680f83576197cebcf68))
70
+
71
+
72
+
73
+
74
+
6
75
  # [2.6.0](https://github.com/featurevisor/featurevisor/compare/v2.5.0...v2.6.0) (2026-01-25)
7
76
 
8
77
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2025 Fahad Heylaal (https://fahad19.com)
3
+ Copyright (c) 2026 Fahad Heylaal (https://fahad19.com)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@featurevisor/types",
3
- "version": "2.6.0",
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": "e5dafb8a51d7653e35fe17cacc0c14d7e95f69d0"
50
+ "gitHead": "aebf65e5be80d1f8a67453e45b4609af2490103e"
51
51
  }
package/src/index.js CHANGED
@@ -1 +1 @@
1
- // empty
1
+ // empty line
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;