formulab 0.27.0 → 0.27.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -2
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -5,14 +5,32 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.27.2] - 2026-08-06
9
+
10
+ ### Changed
11
+
12
+ - Repository tooling only, no change to the published API. Added an audit that lists
13
+ constants which decide a verdict without saying where they come from, sorting them into
14
+ sourced, explicitly-unsourced, and silent. It reports rather than fails: it follows data
15
+ flow one hop, so a table reached through a local and compared through a field is not
16
+ seen, and a check that under-reports must not gate. Run it with
17
+ `npm run audit:constant-provenance`.
18
+
19
+ ## [0.27.1] - 2026-08-06
20
+
21
+ ### Fixed
22
+
23
+ - Restored the code spans that went missing from the previous entry, which left it naming
24
+ neither the module it describes nor the function it contrasts against.
25
+
8
26
  ## [0.27.0] - 2026-08-06
9
27
 
10
28
  ### Added
11
29
 
12
- - ** — the lot size ranges the sampling tables are indexed by are now exported.**
30
+ - **`quality/aql` — the lot size ranges the sampling tables are indexed by are now exported.**
13
31
 
14
32
  A caller that wants to present one row per lot size range could not get the boundaries out
15
- of : it returns a plan, not the bounds that produced it. The only way was to restate
33
+ of `aql()`: it returns a plan, not the bounds that produced it. The only way was to restate
16
34
  the series on the consumer side, which makes a second source for the same figures — the day
17
35
  a boundary moves, the consumer keeps listing the old one.
18
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "formulab",
3
- "version": "0.27.0",
3
+ "version": "0.27.2",
4
4
  "description": "Manufacturing & Engineering calculation formulas library - 211 industrial calculations across 15 domains for OEE, Cpk, SPC, FMEA, Nelson Rules, metal weight, CNC machining, GD&T, battery, environmental, pipe flow, logistics, IE time study, and more",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -172,6 +172,7 @@
172
172
  "test:coverage": "vitest run --coverage",
173
173
  "test:watch": "vitest",
174
174
  "docs:api": "typedoc",
175
- "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\""
175
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
176
+ "audit:constant-provenance": "node scripts/audit-constant-provenance.mjs src"
176
177
  }
177
178
  }