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

Commit 9a0888f

Browse files
chore: release v6.13.0 (#3174)
Co-authored-by: François Chalifour <[email protected]>
1 parent e8d72cb commit 9a0888f

File tree

16 files changed

+48
-22
lines changed

16 files changed

+48
-22
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# [6.13.0](https://github.com/algolia/react-instantsearch/compare/v6.11.0...v6.13.0) (2021-10-19)
2+
3+
This is the initial release of the experimental **React InstantSearch Hooks** package. Check out the [**Getting Started**](https://github.com/algolia/react-instantsearch/blob/e8d72cb1c7c45300ef7c273f1f163beb6dc57622/packages/react-instantsearch-hooks/README.md#getting-started) guide.
4+
5+
### Bug Fixes
6+
7+
- **core:** accept objects for `hitComponent` ([#3087](https://github.com/algolia/react-instantsearch/issues/3087)) ([4ae23d4](https://github.com/algolia/react-instantsearch/commit/4ae23d432a01ccbefff1fcdc865120aeca4d3efc))
8+
9+
### Features
10+
11+
- **hooks:** add InstantSearch and Index components ([#3133](https://github.com/algolia/react-instantsearch/issues/3133)) ([8e3370d](https://github.com/algolia/react-instantsearch/commit/8e3370ddb7d5e42b8b9a5ff6a1e4255490de7dbe))
12+
- **hooks:** bootstrap Core package ([#3132](https://github.com/algolia/react-instantsearch/issues/3132)) ([d459e62](https://github.com/algolia/react-instantsearch/commit/d459e62f5cae4c98427ab302531873f5ee23d149))
13+
- **hooks:** display experimental warning ([#3149](https://github.com/algolia/react-instantsearch/issues/3149)) ([623577c](https://github.com/algolia/react-instantsearch/commit/623577c50cd0c04cd87f719edafdcfa04b5527b6))
14+
- **hooks:** export types ([#3159](https://github.com/algolia/react-instantsearch/issues/3159)) ([182348b](https://github.com/algolia/react-instantsearch/commit/182348b4a901823a7a41aee5d2b3bdc025cce48f))
15+
- **hooks:** expose `displayName` on Contexts ([#3168](https://github.com/algolia/react-instantsearch/issues/3168)) ([dafd3c6](https://github.com/algolia/react-instantsearch/commit/dafd3c66d05fbec09ebf907209ac25f55804e6f5))
16+
- **hooks:** friendly error when using Hooks with Core ([#3150](https://github.com/algolia/react-instantsearch/issues/3150)) ([d547ccf](https://github.com/algolia/react-instantsearch/commit/d547ccf7951299e2f6b1771e02fce052696ff65a))
17+
- **hooks:** introduce `useConnector` ([#3137](https://github.com/algolia/react-instantsearch/issues/3137)) ([53e8afd](https://github.com/algolia/react-instantsearch/commit/53e8afd093b9950351467a16b82d528207ac34d2))
18+
- **hooks:** introduce `useHits` ([#3147](https://github.com/algolia/react-instantsearch/issues/3147)) ([cc25cff](https://github.com/algolia/react-instantsearch/commit/cc25cff06e5ec216cba40fb8261372bc327001b6))
19+
- **hooks:** introduce `useRefinementList` ([#3152](https://github.com/algolia/react-instantsearch/issues/3152)) ([0385cd9](https://github.com/algolia/react-instantsearch/commit/0385cd971635a8423ad687fab451d0778358389e))
20+
- **hooks:** introduce `useSearchBox` ([#3146](https://github.com/algolia/react-instantsearch/issues/3146)) ([0d2c7f9](https://github.com/algolia/react-instantsearch/commit/0d2c7f9bd25b88cf725a1babd3b228ac804644c7))
21+
- **hooks:** trigger single network request on load ([#3167](https://github.com/algolia/react-instantsearch/issues/3167)) ([ff1ea49](https://github.com/algolia/react-instantsearch/commit/ff1ea49079a7800fd61ba99ceeb74b9f513eb99d))
22+
- **hooks:** type `useConnector` return as render state ([#3169](https://github.com/algolia/react-instantsearch/issues/3169)) ([a801468](https://github.com/algolia/react-instantsearch/commit/a80146860164a092d2c90ee0aa4fcef88d5b675f))
23+
- **hooks:** update GitHub bug reports link ([#3157](https://github.com/algolia/react-instantsearch/issues/3157)) ([568b5c8](https://github.com/algolia/react-instantsearch/commit/568b5c83849a3927417907706656c3835163f216))
24+
25+
26+
127
## [6.12.1](https://github.com/algolia/react-instantsearch/compare/v6.11.0...v6.12.1) (2021-08-02)
228

329

examples/default-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algolia-theme",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"private": true,
55
"dependencies": {
66
"algoliasearch": "4.9.3",

examples/e-commerce/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-instantsearch-e-commerce",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"private": true,
55
"dependencies": {
66
"algoliasearch": "4.9.3",

examples/hooks/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hooks-example",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"private": true,
55
"scripts": {
66
"build": "parcel build index.html",
@@ -10,7 +10,7 @@
1010
"algoliasearch": "4.10.5",
1111
"react": "^16.8.0",
1212
"react-dom": "^16.8.0",
13-
"react-instantsearch-hooks": "6.12.1"
13+
"react-instantsearch-hooks": "6.13.0"
1414
},
1515
"devDependencies": {
1616
"parcel": "2.0.0-beta.1"

examples/media/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "media",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"private": true,
55
"dependencies": {
66
"algoliasearch": "4.9.3",

examples/tourism/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tourism",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"private": true,
55
"dependencies": {
66
"algoliasearch": "4.9.3",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.12.1",
2+
"version": "6.13.0",
33
"npmClient": "yarn",
44
"packages": [
55
"packages/*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.12.1",
2+
"version": "6.13.0",
33
"private": true,
44
"license": "MIT",
55
"workspaces": [

packages/react-instantsearch-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-instantsearch-core",
3-
"version": "6.12.1",
3+
"version": "6.13.0",
44
"description": "⚡ Lightning-fast search for React, by Algolia",
55
"main": "dist/cjs/index.js",
66
"module": "dist/es/index.js",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export default '6.12.1';
1+
export default '6.13.0';

0 commit comments

Comments
 (0)