etymd 0.8.0 → 0.9.1

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
@@ -1,5 +1,36 @@
1
1
  # etymd
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 8967d26: Content screen: skip binary files, and say how many were skipped
8
+
9
+ Compressed bytes contain any short sequence eventually, so a short pattern
10
+ matches inside binary assets by accident and is reported as a "line" of
11
+ mojibake. Every pattern added to a pattern file therefore raised the
12
+ false-positive rate across every repo that holds assets.
13
+
14
+ The cost of a noisy gate is not the noise. It is that the gate's answer becomes
15
+ "bypass again", and a trained-in `--no-verify` is what eventually waves a real
16
+ finding through with the rest.
17
+
18
+ Files whose first 8KB contain a NUL byte are now skipped rather than screened,
19
+ which closes that for every pattern at once instead of anchoring one pattern at
20
+ a time. The count is reported in the summary header (`· N binary skipped`), so
21
+ "no findings" can never quietly mean "the bytes were never looked at".
22
+
23
+ ## 0.9.0
24
+
25
+ ### Minor Changes
26
+
27
+ - 3cf2e53: State documents are now checked for truth, not only for age: the instruction-truth lens runs its
28
+ command-claim and path-claim checks over detected state docs, and resolves their `D-NNN` decision
29
+ references against the repo's decisions file — a citation of an entry that was never written is a
30
+ gap finding. References naming another record ("peer D-050") and citations against directory
31
+ decision conventions are skipped and disclosed, never accused. Script claims are also now
32
+ checkable in repos with no package manifest at all, where nothing could ever satisfy them.
33
+
3
34
  ## 0.8.0
4
35
 
5
36
  ### Minor Changes
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { section, theme, print, renderBaselineDrift, glyph } from './chunk-5BVKFJWM.js';
3
- import { scanProject } from './chunk-CIRNG736.js';
4
- import { VERSION } from './chunk-72Y2V7VF.js';
3
+ import { scanProject } from './chunk-UN7IAYM6.js';
4
+ import { VERSION } from './chunk-AQM4GYGN.js';
5
5
  import { readBaseline, summarizeBaselineDrift, isDriftEmpty, writeBaseline, deriveProfile } from './chunk-C7LBUFNU.js';
6
6
  import { PACK_VERSION } from './chunk-6DUDIVIC.js';
7
7
  import './chunk-IV3FYVTS.js';
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
- export { run } from './chunk-KBYEWHYX.js';
3
- import './chunk-PRIH2NZF.js';
2
+ export { run } from './chunk-ULM25GWG.js';
3
+ import './chunk-KGVRZ6WC.js';
4
4
  import './chunk-JSUYV26K.js';
5
5
  import './chunk-OAFYLBVG.js';
6
6
  import './chunk-D2RI3CCT.js';
7
7
  import './chunk-5BVKFJWM.js';
8
- import './chunk-CIRNG736.js';
9
- import './chunk-72Y2V7VF.js';
8
+ import './chunk-UN7IAYM6.js';
9
+ import './chunk-AQM4GYGN.js';
10
10
  import './chunk-C7LBUFNU.js';
11
11
  import './chunk-6DUDIVIC.js';
12
12
  import './chunk-IV3FYVTS.js';
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import { print, theme } from './chunk-5BVKFJWM.js';
3
- import { scanProject } from './chunk-CIRNG736.js';
4
- import './chunk-72Y2V7VF.js';
3
+ import { scanProject } from './chunk-UN7IAYM6.js';
4
+ import './chunk-AQM4GYGN.js';
5
5
  import { ETYMD_DIR } from './chunk-C7LBUFNU.js';
6
6
  import './chunk-6DUDIVIC.js';
7
7
  import './chunk-IV3FYVTS.js';
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  // package.json
3
3
  var package_default = {
4
- version: "0.8.0"};
4
+ version: "0.9.1"};
5
5
 
6
6
  // src/version.ts
7
7
  var VERSION = package_default.version;