Socket
Socket
Sign inDemoInstall

re-reselect

Package Overview
Dependencies
1
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install
23Next

5.1.0

Diff

toomuchdesign
published 5.0.0 •

Changelog

Source

5.0.0

New Features

  • Support reselect v5

Breaking Changes

  • Drop support for reselect v4 -
  • Remove createCachedSelector default export
toomuchdesign
published 4.0.1 •

Changelog

Source

4.0.1

  • omit clearCache from CreateSelectorInstance type
toomuchdesign
published 4.0.0 •

Changelog

Source

4.0.0

Breaking Changes

  • Drop support for createCachedSelector(...)(arguments) call with multiple arguments
  • Drop legacy FifoCacheObject, FlatCacheObject, LruCacheObject exports
  • TypeScript typings of createStructuredSelector have been changed. Explicitly setting State and Parameter types is no longer required (nor possible), please update the typings as follows if necessary:
// Before:
const selector = createStructuredCachedSelector<State, string>({
  x: (state, id) => state.a[id],
})((state, id) => id);
// After:
const selector = createStructuredCachedSelector({
  x: (state: State, id: string) => state.a[id],
})((state, id) => id);

New Features

  • Provide auto inferring to createStructuredSelector typings
  • Expose createCachedSelector as both default and named export
toomuchdesign
published 3.4.0 •

Changelog

Source

3.4.0

New Features

  • Introduce single argument signature
toomuchdesign
published 3.3.0 •

Changelog

Source

3.3.0

New Features

  • Add keySelectorCreator option
toomuchdesign
published 3.2.0 •

Changelog

Source

3.2.0

New Features

  • Add createStructuredCachedSelector
toomuchdesign
published 3.1.0 •

Changelog

Source

3.1.0

New Features

  • Expose keySelector property
toomuchdesign
published 3.0.0 •

Changelog

Source

3.0.0

Breaking Changes

  • Update TypeScript typings
    • Introduce typings for heterogeneous selectors
    • Introduce typings for any number of uniform selectors
    • Rename "resolver" as "keySelector"

New Features

  • Update TypeScript typings
    • Introduce typings for dependencies property
toomuchdesign
published 2.3.0 •

Changelog

Source

2.3.0

New Features

  • Do not include test files on publish
  • Introduce new selectors' methods/properties:
    • dependencies property
    • recomputations method
    • resetRecomputations method
23Next
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc