Releases: repobuddy/test-progress-tracker
Release list
v2.0.8
Patch Changes
-
8b9abd5: Rebuild with tsdown, and move the runtime
unpartialdependency to^1.0.7.No API changes.
init,append,load,monitorand theTestResults/
CoverageSummary/FSContexttypes are all unchanged, and the package stays
CommonJS atcjs/index.jswithtypingsatcjs/index.d.ts, so
jest-progress-tracker's^2.0.6range keeps resolving and keeps working.What does change is the emitted JavaScript:
tsdownreplaces thetsc -p tsconfig.cjs.jsonbuild. The per-module CommonJS
shape is preserved (unbundle), as are the.js,.d.tsand.js.mappaths.- The build target moves from ES2015 to ES2022, and
libfromes2015toes2023.
An explicitlibreplaces the default set rather than adding to it, so the old
value was silently withholdingError.causeandAggregateError. - Node builtins are imported through the
node:protocol, which reaches the
published.d.tsfiles. Consumers need@types/node16 or newer to typecheck
against them. - Four declaration files for internal-only modules (
compress,constants,
minify,store), plus the type-onlyinterface.js, are no longer emitted:
nothing reachable from the entry point referenced them.cjs/index.jsand the
declarations it re-exports are unaffected.
v2.0.7
Patch Changes
-
941f3ad: Stop shipping test files in the published tarball.
fileswas["cjs", "ts"], which
included the fivets/*.spec.tssources; it is now scoped with a negative glob
covering every test suffix the jest config matches.Move the release pipeline to changesets publishing over GitHub OIDC (npm trusted
publishing), so the package publishes with no repository secrets. Converts the
toolchain from yarn to pnpm and points repository metadata at thecyberuniorg.