@contractspec/lib.observability 3.7.7 → 3.7.12
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 +47 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @contractspec/lib.observability
|
|
2
2
|
|
|
3
|
+
## 3.7.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [81256ea]
|
|
8
|
+
- Updated dependencies [2619dd8]
|
|
9
|
+
- Updated dependencies [81256ea]
|
|
10
|
+
- Updated dependencies [a4489bb]
|
|
11
|
+
- Updated dependencies [9cb304e]
|
|
12
|
+
- @contractspec/lib.contracts-spec@5.0.0
|
|
13
|
+
- @contractspec/lib.contracts-integrations@3.8.4
|
|
14
|
+
- @contractspec/lib.lifecycle@3.7.12
|
|
15
|
+
|
|
16
|
+
## 3.7.11
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- fix: release
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @contractspec/lib.contracts-integrations@3.8.3
|
|
23
|
+
- @contractspec/lib.contracts-spec@4.1.3
|
|
24
|
+
- @contractspec/lib.lifecycle@3.7.11
|
|
25
|
+
|
|
26
|
+
## 3.7.10
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 1a44cb6: feat: improve examples to increase coverage of Contracts type
|
|
31
|
+
- Updated dependencies [1a44cb6]
|
|
32
|
+
- @contractspec/lib.contracts-integrations@3.8.2
|
|
33
|
+
- @contractspec/lib.contracts-spec@4.1.2
|
|
34
|
+
- @contractspec/lib.lifecycle@3.7.10
|
|
35
|
+
|
|
36
|
+
## 3.7.9
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- fix: release
|
|
41
|
+
- Updated dependencies
|
|
42
|
+
- @contractspec/lib.contracts-integrations@3.8.1
|
|
43
|
+
- @contractspec/lib.contracts-spec@4.1.1
|
|
44
|
+
- @contractspec/lib.lifecycle@3.7.9
|
|
45
|
+
|
|
3
46
|
## 3.7.6
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
|
@@ -417,6 +460,7 @@
|
|
|
417
460
|
- 7f3203a: fix: make workspace test runs resilient when packages have no tests
|
|
418
461
|
|
|
419
462
|
Updates package test scripts to pass cleanly when no matching test files exist:
|
|
463
|
+
|
|
420
464
|
- Uses `bun test --pass-with-no-tests` in Bun-based packages that currently ship without test files.
|
|
421
465
|
- Uses `jest --passWithNoTests` for the UI kit web package.
|
|
422
466
|
- Adds `.vscode-test.mjs` for `vscode-contractspec` so VS Code extension test runs have an explicit config and stop failing on missing default configuration.
|
|
@@ -722,14 +766,17 @@
|
|
|
722
766
|
feat: Contract layers support (features, examples, app-configs)
|
|
723
767
|
|
|
724
768
|
### New CLI Commands
|
|
769
|
+
|
|
725
770
|
- `contractspec list layers` - List all contract layers with filtering
|
|
726
771
|
|
|
727
772
|
### Enhanced Commands
|
|
773
|
+
|
|
728
774
|
- `contractspec ci` - New `layers` check category validates features/examples/config
|
|
729
775
|
- `contractspec doctor` - New `layers` health checks
|
|
730
776
|
- `contractspec integrity` - Now shows layer statistics
|
|
731
777
|
|
|
732
778
|
### New APIs
|
|
779
|
+
|
|
733
780
|
- `discoverLayers()` - Scan workspace for all layer files
|
|
734
781
|
- `scanExampleSource()` - Parse ExampleSpec from source code
|
|
735
782
|
- `isExampleFile()` - Check if file is an example spec
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.observability",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.12",
|
|
4
4
|
"description": "OpenTelemetry-based observability primitives",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -27,17 +27,17 @@
|
|
|
27
27
|
"typecheck": "tsc --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@contractspec/lib.lifecycle": "3.7.
|
|
31
|
-
"@contractspec/lib.contracts-spec": "
|
|
32
|
-
"@contractspec/lib.contracts-integrations": "3.
|
|
30
|
+
"@contractspec/lib.lifecycle": "3.7.12",
|
|
31
|
+
"@contractspec/lib.contracts-spec": "5.0.0",
|
|
32
|
+
"@contractspec/lib.contracts-integrations": "3.8.4"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@opentelemetry/api": "*"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@contractspec/tool.typescript": "3.7.
|
|
38
|
+
"@contractspec/tool.typescript": "3.7.9",
|
|
39
39
|
"typescript": "^5.9.3",
|
|
40
|
-
"@contractspec/tool.bun": "3.7.
|
|
40
|
+
"@contractspec/tool.bun": "3.7.9"
|
|
41
41
|
},
|
|
42
42
|
"exports": {
|
|
43
43
|
".": {
|