Releases: natterstefan/react-trello-multiboard
Releases · natterstefan/react-trello-multiboard
v0.2.1
v0.2.0
2018/07/03 0.2.0
Added
- config can now contain the
id
of a board, which allows adding public
Trello boards as well. Related to breaking change note regarding config.js below. - can display labels (with toggle: show or hide)
<ListTabs \/>
added- list
pattern
can be modified with query parameters. Examples:
Changed
- Breaking: boards config in
config.js
changed:
// previous config
boards: [
{
// ...
board: 'hello-world', // renamed to 'name'
},
],
// new config
boards: [
{
// ...
name: 'hello-world', // new property 'name'
id: 'board-1', // optional, see README
},
],
- Breaking:
config.js
can now contain multiplelists
patterns, each list
will be available in the<ListTabs \/>
component and can later be used to
select a specific list. All filters work as expected and as before (also with
deeplinking for the list patterns)
// previous config
boards: [
{
// ...
lists: /#upcoming/,
},
],
// new config
lists: [/#upcoming/],
boards: [
{
// does not contain lists anymore
},
],
- Note: even though semver would suggest adding releasing a major release, I
decided to stick to 0.2.y still until further notice.
v0.1.1
v0.1.0
2018/06/09 0.1.0
Added
- connected-react-router added to make history actions and current location available to all components in the redux store
- Deeplinkg feature for preferred members: You now get a shareable link when you click on a member to filter his cards.
Changed
- is visible only after it was toggled in the
- displays it's estimations already in the title
- upgraded all packages to latest version, including major releases
- use @natterstefan/eslint-config-ns for eslint, stylelint and prettier
v0.0.2
2018/05/25 0.0.2
Added
- custom
<TrelloCardUi />
component added (replaces Trello's embedded iframe) - fallback for missing
avatarHash
implemented (use member'sinitials
) added sideEffects
option for webpack's treeshaking feature added,.babelrc
modified
("modules": false
) and prod.config.js (webpack config) updated as well. Read more about
treeshaking here,
here and
here.
Changed
- upgraded all packages to latest version, including major releases (eg.
redux
from3.7.2
to4.0.0
, andreact
to16.3.2
andsass-loader
to7.0.1
) - refactored and removed not used styled components
- fix
overflow-x
css usage in several components - use mocks more consistently in tests
Deprecated
<TrelloCardIframe />
deprecated, use<TrelloCardUi />
instead now
Fixed
- reloadButton refreshes all data in the store
v0.0.1
2018/04/22 0.0.1
Added
-
Initial Release/Commit can
- load all boards of the authenticated user
- filter it by the specified boards in the config
- display only cards of filtered lists (see config)
- and allow cards to be filtered by members
-
Move from Bitbucket to GitHub and Open-Source project