Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Bump reselect from 3.0.1 to 4.0.0 #507

Merged
merged 1 commit into from
Oct 15, 2019

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Aug 24, 2019

Bumps reselect from 3.0.1 to 4.0.0.

Release notes

Sourced from reselect's releases.

v4.0.0

New Features

Updated TypeScript typings (#274, #315)
Exposed selector dependencies (#251)
Use provided memoize function for selectors (#297)

Changelog

Sourced from reselect's changelog.

v4.0.0 - 2018/09/30

New Features

Exposed selector dependencies (#251)
Use provided memoize function for selectors (#297)

Breaking Changes

Updated TypeScript typings (#274, #315)

v3.0.0 - 2017/03/24

New Features

Performance improvements (thanks to @​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:

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]};
</tr></table> ... (truncated)
Commits
  • 1f3fdeb Bump to version 4.0.0
  • 3932567 Update TypeScript
  • 2db9725 Bump version to 4.0.0-beta.1
  • fda697a Merge pull request #297 from Mosho1/patch-1
  • 59456cd Merge pull request #251 from jimbol/expose-dependencies
  • 29851a0 Update README.md
  • 25ad346 Merge pull request #315 from sergey-su/dynamic-selectors-array
  • 3fa08de Merge pull request #342 from reduxjs/move_to_reduxjs
  • 1057c58 Prepare for move to reduxjs
  • 36f256b added typings for dynamic array of uniform selectors
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 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 close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor 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:

  • Update frequency (including time of day and day of week)
  • 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.

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Aug 24, 2019
@cypress
Copy link

cypress bot commented Aug 24, 2019



Test summary

95 0 0 0


Run details

Project openVectorEditor
Status Passed
Commit 6717d17
Started Sep 14, 2019 2:32 AM
Ended Sep 14, 2019 2:38 AM
Duration 06:14 💡
OS Linux Debian - 8.11
Browser Electron 61

View run in Cypress Dashboard ➡️


This comment has been generated by cypress-bot as a result of this project's GitHub integration settings. You can manage this integration in this project's settings in the Cypress Dashboard

@dependabot-preview dependabot-preview bot force-pushed the dependabot/npm_and_yarn/reselect-4.0.0 branch from 0d2a25e to 6717d17 Compare September 14, 2019 02:27
@tnrich tnrich merged commit 83f827e into master Oct 15, 2019
@dependabot-preview dependabot-preview bot deleted the dependabot/npm_and_yarn/reselect-4.0.0 branch October 15, 2019 20:40
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant