Releases: visjs/vis-util
Releases · visjs/vis-util
v4.3.2
v4.3.1
v4.3.0
v4.2.0
v4.1.0
v4.0.2
v4.0.1
v4.0.0
4.0.0 (2020-02-29)
- feat(build)!: use common build process (#144) (6a52bca), closes #144 visjs/vis-dev-utils#10
BREAKING CHANGES
- The old bundles are no longer present in the package. It has to be replaced by import * as util from 'vis-util/esnext';. I'll do that in all of our projects so don't bother updating to this, it most likely won't work anyway.
v3.0.0
3.0.0 (2020-02-19)
BREAKING CHANGES
- There's no randomUUID function anymore.
It was simply renamed and reexported. I don't really see the advantage
in this. Timeline and Network will have to use the uuid package
directly:
import { default as randomUUID } from "uuid/v4";
instead of
import { randomUUID } from "vis-util";
We export this from our builds but AFAIK it's all undocumented. Do we
consider this to be a part of the public API? If so this should probably
be posponed and deprecation warning added in the mean time to give
people more time to adjust.