@contractspec/lib.observability 3.7.7 → 3.7.10
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 +24 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @contractspec/lib.observability
|
|
2
2
|
|
|
3
|
+
## 3.7.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1a44cb6: feat: improve examples to increase coverage of Contracts type
|
|
8
|
+
- Updated dependencies [1a44cb6]
|
|
9
|
+
- @contractspec/lib.contracts-integrations@3.8.2
|
|
10
|
+
- @contractspec/lib.contracts-spec@4.1.2
|
|
11
|
+
- @contractspec/lib.lifecycle@3.7.10
|
|
12
|
+
|
|
13
|
+
## 3.7.9
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- fix: release
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @contractspec/lib.contracts-integrations@3.8.1
|
|
20
|
+
- @contractspec/lib.contracts-spec@4.1.1
|
|
21
|
+
- @contractspec/lib.lifecycle@3.7.9
|
|
22
|
+
|
|
3
23
|
## 3.7.6
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -417,6 +437,7 @@
|
|
|
417
437
|
- 7f3203a: fix: make workspace test runs resilient when packages have no tests
|
|
418
438
|
|
|
419
439
|
Updates package test scripts to pass cleanly when no matching test files exist:
|
|
440
|
+
|
|
420
441
|
- Uses `bun test --pass-with-no-tests` in Bun-based packages that currently ship without test files.
|
|
421
442
|
- Uses `jest --passWithNoTests` for the UI kit web package.
|
|
422
443
|
- 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 +743,17 @@
|
|
|
722
743
|
feat: Contract layers support (features, examples, app-configs)
|
|
723
744
|
|
|
724
745
|
### New CLI Commands
|
|
746
|
+
|
|
725
747
|
- `contractspec list layers` - List all contract layers with filtering
|
|
726
748
|
|
|
727
749
|
### Enhanced Commands
|
|
750
|
+
|
|
728
751
|
- `contractspec ci` - New `layers` check category validates features/examples/config
|
|
729
752
|
- `contractspec doctor` - New `layers` health checks
|
|
730
753
|
- `contractspec integrity` - Now shows layer statistics
|
|
731
754
|
|
|
732
755
|
### New APIs
|
|
756
|
+
|
|
733
757
|
- `discoverLayers()` - Scan workspace for all layer files
|
|
734
758
|
- `scanExampleSource()` - Parse ExampleSpec from source code
|
|
735
759
|
- `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.10",
|
|
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": "4.
|
|
32
|
-
"@contractspec/lib.contracts-integrations": "3.
|
|
30
|
+
"@contractspec/lib.lifecycle": "3.7.10",
|
|
31
|
+
"@contractspec/lib.contracts-spec": "4.1.2",
|
|
32
|
+
"@contractspec/lib.contracts-integrations": "3.8.2"
|
|
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.8",
|
|
39
39
|
"typescript": "^5.9.3",
|
|
40
|
-
"@contractspec/tool.bun": "3.7.
|
|
40
|
+
"@contractspec/tool.bun": "3.7.8"
|
|
41
41
|
},
|
|
42
42
|
"exports": {
|
|
43
43
|
".": {
|