## Changelog # 0.6.1 Thurs, 3 Nov 2022 10:25:00 GMT This release includes major upgrades to dependencies. # 0.6 Thurs, 3 Nov 2022 10:23:00 GMT This release includes major upgrades to dependencies. # 0.5.1 Mon, 18 Oct 2022 20:23:00 GMT Includes a bug fix to the development webpack config in order to remove the deprecated `inline` argument. # 0.5 Mon, 18 Oct 2022 14:53:00 GMT This release includes major upgrades to many dependencies including Webpack (4 -> 5), typescript (3.9.x -> 4.8.x). tslint has been migrated to eslint, meaning `@misk/tslint` has been removed. dayjs, immutable, react-hot-loader, styled-components have been removed as vendored packages. ## 0.4.1 Wed, 28 Sep 2022 17:07:22 GMT * #1828 Ensure parseOnChangeArgs handles null arguments ## 0.4.0 Tue, 15 Feb 2022 04:27:39 GMT [#1798](https://github.com/cashapp/misk-web/pull/1798) Update dependencies to work with node 16 ## 0.3.3 Thu, 05 Aug 2021 05:38:01 GMT Bug fixes for the 0.3.1 release. ## 0.3.1 Thu, 05 Aug 2021 04:40:22 GMT * #1645 Add a red banner for production * #1649 Bundle new tab in CLI ## 0.3.0 Tue, 27 Jul 2021 00:04:10 GMT Release based on 0.1.27, but with non-major dependency updates applied. ## 0.2.1 DD Jan 2021 14:14:00 GMT Stable release including all the changes of `0.2.1-*` alpha releases. ## 0.2.0 22 Jan 2021 14:14:00 GMT Major upgrade to many dependencies including [Webpack (4 => 5)](https://webpack.js.org/migrate/5/) and [Emotion (10 => 11)](https://emotion.sh/docs/emotion-11). Automatic code migration has been added to the `$ miskweb` CLI to assist in migrating your tabs from `0.1.*` to `0.2.0` but you may need to lean into the above linked migration guides for more complex issues. ## 0.1.28 18 Jan 2021 14:14:00 GMT Stable release including all the changes of `0.1.28-*` alpha releases. ## 0.1.27 18 Jan 2021 14:14:00 GMT Stable release including all the changes of `0.1.27-*` alpha releases. ## 0.1.26 28 Apr 2020 14:14:00 GMT Stable release including all the changes of `0.1.26-*` alpha releases. ## 0.1.25 14 Jan 2020 14:36:00 GMT Stable release including all the changes of `0.1.25-*` alpha releases. ## 0.1.24 14 Jan 2020 14:36:00 GMT Stable release including all the changes of `0.1.24-*` alpha releases. ## 0.1.23 4 Nov 2019 14:36:00 GMT Stable release including all the changes of `0.1.23-*` alpha releases. ## 0.1.23-4 4 Nov 2019 14:23:00 GMT ### @misk/cli - Update Misk Admin Dashboard multibindings generated in CLI `misk` command ## 0.1.23-3 29 Oct 2019 19:58:00 GMT ### @misk/test - Add max workers to Jest configuration to prevent CircleCI out of memory errors ## 0.1.23-2 16 Oct 2019 14:40:00 GMT ### @misk/simpleredux - Plumb out `failureSaga` option for similar purpose to `mergeSaga` except for in failure cases - For example, a `failureSaga` could be added to a `simpleHttpPost` call that on call failure, issues a network request retry or other action ## 0.1.23-1 15 Oct 2019 17:24:00 GMT ### @misk/core - Update `DashboardMetadataAction` path to `/api/dashboard/{dashboardId}/metadata` ## 0.1.23-0 15 Oct 2019 17:24:00 GMT ### @misk/core - Update `MiskContainer` to support Misk API changes to `DashboardMetadataAction` and `ServiceMetadataAction` ## 0.1.22 1 Oct 2019 15:24:00 GMT ### @misk/simpleredux Fix bug in `handler` parsing of `options.overrideArgs`. ## 0.1.21 1 Oct 2019 15:24:00 GMT ### @misk/simpleredux Update `handler` functions to accept `overrideArgs` in the options object, instead of as a seperate function parameter. This specifically improves the usage for onClick functions as outlined below where empty options object no longer need to be used to reach the `overrideArgs` parameter. ```jsx // Old