Skip to content

Releases: visjs/vis-util

v4.3.3

18 Jul 16:20
d859cbd

Choose a tag to compare

4.3.3 (2020-07-18)

Bug Fixes

  • deep-object-assign: prohibit console.log (#446) (d859cbd)

v4.3.2

15 Jun 14:16
e5e9aa9

Choose a tag to compare

4.3.2 (2020-06-15)

Bug Fixes

  • ts: missed readonly fix in previous PR (#386) (e5e9aa9)

v4.3.1

15 Jun 12:58
59eefd7

Choose a tag to compare

4.3.1 (2020-06-15)

Bug Fixes

  • ts: change readonly array syntax to support older tsc (#385) (59eefd7)

v4.3.0

14 Jun 16:43
c19d1f1

Choose a tag to compare

4.3.0 (2020-06-14)

Features

  • deep-object-assign: add pure version (#383) (c19d1f1)

v4.2.0

13 Jun 17:12
6dc44c9

Choose a tag to compare

4.2.0 (2020-06-13)

Features

  • deep-object-assign: improve type safety (#380) (6dc44c9)

v4.1.0

06 Jun 20:02
6eaa9cc

Choose a tag to compare

4.1.0 (2020-06-06)

Features

  • add deep object assing with delete functionality (#321) (ce5c536)

v4.0.2

17 May 17:34
ece3e76

Choose a tag to compare

4.0.2 (2020-05-17)

Bug Fixes

  • deps: update dependency vis-dev-utils to v2.2.13 (#301) (ece3e76)

v4.0.1

16 May 21:18
e895072

Choose a tag to compare

4.0.1 (2020-05-16)

Bug Fixes

  • deps: update dependency vis-dev-utils to v2.2.10 (#297) (e895072)

v4.0.0

29 Feb 15:35
6a52bca

Choose a tag to compare

4.0.0 (2020-02-29)

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

19 Feb 22:04
a0f4f49

Choose a tag to compare

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.