Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Commit

Permalink
fix(helper): rely on stable version of algoliasearch-helper (#2871)
Browse files Browse the repository at this point in the history
We released while still relying on a canary version of the helper, this means that people would not get patch updates to the helper if we ever did so

By relying on the real released v3 now, we are sure people will get the latest bug fixes

Note that also we were relying on two different canary releases, so people likely had two separate versions of the helper in a react-instantsearch-dom bundle.
  • Loading branch information
Haroenv committed Nov 18, 2019
1 parent 6701ab4 commit e3531a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/react-instantsearch-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@babel/runtime": "^7.1.2",
"@types/algoliasearch": "^3.30.16",
"algoliasearch-helper": "0.0.0-6ac260d",
"algoliasearch-helper": "^3.0.0",
"fast-deep-equal": "^2.0.1",
"prop-types": "^15.5.10"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/react-instantsearch-dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"algoliasearch-helper": "0.0.0-27095c0",
"algoliasearch-helper": "^3.0.0",
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"react-instantsearch-core": "^6.0.0"
Expand Down
15 changes: 4 additions & 11 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4433,17 +4433,10 @@ algolia-aerial@^1.5.3:
resolved "https://registry.yarnpkg.com/algolia-aerial/-/algolia-aerial-1.5.3.tgz#c8b8ca6bc484164ffc7b36717689a424ea6bfe6c"
integrity sha512-LZTpVlYnhqNFd+ru/Spm73omhsagiRQLmjrosa5bJ6/I9OMRp4Sb9pYZkAxcx3RSr+ZNXZqthL7rpXqMFdrnPA==

algoliasearch-helper@0.0.0-27095c0:
version "0.0.0-27095c0"
resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-0.0.0-27095c0.tgz#8aa246e23fc665403917eeaf9cf7beeea70866f1"
integrity sha512-d0wlSReMpnz7sT5ibojXucYsWHTigu83ge+qktQ9m0u+kG7bHqRErzBUOZ03BMr9zd1sWSNR1TMR9l6AHHrqow==
dependencies:
events "^1.1.1"

algoliasearch-helper@0.0.0-6ac260d:
version "0.0.0-6ac260d"
resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-0.0.0-6ac260d.tgz#9f4a0f2c8f89eafe23559375907b4070afa4cbb1"
integrity sha512-wG1oVPEq4bXmNUeF2voio+0UpNRtDLTG7+OPCvTxMDIQvD2Exc0s2UsWl5fh6/Dc7O++b8Ic2g+YSVo5l+nBFg==
algoliasearch-helper@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/algoliasearch-helper/-/algoliasearch-helper-3.0.0.tgz#830f0017408df16d47618400bed9eed00930b27b"
integrity sha512-urO9Yq6gMj93qfuCK5wFK250LfRSVFanJrSyOevJWgN6o6H3Km3wl04er0NaiHGZorqOyEAEU1us1aqFLO3YSA==
dependencies:
events "^1.1.1"

Expand Down

0 comments on commit e3531a1

Please sign in to comment.