Replies: 1 comment 2 replies
-
You shouldn't need to update InstantSearch.js without also updating React InstantSearch, they are meant to be used with a 1:1 mapping of version (in a major version we might sync the version, but that's not sure). What use cases would you update InstantSearch.js without React InstantSearch too? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dependencies are fixed (
4.75.7
) instead of including minor/patches (^4.75.7
), which makes it a pain to bump one dependency at a time.For instance, if dependabot bumps
instantsearch.js
in our app, we end up with 2 versions ofinstantsearch.js
within ournode_modules
sincereact-instantsearch
was not bumped yet. Adding a^
would fix this easily.For instance: https://github.com/algolia/instantsearch/blob/master/packages/react-instantsearch/package.json#L52
Beta Was this translation helpful? Give feedback.
All reactions