Skip to content

Releases: natterstefan/react-trello-multiboard

v0.2.1

04 Jul 19:54
52bc7e6
Compare
Choose a tag to compare

2018/07/04 0.2.1

Added

  • When Trello-API returns 401 (eg. when api_key changed and old token is still present in the localStorage) show error notification and force re-authentication.

v0.2.0

03 Jul 05:27
b457a48
Compare
Choose a tag to compare

2018/07/03 0.2.0

Added

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 multiple lists 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

09 Jun 12:46
00dbc89
Compare
Choose a tag to compare

2018/06/09 0.1.1

  • Bugfix TrelloCard isHidden calculation

v0.1.0

09 Jun 12:12
1c1c284
Compare
Choose a tag to compare

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

25 May 18:32
5ed9ccc
Compare
Choose a tag to compare

2018/05/25 0.0.2

Added

  • custom <TrelloCardUi /> component added (replaces Trello's embedded iframe)
  • fallback for missing avatarHash implemented (use member's initials) 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
    from 3.7.2 to 4.0.0, and react to 16.3.2 and sass-loader to 7.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

22 Apr 17:53
bbd5b24
Compare
Choose a tag to compare

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