Major Changes
-
96f0a82: Widen
@just-func/typesfrom^0.5.1to^0.6.0.A caret range on a
0.xversion cannot cross a minor boundary, so^0.5.1was
permanently stuck on@just-func/types@0.5.x, which depends ontype-plus@^5.0.0.
That meant every consumer of@unional/events-plusresolved a transitive
type-plus@5.6.0in their tree, alongside whatever newer type-plus version their
other first-party dependencies pulled in.@just-func/types@0.6.0depends ontype-plus@8.0.0-beta.10. Widening the range
lets consumers actually reach it, removing the stale transitivetype-plus@5.6.0
from their dependency tree.This is a major bump, not minor, because
@just-func/types'JustDuo,JustEmpty,
JustMetaandJustUnotypes are imported directly intots/justEvent.tsand leak
into the emitted.d.tsfiles (esm/justEvent.d.ts,cjs/justEvent.d.ts, and the
package's publicindex.d.tsre-exports that build on them). Consumers pick up
@just-func/types@0.6.0's types — built againsttype-plus@8.0.0-beta.10— through
those public type surfaces, andtype-plus@8also introduces a new
typescript >= 5.6.0peer dependency that consumers now inherit as well.