nobt-io / frontend

Frontend of nobt.io.
https://nobt.io
GNU General Public License v3.0
10 stars 4 forks source link

Bump reselect from 2.5.4 to 4.0.0 #209

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps reselect from 2.5.4 to 4.0.0.

Release notes *Sourced from [reselect's releases](https://github.com/reduxjs/reselect/releases).* > ## v4.0.0 > ## New Features > > Updated TypeScript typings ([#274](https://github-redirect.dependabot.com/reduxjs/reselect/issues/274), [#315](https://github-redirect.dependabot.com/reduxjs/reselect/issues/315)) > Exposed selector dependencies ([#251](https://github-redirect.dependabot.com/reduxjs/reselect/issues/251)) > Use provided memoize function for selectors ([#297](https://github-redirect.dependabot.com/reduxjs/reselect/issues/297)) > > ## Bug fix > Fix selector type for using the right extension, see https://github-redirect.dependabot.com/reactjs/reselect/pull/240 > > ## v3.0.0 > ## New Features > > Performance improvements (thanks to [@​johnhaley81](https://github.com/johnhaley81)) > Updated Typescript typings (thanks to everyone who helped) > > ## Breaking Changes > > For performance reasons, a selector is now not recalculated if its input is equal by reference (`===`). > > ### Example: > > ```js > import { createSelector } from 'reselect'; > > const mySelector = createSelector( > state => state.values.filter(val => val < 5), > values => { > console.log('calling..') > return values.reduce((acc, val) => acc + val, 0) > } > ) > > var createSelector = require('./dist/reselect.js').createSelector; > > const mySelector = createSelector( > state => state.values.filter(val => val < 5), > values => { > console.log('calling..') > return values.reduce((acc, val) => acc + val, 0) > } > ) > > var state1 = {values: [1,2,3,4,5,6,7,8,9]}; > console.log(mySelector(state1)); > state1.values = [3,4,5,6,7,8,9]; > console.log(mySelector(state1)); > var state2 = {values: [1,2,3,4,5,6,7,8,9]}; > console.log(mySelector(state2)); > var state3 = {values: [3,4,5,6,7]}; > ... (truncated)
Changelog *Sourced from [reselect's changelog](https://github.com/reduxjs/reselect/blob/master/CHANGELOG.md).* > ## [v4.0.0](https://github.com/reduxjs/reselect/releases/tag/v4.0.0) - 2018/09/30 > > ### New Features > > Exposed selector dependencies ([#251](https://github-redirect.dependabot.com/reduxjs/reselect/issues/251)) > Use provided memoize function for selectors ([#297](https://github-redirect.dependabot.com/reduxjs/reselect/issues/297)) > > ### Breaking Changes > > Updated TypeScript typings ([#274](https://github-redirect.dependabot.com/reduxjs/reselect/issues/274), [#315](https://github-redirect.dependabot.com/reduxjs/reselect/issues/315)) > > ## [v3.0.0](https://github.com/reduxjs/reselect/releases/tag/v3.0.0) - 2017/03/24 > > ### New Features > > Performance improvements (thanks to [@​johnhaley81](https://github.com/johnhaley81)) > Updated Typescript typings (thanks to everyone who helped) > > ### Breaking Changes > > For performance reasons, a selector is now not recalculated if its input is equal by reference (`===`). > > #### Example: > > ```js > import { createSelector } from 'reselect'; > > const mySelector = createSelector( > state => state.values.filter(val => val < 5), > values => { > console.log('calling..') > return values.reduce((acc, val) => acc + val, 0) > } > ) > > var createSelector = require('./dist/reselect.js').createSelector; > > const mySelector = createSelector( > state => state.values.filter(val => val < 5), > values => { > console.log('calling..') > return values.reduce((acc, val) => acc + val, 0) > } > ) > > var state1 = {values: [1,2,3,4,5,6,7,8,9]}; > console.log(mySelector(state1)); > state1.values = [3,4,5,6,7,8,9]; > console.log(mySelector(state1)); > var state2 = {values: [1,2,3,4,5,6,7,8,9]}; > ... (truncated)
Commits - [`1f3fdeb`](https://github.com/reduxjs/reselect/commit/1f3fdeb22c3fef1b4a212f16b814b5fd9fdf07a9) Bump to version 4.0.0 - [`3932567`](https://github.com/reduxjs/reselect/commit/3932567f7ca88d8dface5b46b0d2e0f23bd8ae07) Update TypeScript - [`2db9725`](https://github.com/reduxjs/reselect/commit/2db972500899ca984978d878e59789ab4b62c82a) Bump version to 4.0.0-beta.1 - [`fda697a`](https://github.com/reduxjs/reselect/commit/fda697a5b21959d55123bb8a3fdb6192f9cdc984) Merge pull request [#297](https://github-redirect.dependabot.com/reduxjs/reselect/issues/297) from Mosho1/patch-1 - [`59456cd`](https://github.com/reduxjs/reselect/commit/59456cd84e697fed86b04397faf6496d2d53b636) Merge pull request [#251](https://github-redirect.dependabot.com/reduxjs/reselect/issues/251) from jimbol/expose-dependencies - [`29851a0`](https://github.com/reduxjs/reselect/commit/29851a0561a51dafc87b2df9e5472802bad5f1a2) Update README.md - [`25ad346`](https://github.com/reduxjs/reselect/commit/25ad3466e0ab5a396a88bb781ccf708e1d5ab187) Merge pull request [#315](https://github-redirect.dependabot.com/reduxjs/reselect/issues/315) from sergey-su/dynamic-selectors-array - [`3fa08de`](https://github.com/reduxjs/reselect/commit/3fa08dea1abce5eafcc5e6e2c4245af8378289d0) Merge pull request [#342](https://github-redirect.dependabot.com/reduxjs/reselect/issues/342) from reduxjs/move_to_reduxjs - [`1057c58`](https://github.com/reduxjs/reselect/commit/1057c5893b300a9ca1fa4c23bea8008827923d4b) Prepare for move to reduxjs - [`36f256b`](https://github.com/reduxjs/reselect/commit/36f256b59b876705144147d409a73a3c4cb3c64d) added typings for dynamic array of uniform selectors - Additional commits viewable in [compare view](https://github.com/reduxjs/reselect/compare/v2.5.4...v4.0.0)


Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.

Dependabot will merge this PR once CI passes on it, as requested by @thomaseizinger.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 3 PRs for your first few update runs. Once an update run creates fewer than 3 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.