Forecastle is a control panel which dynamically discovers and provides a launchpad to access applications deployed on Kubernetes – [✩Star] if you're using it!
reduxjs/redux-starter-kit (redux-starter-kit)
### [`v2.0.0`](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.1...ec76a811447d6d2b2314420e46d4af40a7778555)
[Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.1...ec76a811447d6d2b2314420e46d4af40a7778555)
### [`v1.0.1`](https://togithub.com/reduxjs/redux-toolkit/releases/tag/v1.0.1)
[Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.0...v1.0.1)
This release includes a TS type bugfix for prepare callbacks, adds a new `match` method for action creators, and re-exports additional functions from Redux.
#### Changes
The types for the recently added `error` field in prepare callbacks were too loose, and that caused them to fall back to `any`. This has been fixed.
There are cases when it is helpful to have a type guard to narrow action objects down to a known type, such as checking in a middleware. Generated action creators now have a `actionCreator.match()` type guard function attached.
We were re-exporting some methods from the Redux core, but not all of them. All Redux exports are now re-exported, including `bindActionCreators`.
#### Changelog
- Fix Redux exports ([@markerikson](https://togithub.com/markerikson) - [#243](https://togithub.com/reduxjs/redux-starter-kit/issues/243))
- RFC: add "match" method to actionCreator ([@phryneas](https://togithub.com/phryneas) - [#239](https://togithub.com/reduxjs/redux-starter-kit/issues/239))
- use `never` instead of `void` for PayloadAction Meta & Error ([@phryneas](https://togithub.com/phryneas) - [#233](https://togithub.com/reduxjs/redux-starter-kit/issues/233))
### [`v1.0.0`](https://togithub.com/reduxjs/redux-toolkit/releases/tag/v1.0.0): v1.0 Final!
[Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v0.9.1...v1.0.0)
Today I am *extremely* excited to announce that:
##### Redux Starter Kit 1.0 is now live!
To celebrate, I've put together a blog post that looks back at the history, inspirations, and development process that led us to this point:
##### [Idiomatic Redux: Redux Starter Kit 1.0](https://blog.isquaredsoftware.com/2019/10/redux-starter-kit-1.0/)
#### Changes
This release contains only one new change: the ability to include an `error` field from a prepare callback, to match the FSA standard.
#### Changelog
- feat(action): support optional error field ([@tvanier](https://togithub.com/tvanier) - [#222](https://togithub.com/reduxjs/redux-starter-kit/issues/222))
#### Credits and Thanks
I'd like to thank everyone who has been involved in Redux Starter Kit in any way. To highlight some of the key participants:
- [@gaearon](https://togithub.com/gaearon) : the creator of Redux. Wouldn't have any of this without him.
- [@modernserf](https://togithub.com/modernserf): wrote [the original suggestion that inspired RSK](https://togithub.com/reduxjs/redux/issues/2295#issuecomment-287625366).
- [@timdorr](https://togithub.com/timdorr) : wrote the [RFC: Redux Starter Kit](https://togithub.com/reduxjs/redux/issues/2859) issue that served as the springboard for actually getting RSK started
- [@hswolff](https://togithub.com/hswolff) : helped talk through the initial list of features
- [@nickmccurdy](https://togithub.com/nickmccurdy) : implemented almost all of the initial build tooling and several key pieces of initial functionality
- [@shotak](https://togithub.com/shotak): donated the `redux-starter-kit` package name on NPM
- [@neurosnap](https://togithub.com/neurosnap) : ported `createSlice` from Autodux, and donated his implementation after writing it as a separate package
- [@denisw](https://togithub.com/denisw): ported RSK to TypeScript, and valuable suggestions on `createSlice`
- [@Dudeonyx](https://togithub.com/Dudeonyx) , [@Jessidhia](https://togithub.com/Jessidhia): plenty of TS advice
- [@phryneas](https://togithub.com/phryneas) : implemented multiple new features, improved our TS types, and coached me through starting to understand how some of this complex types stuff actually works :)
- [@RichiCoder1](https://togithub.com/RichiCoder1) : ported our build setup to TSDX
Thank you so much to all of you, and everyone else who has contributed!
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR has been generated by Mend Renovate. View repository job log here.
This PR contains the following updates:
^0.9.0
->^2.0.0
Release Notes
reduxjs/redux-starter-kit (redux-starter-kit)
### [`v2.0.0`](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.1...ec76a811447d6d2b2314420e46d4af40a7778555) [Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.1...ec76a811447d6d2b2314420e46d4af40a7778555) ### [`v1.0.1`](https://togithub.com/reduxjs/redux-toolkit/releases/tag/v1.0.1) [Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v1.0.0...v1.0.1) This release includes a TS type bugfix for prepare callbacks, adds a new `match` method for action creators, and re-exports additional functions from Redux. #### Changes The types for the recently added `error` field in prepare callbacks were too loose, and that caused them to fall back to `any`. This has been fixed. There are cases when it is helpful to have a type guard to narrow action objects down to a known type, such as checking in a middleware. Generated action creators now have a `actionCreator.match()` type guard function attached. We were re-exporting some methods from the Redux core, but not all of them. All Redux exports are now re-exported, including `bindActionCreators`. #### Changelog - Fix Redux exports ([@markerikson](https://togithub.com/markerikson) - [#243](https://togithub.com/reduxjs/redux-starter-kit/issues/243)) - RFC: add "match" method to actionCreator ([@phryneas](https://togithub.com/phryneas) - [#239](https://togithub.com/reduxjs/redux-starter-kit/issues/239)) - use `never` instead of `void` for PayloadAction Meta & Error ([@phryneas](https://togithub.com/phryneas) - [#233](https://togithub.com/reduxjs/redux-starter-kit/issues/233)) ### [`v1.0.0`](https://togithub.com/reduxjs/redux-toolkit/releases/tag/v1.0.0): v1.0 Final! [Compare Source](https://togithub.com/reduxjs/redux-starter-kit/compare/v0.9.1...v1.0.0) Today I am *extremely* excited to announce that: ##### Redux Starter Kit 1.0 is now live! To celebrate, I've put together a blog post that looks back at the history, inspirations, and development process that led us to this point: ##### [Idiomatic Redux: Redux Starter Kit 1.0](https://blog.isquaredsoftware.com/2019/10/redux-starter-kit-1.0/) #### Changes This release contains only one new change: the ability to include an `error` field from a prepare callback, to match the FSA standard. #### Changelog - feat(action): support optional error field ([@tvanier](https://togithub.com/tvanier) - [#222](https://togithub.com/reduxjs/redux-starter-kit/issues/222)) #### Credits and Thanks I'd like to thank everyone who has been involved in Redux Starter Kit in any way. To highlight some of the key participants: - [@gaearon](https://togithub.com/gaearon) : the creator of Redux. Wouldn't have any of this without him. - [@modernserf](https://togithub.com/modernserf): wrote [the original suggestion that inspired RSK](https://togithub.com/reduxjs/redux/issues/2295#issuecomment-287625366). - [@timdorr](https://togithub.com/timdorr) : wrote the [RFC: Redux Starter Kit](https://togithub.com/reduxjs/redux/issues/2859) issue that served as the springboard for actually getting RSK started - [@hswolff](https://togithub.com/hswolff) : helped talk through the initial list of features - [@nickmccurdy](https://togithub.com/nickmccurdy) : implemented almost all of the initial build tooling and several key pieces of initial functionality - [@shotak](https://togithub.com/shotak): donated the `redux-starter-kit` package name on NPM - [@neurosnap](https://togithub.com/neurosnap) : ported `createSlice` from Autodux, and donated his implementation after writing it as a separate package - [@denisw](https://togithub.com/denisw): ported RSK to TypeScript, and valuable suggestions on `createSlice` - [@Dudeonyx](https://togithub.com/Dudeonyx) , [@Jessidhia](https://togithub.com/Jessidhia): plenty of TS advice - [@phryneas](https://togithub.com/phryneas) : implemented multiple new features, improved our TS types, and coached me through starting to understand how some of this complex types stuff actually works :) - [@RichiCoder1](https://togithub.com/RichiCoder1) : ported our build setup to TSDX Thank you so much to all of you, and everyone else who has contributed!Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.