@auth0/cosmos
Advanced tools
Changelog
0.17.0 [February 19, 2019]
title
. [#1518].readOnly
visual state. [#1517]source
to src
(via soft deprecation) [#1505]onToggle
to onChange
(via soft deprecation) [#1506]Changelog
0.16.2 [February 13, 2019]
Changelog
0.16.1 [February 7, 2019]
Changelog
0.16.0 [February 7, 2019]
Changelog
0.15.1 [January 31, 2019]
Changelog
0.15.0 [January 30, 2019]
Changelog
0.14.1 [January 29, 2019]
Changelog
0.14.0 [January 17, 2019]
Changelog
0.13.0 [January 14, 2019]
Changelog
0.12.2 [January 9, 2019]
Breadcrumb change
We have renamed the Breadcrumb.Link automation attribute from this:
<a data-cosmos-key="link">clicky</a>
to this:
<a data-cosmos-key="breadcrumb.link">clicky</a>
Please update your tests (if any) accordingly.
UniqueId helper change
In the past, we used to randomly generate an id for some attributes that were required to link components. Now we're using a global counter, which will lead to improve snapshot testing since each test is run in an isolated environment, and then each test run will have a fresh and pure start.
If you were using a mock for uniqueId
as a workaround:
jest.mock('../../../core/components/_helpers/uniqueId', () => () => 'abcdef1234')
Please, remove it since is no longer needed.