create-instantsearch-app 6.0.0 → 6.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/README.md +1 -3
  2. package/package.json +3 -4
  3. package/src/templates/Angular InstantSearch/src/app/app.component.html.hbs +4 -1
  4. package/src/templates/InstantSearch.js/index.html.hbs +2 -3
  5. package/src/templates/InstantSearch.js/src/app.js.hbs +12 -6
  6. package/src/templates/React InstantSearch/package.json +2 -2
  7. package/src/templates/React InstantSearch/public/index.html +1 -1
  8. package/src/templates/React InstantSearch/src/App.js.hbs +10 -4
  9. package/src/templates/React InstantSearch/src/index.js +2 -2
  10. package/src/templates/React InstantSearch Hooks/package.json +7 -5
  11. package/src/templates/React InstantSearch Hooks/src/App.tsx.hbs +3 -0
  12. package/src/templates/React InstantSearch Hooks/src/Panel.tsx +2 -0
  13. package/src/templates/React InstantSearch Hooks/src/index.tsx +3 -2
  14. package/src/templates/React InstantSearch Hooks Native/App.tsx.hbs +16 -14
  15. package/src/templates/React InstantSearch Hooks Native/package.json +1 -1
  16. package/src/templates/React InstantSearch widget/README.md +1 -1
  17. package/src/templates/React InstantSearch widget/package.json.hbs +2 -1
  18. package/src/templates/React InstantSearch widget/src/lib/connector.ts.hbs +6 -3
  19. package/src/templates/React InstantSearch widget/src/lib/widget.tsx.hbs +4 -4
  20. package/src/templates/React InstantSearch widget/src/types/connector.ts +17 -0
  21. package/src/templates/Vue InstantSearch/public/index.html +1 -1
  22. package/src/templates/Vue InstantSearch/src/App.vue +18 -6
  23. package/src/templates/Vue InstantSearch with Vue 3/README.md +2 -2
  24. package/src/templates/Vue InstantSearch with Vue 3/index.html +1 -1
  25. package/src/templates/Vue InstantSearch with Vue 3/package.json +1 -0
  26. package/src/templates/Vue InstantSearch with Vue 3/src/App.vue +9 -2
  27. package/CHANGELOG.md +0 -549
  28. package/src/templates/React InstantSearch widget/.gitignore +0 -5
package/README.md CHANGED
@@ -162,11 +162,9 @@ Create InstantSearch App is [MIT licensed](LICENSE).
162
162
 
163
163
  [version-svg]: https://img.shields.io/npm/v/create-instantsearch-app.svg?style=flat-square
164
164
  [package-url]: https://npmjs.org/package/create-instantsearch-app
165
- [ci-svg]: https://img.shields.io/travis/algolia/create-instantsearch-app/master.svg?style=flat-square
166
- [ci-url]: https://travis-ci.org/algolia/create-instantsearch-app
167
165
  [ci-svg]: https://img.shields.io/circleci/project/github/algolia/create-instantsearch-app.svg?style=flat-square
168
166
  [ci-url]: https://circleci.com/gh/algolia/create-instantsearch-app
169
- [license-image]: http://img.shields.io/badge/license-MIT-green.svg?style=flat-square
167
+ [license-image]: https://img.shields.io/badge/license-MIT-green.svg?style=flat-square
170
168
  [license-url]: LICENSE
171
169
 
172
170
  <!-- Links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-instantsearch-app",
3
- "version": "6.0.0",
3
+ "version": "6.2.1",
4
4
  "license": "MIT",
5
5
  "description": "⚡️ Build InstantSearch apps at the speed of thought",
6
6
  "keywords": [
@@ -25,8 +25,7 @@
25
25
  "doctoc": "doctoc --maxlevel 3 README.md CONTRIBUTING.md docs/",
26
26
  "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
27
27
  "release-templates": "node ./scripts/release-templates",
28
- "release": "release-it",
29
- "release:beta": "release-it --preRelease=beta"
28
+ "release": "shipjs prepare"
30
29
  },
31
30
  "files": [
32
31
  "index.js",
@@ -67,7 +66,7 @@
67
66
  "eslint-plugin-prettier": "3.1.2",
68
67
  "jest": "25.1.0",
69
68
  "jest-image-snapshot": "2.12.0",
70
- "release-it": "10.4.5",
69
+ "shipjs": "0.24.4",
71
70
  "walk-sync": "2.0.2"
72
71
  }
73
72
  }
@@ -12,11 +12,14 @@
12
12
 
13
13
  <div class="container">
14
14
  <ais-instantsearch [config]="config">
15
+ <ais-configure [searchParameters]="{ hitsPerPage: 8 }"></ais-configure>
15
16
  <div class="search-panel">
16
17
  {{#if attributesForFaceting}}
17
18
  <div class="search-panel__filters">
18
19
  {{#each attributesForFaceting}}
19
- <ais-refinement-list attribute="{{this}}"></ais-refinement-list>
20
+ <ais-panel header="{{this}}">
21
+ <ais-refinement-list attribute="{{this}}"></ais-refinement-list>
22
+ </ais-panel>
20
23
  {{/each}}
21
24
  </div>
22
25
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  <link rel="shortcut icon" href="./favicon.png">
10
10
 
11
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/algolia-min.css">
11
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css">
12
12
  <link rel="stylesheet" href="./src/index.css">
13
13
  <link rel="stylesheet" href="./src/app.css">
14
14
 
@@ -43,10 +43,9 @@
43
43
  <div class="search-panel__results">
44
44
  <div id="searchbox"></div>
45
45
  <div id="hits"></div>
46
+ <div id="pagination"></div>
46
47
  </div>
47
48
  </div>
48
-
49
- <div id="pagination"></div>
50
49
  </div>
51
50
 
52
51
  <script src="https://cdn.jsdelivr.net/npm/algoliasearch@4.10.5/dist/algoliasearch-lite.umd.js"></script>
@@ -31,22 +31,26 @@ search.addWidgets([
31
31
  },
32
32
  {{/if}}
33
33
  }),
34
- {{#if flags.dynamicWidgets}}
35
34
  instantsearch.widgets.configure({
36
- facets: ['*'],
37
- maxValuesPerFacet: 20,
35
+ hitsPerPage: 8,
38
36
  }),
37
+ {{#if flags.dynamicWidgets}}
39
38
  instantsearch.widgets.dynamicWidgets({
40
39
  container: '#dynamic-widgets',
41
40
  fallbackWidget({ container, attribute }) {
42
- return instantsearch.widgets.refinementList({
41
+ return instantsearch.widgets.panel({ templates: { header: attribute } })(
42
+ instantsearch.widgets.refinementList
43
+ )({
43
44
  container,
44
45
  attribute,
45
46
  });
46
47
  },
47
48
  widgets: [
48
49
  {{#each attributesForFaceting}}
49
- container => instantsearch.widgets.refinementList({
50
+ container =>
51
+ instantsearch.widgets.panel({
52
+ templates: { header: '{{this}}' },
53
+ })(instantsearch.widgets.refinementList)({
50
54
  container,
51
55
  attribute: '{{this}}',
52
56
  }),
@@ -55,7 +59,9 @@ search.addWidgets([
55
59
  }),
56
60
  {{else}}
57
61
  {{#each attributesForFaceting}}
58
- instantsearch.widgets.refinementList({
62
+ instantsearch.widgets.panel({
63
+ templates: { header: '{{this}}' },
64
+ })(instantsearch.widgets.refinementList)({
59
65
  container: '#{{this}}-list',
60
66
  attribute: '{{this}}',
61
67
  }),
@@ -10,8 +10,8 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "algoliasearch": "4",
13
- "react": "16.12.0",
14
- "react-dom": "16.12.0",
13
+ "react": "18.1.0",
14
+ "react-dom": "18.1.0",
15
15
  "react-instantsearch-dom": "{{libraryVersion}}",
16
16
  "react-scripts": "2.1.1"
17
17
  },
@@ -13,7 +13,7 @@
13
13
  Do not use @7 in production, use a complete version like x.x.x, see website for latest version:
14
14
  https://www.algolia.com/doc/guides/building-search-ui/installation/react/#load-the-style
15
15
  -->
16
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/algolia-min.css">
16
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css">
17
17
 
18
18
  <title>{{name}}</title>
19
19
  </head>
@@ -2,14 +2,16 @@ import React from 'react';
2
2
  import algoliasearch from 'algoliasearch/lite';
3
3
  import {
4
4
  InstantSearch,
5
+ Configure,
5
6
  Hits,
6
7
  SearchBox,
7
8
  {{#if flags.dynamicWidgets}}
8
- Configure,
9
9
  DynamicWidgets,
10
+ Panel,
10
11
  RefinementList,
11
12
  {{else}}
12
13
  {{#if attributesForFaceting}}
14
+ Panel,
13
15
  RefinementList,
14
16
  {{/if}}
15
17
  {{/if}}
@@ -40,18 +42,22 @@ function App() {
40
42
 
41
43
  <div className="container">
42
44
  <InstantSearch searchClient={searchClient} indexName="{{indexName}}">
45
+ <Configure hitsPerPage={8} />
43
46
  <div className="search-panel">
44
47
  <div className="search-panel__filters">
45
48
  {{#if flags.dynamicWidgets}}
46
- <Configure facets={['*']} maxValuesPerFacet={20} />
47
49
  <DynamicWidgets fallbackWidget={RefinementList}>
48
50
  {{#each attributesForFaceting}}
49
- <RefinementList attribute="{{this}}" />
51
+ <Panel header="{{this}}">
52
+ <RefinementList attribute="{{this}}" />
53
+ </Panel>
50
54
  {{/each}}
51
55
  </DynamicWidgets>
52
56
  {{else}}
53
57
  {{#each attributesForFaceting}}
54
- <RefinementList attribute="{{this}}" />
58
+ <Panel header="{{this}}">
59
+ <RefinementList attribute="{{this}}" />
60
+ </Panel>
55
61
  {{/each}}
56
62
  {{/if}}
57
63
  </div>
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import ReactDOM from 'react-dom';
2
+ import { createRoot } from 'react-dom/client';
3
3
  import './index.css';
4
4
  import App from './App';
5
5
 
6
- ReactDOM.render(<App />, document.getElementById('root'));
6
+ createRoot(document.getElementById('root')).render(<App />);
@@ -8,13 +8,15 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "algoliasearch": "4",
11
- "instantsearch.js": "4.40.5",
12
- "react": "17.0.2",
13
- "react-dom": "17.0.2",
11
+ "instantsearch.js": "4.43.1",
12
+ "react": "18.1.0",
13
+ "react-dom": "18.1.0",
14
14
  "react-instantsearch-hooks-web": "{{libraryVersion}}"
15
15
  },
16
16
  "devDependencies": {
17
- "@types/react": "17.0.45",
18
- "parcel": "2.5.0"
17
+ "@types/react": "18.0.15",
18
+ "@types/react-dom": "18.0.6",
19
+ "parcel": "2.5.0",
20
+ "typescript": "4.7.4"
19
21
  }
20
22
  }
@@ -1,5 +1,7 @@
1
+ import React from 'react';
1
2
  import algoliasearch from 'algoliasearch/lite';
2
3
  import {
4
+ Configure,
3
5
  {{#if flags.dynamicWidgets}}
4
6
  DynamicWidgets,
5
7
  {{#unless attributesForFaceting}}
@@ -46,6 +48,7 @@ export function App() {
46
48
 
47
49
  <div className="container">
48
50
  <InstantSearch searchClient={searchClient} indexName="{{indexName}}">
51
+ <Configure hitsPerPage={8} />
49
52
  <div className="search-panel">
50
53
  <div className="search-panel__filters">
51
54
  {{#if flags.dynamicWidgets}}
@@ -1,3 +1,5 @@
1
+ import React from 'react';
2
+
1
3
  type PanelProps = React.PropsWithChildren<{
2
4
  header: string;
3
5
  }>;
@@ -1,5 +1,6 @@
1
- import ReactDOM from 'react-dom';
1
+ import React from 'react';
2
+ import { createRoot } from 'react-dom/client';
2
3
 
3
4
  import { App } from './App';
4
5
 
5
- ReactDOM.render(<App />, document.getElementById('root'));
6
+ createRoot(document.getElementById('root')!).render(<App />);
@@ -42,20 +42,22 @@ type HitProps = {
42
42
 
43
43
  function Hit({ hit }: HitProps) {
44
44
  return (
45
- {{#if attributesToDisplay}}
46
- <Text>
47
- <Highlight hit={hit} attribute="{{attributesToDisplay.[0]}}" />
48
- </Text>
49
- {{#each attributesToDisplay}}
50
- {{#unless @first}}
51
- <Text>
52
- <Highlight hit={hit} attribute="{{this}}" />
53
- </Text>
54
- {{/unless}}
55
- {{/each}}
56
- {{else}}
57
- <Text>{JSON.stringify(hit).slice(0, 100)}</Text>
58
- {{/if}}
45
+ <>
46
+ {{#if attributesToDisplay}}
47
+ <Text>
48
+ <Highlight hit={hit} attribute="{{attributesToDisplay.[0]}}" />
49
+ </Text>
50
+ {{#each attributesToDisplay}}
51
+ {{#unless @first}}
52
+ <Text>
53
+ <Highlight hit={hit} attribute="{{this}}" />
54
+ </Text>
55
+ {{/unless}}
56
+ {{/each}}
57
+ {{else}}
58
+ <Text>{JSON.stringify(hit).slice(0, 100)}</Text>
59
+ {{/if}}
60
+ </>
59
61
  );
60
62
  }
61
63
 
@@ -25,7 +25,7 @@
25
25
  "@babel/core": "^7.12.9",
26
26
  "@types/react": "~17.0.21",
27
27
  "@types/react-native": "~0.64.12",
28
- "expo-cli": "5.1.1",
28
+ "expo-cli": "5.5.1",
29
29
  "typescript": "~4.3.5"
30
30
  }
31
31
  }
@@ -19,8 +19,8 @@ yarn add {{ packageName }}
19
19
  ### Usage
20
20
 
21
21
  ```jsx
22
- import instantsearch from 'instantsearch.js';
23
22
  import algoliasearch from 'algoliasearch/lite';
23
+ import { InstantSearch } from 'react-instantsearch-dom';
24
24
  import { {{ pascalCaseName }} } from '{{ packageName }}';
25
25
 
26
26
  const searchClient = algoliasearch('appId', 'apiKey');
@@ -42,7 +42,7 @@
42
42
  "algoliasearch": "4",
43
43
  "react": "^16.8.0",
44
44
  "react-dom": "^16.8.0",
45
- "react-instantsearch-dom": "^6.11.0"
45
+ "react-instantsearch-dom": "^6.26.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@babel/core": "7.14.3",
@@ -54,6 +54,7 @@
54
54
  "@types/node": "15.3.0",
55
55
  "@types/react": "17.0.0",
56
56
  "@types/react-dom": "17.0.0",
57
+ "@types/react-instantsearch-core": "6.26.0",
57
58
  "@types/react-instantsearch-dom": "6.10.0",
58
59
  "@typescript-eslint/eslint-plugin": "4.24.0",
59
60
  "@typescript-eslint/parser": "4.24.0",
@@ -1,13 +1,16 @@
1
+ import type { Connector } from '../types/connector';
2
+
1
3
  import { createConnector } from 'react-instantsearch-dom';
2
4
 
3
5
  export type ProvidedProps = {
4
6
  // TODO: fill props that are returned by `getProvidedProps`
5
7
  }
6
8
 
7
- export const connect{{ pascalCaseName }} = createConnector({
9
+ export const connect{{ pascalCaseName }}: Connector<ProvidedProps> = createConnector<ProvidedProps>({
8
10
  displayName: '{{ pascalCaseName }}',
11
+ $$type: '{{ widgetType }}',
9
12
 
10
- getProvidedProps(props, searchState, searchResults): ProvidedProps {
13
+ getProvidedProps(props, searchState, searchResults) {
11
14
  return {
12
15
  // TODO: return a props for the component
13
16
  };
@@ -19,7 +22,7 @@ export const connect{{ pascalCaseName }} = createConnector({
19
22
  };
20
23
  },
21
24
 
22
- cleanUp(props, searchState, context) {
25
+ cleanUp(props, searchState) {
23
26
  return {
24
27
  // TODO: return a searchState where this widget is removed from the widget tree
25
28
  };
@@ -1,8 +1,6 @@
1
1
  import { {{ pascalCaseName }}Component } from './component';
2
2
  import { connect{{ pascalCaseName }} } from './connector';
3
3
 
4
- import type { ElementType } from 'react';
5
-
6
4
  type WidgetParams = {
7
5
  /**
8
6
  * Placeholder text for input element.
@@ -10,5 +8,7 @@ type WidgetParams = {
10
8
  placeholder?: string;
11
9
  };
12
10
 
13
- export const {{ pascalCaseName }}: ElementType<WidgetParams> =
14
- connect{{ pascalCaseName }}({{ pascalCaseName }}Component);
11
+ export const {{ pascalCaseName }}: React.ElementType<WidgetParams> = connect{{ pascalCaseName }}(
12
+ {{ pascalCaseName }}Component,
13
+ { $$widgetType: '{{ widgetType }}' }
14
+ );
@@ -0,0 +1,17 @@
1
+ import type {
2
+ ConnectedComponentClass,
3
+ ConnectorProvided,
4
+ } from 'react-instantsearch-core';
5
+
6
+ type AdditionalWidgetProperties = {
7
+ $$widgetType?: string;
8
+ };
9
+
10
+ export type Connector<TProvided = {}, TExposed = {}> = ((
11
+ stateless: React.FunctionComponent<ConnectorProvided<TProvided>>,
12
+ additionalWidgetProperties: AdditionalWidgetProperties
13
+ ) => React.ComponentClass<TExposed>) &
14
+ (<TProps extends Partial<ConnectorProvided<TProvided>>>(
15
+ Composed: React.ComponentType<TProps>,
16
+ additionalWidgetProperties: AdditionalWidgetProperties
17
+ ) => ConnectedComponentClass<TProps, ConnectorProvided<TProvided>, TExposed>);
@@ -9,7 +9,7 @@
9
9
  Do not use @7 in production, use a complete version like x.x.x, see website for latest version:
10
10
  https://www.algolia.com/doc/guides/building-search-ui/installation/react/#load-the-style
11
11
  -->
12
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/algolia-min.css">
12
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css">
13
13
  <title>{{name}}</title>
14
14
  </head>
15
15
  <body>
@@ -15,19 +15,28 @@
15
15
  </header>
16
16
 
17
17
  <div class="container">
18
- <ais-instant-search :search-client="searchClient" index-name="{{indexName}}">
18
+ <ais-instant-search
19
+ :search-client="searchClient"
20
+ index-name="{{indexName}}"
21
+ >
22
+ <ais-configure :hits-per-page.camel="8" />
19
23
  <div class="search-panel">
20
24
  <div class="search-panel__filters">
21
25
  {{#if flags.dynamicWidgets}}
22
- <ais-configure :facets="['*']" :max-values-per-facet.camel="20" />
23
26
  <ais-dynamic-widgets>
24
27
  {{#each attributesForFaceting}}
25
- <ais-refinement-list attribute="{{this}}" />
28
+ <ais-panel>
29
+ <template v-slot:header>{{this}}</template>
30
+ <ais-refinement-list attribute="{{this}}" />
31
+ </ais-panel>
26
32
  {{/each}}
27
33
  </ais-dynamic-widgets>
28
34
  {{else}}
29
35
  {{#each attributesForFaceting}}
30
- <ais-refinement-list attribute="{{this}}" />
36
+ <ais-panel>
37
+ <template v-slot:header>{{this}}</template>
38
+ <ais-refinement-list attribute="{{this}}" />
39
+ </ais-panel>
31
40
  {{/each}}
32
41
  {{/if}}
33
42
  </div>
@@ -41,7 +50,10 @@
41
50
  <template slot="item" slot-scope="{ item }">
42
51
  <article>
43
52
  <h1>
44
- <ais-highlight :hit="item" attribute="{{attributesToDisplay.[0]}}" />
53
+ <ais-highlight
54
+ :hit="item"
55
+ attribute="{{attributesToDisplay.[0]}}"
56
+ />
45
57
  </h1>
46
58
  {{#each attributesToDisplay}}
47
59
  {{#unless @first}}
@@ -54,7 +66,7 @@
54
66
  </template>
55
67
  </ais-hits>
56
68
  {{else}}
57
- <ais-hits/>
69
+ <ais-hits />
58
70
  {{/if}}
59
71
 
60
72
  <div class="pagination">
@@ -8,14 +8,14 @@ To run this project locally, install the dependencies and run the local server:
8
8
 
9
9
  ```sh
10
10
  npm install
11
- npm run dev
11
+ npm start
12
12
  ```
13
13
 
14
14
  Alternatively, you may use [Yarn](https://http://yarnpkg.com/):
15
15
 
16
16
  ```sh
17
17
  yarn
18
- yarn dev
18
+ yarn start
19
19
  ```
20
20
 
21
21
  Open http://localhost:3000 to see your app.
@@ -9,7 +9,7 @@
9
9
  Do not use @7 in production, use a complete version like x.x.x, see website for latest version:
10
10
  https://www.algolia.com/doc/guides/building-search-ui/installation/react/#load-the-style
11
11
  -->
12
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/algolia-min.css">
12
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7/themes/satellite-min.css">
13
13
  <title>{{name}}</title>
14
14
  </head>
15
15
  <body>
@@ -4,6 +4,7 @@
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "vite",
7
+ "start": "vite",
7
8
  "build": "vite build",
8
9
  "preview": "vite preview"
9
10
  },
@@ -17,17 +17,24 @@
17
17
  :search-client="searchClient"
18
18
  index-name="{{indexName}}"
19
19
  >
20
+ <ais-configure :hits-per-page.camel="8" />
20
21
  <div class="search-panel">
21
22
  <div class="search-panel__filters">
22
23
  {{#if flags.dynamicWidgets}}
23
24
  <ais-dynamic-widgets>
24
25
  {{#each attributesForFaceting}}
25
- <ais-refinement-list attribute="{{this}}" />
26
+ <ais-panel>
27
+ <template v-slot:header>{{this}}</template>
28
+ <ais-refinement-list attribute="{{this}}" />
29
+ </ais-panel>
26
30
  {{/each}}
27
31
  </ais-dynamic-widgets>
28
32
  {{else}}
29
33
  {{#each attributesForFaceting}}
30
- <ais-refinement-list attribute="{{this}}" />
34
+ <ais-panel>
35
+ <template v-slot:header>{{this}}</template>
36
+ <ais-refinement-list attribute="{{this}}" />
37
+ </ais-panel>
31
38
  {{/each}}
32
39
  {{/if}}
33
40
  </div>
package/CHANGELOG.md DELETED
@@ -1,549 +0,0 @@
1
- # [6.0.0](https://github.com/algolia/create-instantsearch-app/compare/5.2.2...6.0.0) (2022-05-18)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * **js:** update and simplify dependencies ([#567](https://github.com/algolia/create-instantsearch-app/issues/567)) ([f42cf21](https://github.com/algolia/create-instantsearch-app/commit/f42cf21d5b6b433c9cf3a8d6b871bcaa5e1c8618)), closes [#566](https://github.com/algolia/create-instantsearch-app/issues/566)
7
-
8
-
9
- ### Features
10
-
11
- * **hooks:** add react instantsearch hooks template ([#568](https://github.com/algolia/create-instantsearch-app/issues/568)) ([d91e970](https://github.com/algolia/create-instantsearch-app/commit/d91e970b4683de2b7511b0621468d61a10c4f3f7))
12
- * check for compatibility with current LTS versions of node ([#569](https://github.com/algolia/create-instantsearch-app/issues/569)) ([781642b](https://github.com/algolia/create-instantsearch-app/commit/781642b35a0df601f03b4cdf9b8b1f3b8aceaeac))
13
-
14
-
15
- ### BREAKING CHANGES
16
-
17
- * compatibility with versions that are EOL (up to 12) is not guaranteed
18
-
19
- * remove terminal colors from unit test snapshots
20
-
21
-
22
-
23
- ## [5.2.2](https://github.com/algolia/create-instantsearch-app/compare/5.2.1...5.2.2) (2022-02-21)
24
-
25
-
26
- ### Bug Fixes
27
-
28
- * **vue:** support optional chaining ([#564](https://github.com/algolia/create-instantsearch-app/issues/564)) ([2dfa2ec](https://github.com/algolia/create-instantsearch-app/commit/2dfa2ecebdbcea5604db451c0e0e57010b36de04))
29
-
30
-
31
-
32
- ## [5.2.1](https://github.com/algolia/create-instantsearch-app/compare/5.2.0...5.2.1) (2022-02-16)
33
-
34
-
35
- ### Bug Fixes
36
-
37
- * **Vue 3:** add vite plugin to correctly handle jsx ([#563](https://github.com/algolia/create-instantsearch-app/issues/563)) ([0a4162a](https://github.com/algolia/create-instantsearch-app/commit/0a4162ae2067a15b30242e0b54ae3ff768e836d9))
38
-
39
-
40
-
41
- # [5.2.0](https://github.com/algolia/create-instantsearch-app/compare/5.1.2...5.2.0) (2022-02-14)
42
-
43
-
44
- ### Features
45
-
46
- * **templates:** introduce React InstantSearch Hooks Native template ([#559](https://github.com/algolia/create-instantsearch-app/issues/559)) ([495f014](https://github.com/algolia/create-instantsearch-app/commit/495f0140301185bba9192ccd779597d4d5028241))
47
- * **vue:** add vue3 template ([#558](https://github.com/algolia/create-instantsearch-app/issues/558)) ([117067e](https://github.com/algolia/create-instantsearch-app/commit/117067ea0c4da0d08105d2de1e8b611f935b533a))
48
-
49
-
50
-
51
- ## [5.1.2](https://github.com/algolia/create-instantsearch-app/compare/5.1.1...5.1.2) (2022-02-02)
52
-
53
-
54
- ### Bug Fixes
55
-
56
- * **angular:** remove @types/algoliasearch dep ([#553](https://github.com/algolia/create-instantsearch-app/issues/553)) ([b280725](https://github.com/algolia/create-instantsearch-app/commit/b2807252dff74f79d887c746327f03f28f53840d))
57
- * **angular:** update angular packages ([#555](https://github.com/algolia/create-instantsearch-app/issues/555)) ([9987264](https://github.com/algolia/create-instantsearch-app/commit/9987264f32582721ac2a8e7f3348fa3d54be3975))
58
- * **React InstantSearch:** import RefinementList if DynamicWidgets used ([#554](https://github.com/algolia/create-instantsearch-app/issues/554)) ([402ec63](https://github.com/algolia/create-instantsearch-app/commit/402ec63261db8a60aa6927e84ec46d45eb27fef3))
59
-
60
-
61
-
62
- ## [5.1.1](https://github.com/algolia/create-instantsearch-app/compare/5.1.0...5.1.1) (2022-01-03)
63
-
64
-
65
- ### Bug Fixes
66
-
67
- * **react-native:** update template and related dependencies ([#546](https://github.com/algolia/create-instantsearch-app/issues/546)) ([858d33f](https://github.com/algolia/create-instantsearch-app/commit/858d33fb01272e8a13964a739c247743cbd855dc))
68
-
69
-
70
-
71
- # [5.1.0](https://github.com/algolia/create-instantsearch-app/compare/5.0.1...5.1.0) (2021-12-14)
72
-
73
-
74
- ### Features
75
-
76
- * **templates:** use non-experimental dynamic widgets ([#544](https://github.com/algolia/create-instantsearch-app/issues/544)) ([efda539](https://github.com/algolia/create-instantsearch-app/commit/efda5395cef7865c7b4cebe741e7ab5e8ea4b2f8))
77
-
78
-
79
-
80
- ## [5.0.1](https://github.com/algolia/create-instantsearch-app/compare/5.0.0...5.0.1) (2021-12-02)
81
-
82
-
83
- ### Bug Fixes
84
-
85
- * **dynamicWidgets:** allow only dynamicWidgets as attribute ([3717de6](https://github.com/algolia/create-instantsearch-app/commit/3717de6fc5811c191629d366988dcc2e05773a9c))
86
-
87
-
88
-
89
- # [5.0.0](https://github.com/algolia/create-instantsearch-app/compare/4.11.1...5.0.0) (2021-12-02)
90
-
91
-
92
- ### Bug Fixes
93
-
94
- * **dynamicWidgets:** prevent "ais.dynamicWidgets" attribute showing up ([#542](https://github.com/algolia/create-instantsearch-app/issues/542)) ([559f705](https://github.com/algolia/create-instantsearch-app/commit/559f705ebcef48a3794efd7a588abd187d6642c9))
95
-
96
-
97
- ### Code Refactoring
98
-
99
- * **index:** rewrite answer parsing ([#541](https://github.com/algolia/create-instantsearch-app/issues/541)) ([efd2799](https://github.com/algolia/create-instantsearch-app/commit/efd279943e23545c3c0806f8e9632ae32c83c0d6))
100
-
101
-
102
- ### BREAKING CHANGES
103
-
104
- the program now asks questions if some of the parameters are sent via arguments. Before this, giving an argument would cause it not to ask any questions anymore, even if they still would be useful. You can avoid this behaviour by passing --config or --no-interactive
105
-
106
-
107
- ## [4.11.1](https://github.com/algolia/create-instantsearch-app/compare/4.11.0...4.11.1) (2021-11-18)
108
-
109
-
110
- ### Bug Fixes
111
-
112
- * **react:** add missing configure widget import ([#540](https://github.com/algolia/create-instantsearch-app/issues/540)) ([626a568](https://github.com/algolia/create-instantsearch-app/commit/626a56859c48e756429da66195d7da1a6c79e39e))
113
-
114
-
115
-
116
- # [4.11.0](https://github.com/algolia/create-instantsearch-app/compare/4.10.3...4.11.0) (2021-11-16)
117
-
118
-
119
- ### Bug Fixes
120
-
121
- * **angular:** move styles import to angular.json ([#532](https://github.com/algolia/create-instantsearch-app/issues/532)) ([d2f73b8](https://github.com/algolia/create-instantsearch-app/commit/d2f73b895c0ed7a2530920f770f67879cca0a9a5))
122
- * **angular:** replace css imports with CDN <link>s ([#537](https://github.com/algolia/create-instantsearch-app/issues/537)) ([fb4c2a8](https://github.com/algolia/create-instantsearch-app/commit/fb4c2a87852fe2f4b3d2289a21234fdf04bddc98))
123
- * **Angular IS:** enable esModuleInterop ([#527](https://github.com/algolia/create-instantsearch-app/issues/527)) ([502e776](https://github.com/algolia/create-instantsearch-app/commit/502e776cf9ca9eca489d6acbde5f8c603de56bd0))
124
- * **ci:** replace legacy circleci node images ([#533](https://github.com/algolia/create-instantsearch-app/issues/533)) ([9ffb469](https://github.com/algolia/create-instantsearch-app/commit/9ffb46925db6e2a6e015be98b589f1b7cf22a9f3))
125
- * **cli:** configure inquirer with correct initial values for attributesToDisplay ([#530](https://github.com/algolia/create-instantsearch-app/issues/530)) ([5cd6142](https://github.com/algolia/create-instantsearch-app/commit/5cd6142d12658dde616690ab1b045c613adf711a))
126
-
127
-
128
- ### Features
129
-
130
- * **autocomplete:** add Autocomplete v1 template ([#528](https://github.com/algolia/create-instantsearch-app/issues/528)) ([5c72d05](https://github.com/algolia/create-instantsearch-app/commit/5c72d05100d90900afbc848eaa7417c175c126cc))
131
- * **facets:** use dynamicWidgets ([#534](https://github.com/algolia/create-instantsearch-app/issues/534)) ([7df3225](https://github.com/algolia/create-instantsearch-app/commit/7df32252a0558f0e09288735cfddd8062af5dc09))
132
-
133
-
134
-
135
- ## [4.10.3](https://github.com/algolia/create-instantsearch-app/compare/4.10.2...4.10.3) (2021-09-01)
136
-
137
-
138
- ### Bug Fixes
139
-
140
- * **js:** enable typescript completion using window ([1fd684b](https://github.com/algolia/create-instantsearch-app/commit/1fd684bf4c5c15b0f7c5d20a6bcf25037ddf9684))
141
-
142
-
143
-
144
- ## [4.10.2](https://github.com/algolia/create-instantsearch-app/compare/4.10.1...4.10.2) (2021-09-01)
145
-
146
-
147
-
148
- ## [4.10.1](https://github.com/algolia/create-instantsearch-app/compare/4.10.0...4.10.1) (2021-08-30)
149
-
150
-
151
- ### Bug Fixes
152
-
153
- * **js:** correct umd url for algoliasearch ([a5d005d](https://github.com/algolia/create-instantsearch-app/commit/a5d005d4acba1f8833b8b2d50fb63e7b199c735e))
154
-
155
-
156
-
157
- # [4.10.0](https://github.com/algolia/create-instantsearch-app/compare/4.9.0...4.10.0) (2021-08-24)
158
-
159
-
160
- ### Features
161
-
162
- * **is widget:** upgrade to standard types ([#463](https://github.com/algolia/create-instantsearch-app/issues/463)) ([174c0ab](https://github.com/algolia/create-instantsearch-app/commit/174c0ab7901d09da24b3aeebba17b7dd62073810))
163
- * **js:** add typescript to the js template ([#464](https://github.com/algolia/create-instantsearch-app/issues/464)) ([9b16b13](https://github.com/algolia/create-instantsearch-app/commit/9b16b1365659053821ad2fdac4ce73037c347819))
164
- * **js-widget:** add example ([#461](https://github.com/algolia/create-instantsearch-app/issues/461)) ([017325d](https://github.com/algolia/create-instantsearch-app/commit/017325dd79d5d8ae849e5c17b7a20527bd142ed8))
165
- * **vue:** support Vue InstantSearch 4 ([#465](https://github.com/algolia/create-instantsearch-app/issues/465)) ([f0ebec5](https://github.com/algolia/create-instantsearch-app/commit/f0ebec52f8013450a86b5b5fda191822a8b94a1e))
166
-
167
-
168
-
169
- # [4.9.0](https://github.com/algolia/create-instantsearch-app/compare/4.8.0...4.9.0) (2021-07-22)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * **templates:** add `packageNamePrefix` to widget templates ([#458](https://github.com/algolia/create-instantsearch-app/issues/458)) ([25da57e](https://github.com/algolia/create-instantsearch-app/commit/25da57eeea01b9e77b34460ea8179e7411a71588))
175
-
176
-
177
- ### Features
178
-
179
- * **cli:** make app path optional ([#457](https://github.com/algolia/create-instantsearch-app/issues/457)) ([d5a5655](https://github.com/algolia/create-instantsearch-app/commit/d5a5655c2c284eb43499aad6c490b95a2b7b4b0c))
180
- * **templates:** update README and LICENSE for widget templates ([#459](https://github.com/algolia/create-instantsearch-app/issues/459)) ([813c7bf](https://github.com/algolia/create-instantsearch-app/commit/813c7bfbaebdba5eb7277c59022455b51ea65b23))
181
-
182
-
183
-
184
- # [4.8.0](https://github.com/algolia/create-instantsearch-app/compare/4.7.0...4.8.0) (2021-06-10)
185
-
186
- ### Features
187
-
188
- * **template:** add widget template for react ([#456](https://github.com/algolia/create-instantsearch-app/issues/456)) ([cf2c81b](https://github.com/algolia/create-instantsearch-app/commit/cf2c81bf76601dea82556f89df2846321384b1b9))
189
-
190
-
191
-
192
- # [4.7.0](https://github.com/algolia/create-instantsearch-app/compare/4.6.0...4.7.0) (2021-05-19)
193
-
194
-
195
- ### Bug Fixes
196
-
197
- * **templates:** add `main` entry point ([#447](https://github.com/algolia/create-instantsearch-app/issues/447)) ([988336d](https://github.com/algolia/create-instantsearch-app/commit/988336dac4e92ce545e9ea0ebb79565f5043f61a))
198
- * **templates:** remove `main` entry points for Vue and React ([51c5f3c](https://github.com/algolia/create-instantsearch-app/commit/51c5f3cdc73d32a0008fc2bdb05ab3378ba2d422))
199
- * **templates:** update to latest Parcel version ([#454](https://github.com/algolia/create-instantsearch-app/issues/454)) ([7bb892e](https://github.com/algolia/create-instantsearch-app/commit/7bb892ea0d61db2562b2e76246e928ec7deb3b96))
200
- * **templates:** use function component in React template ([#445](https://github.com/algolia/create-instantsearch-app/issues/445)) ([17f8cc9](https://github.com/algolia/create-instantsearch-app/commit/17f8cc98c3e0b1bb1930cd94e88033c6d8b10071))
201
-
202
-
203
- ### Features
204
-
205
- * **template:** add widget template ([#455](https://github.com/algolia/create-instantsearch-app/issues/455)) ([e48f9c6](https://github.com/algolia/create-instantsearch-app/commit/e48f9c6cd1721625e2de5f43336ab812ef70cae2))
206
- * **templates:** update Autocomplete.js template to Satellite ([#450](https://github.com/algolia/create-instantsearch-app/issues/450)) ([1ce212b](https://github.com/algolia/create-instantsearch-app/commit/1ce212bd206c5e09c3ee2873bf41720e8aa85dcb))
207
- * **vue:** update vue template for vue-instantsearch 3 ([#452](https://github.com/algolia/create-instantsearch-app/issues/452)) ([2b3d6ff](https://github.com/algolia/create-instantsearch-app/commit/2b3d6ffd106b6cf3969b075a1451d8ec4ed4b381))
208
-
209
-
210
-
211
- # [4.6.0](https://github.com/algolia/create-instantsearch-app/compare/4.5.0...4.6.0) (2019-12-18)
212
-
213
-
214
- ### Features
215
-
216
- * **templates:** add JavaScript Helper 3 template ([#444](https://github.com/algolia/create-instantsearch-app/issues/444)) ([dea6714](https://github.com/algolia/create-instantsearch-app/commit/dea6714a16e4f47e52a7824348064a962b9a93ff))
217
-
218
-
219
-
220
- ## [4.4.2](https://github.com/algolia/create-instantsearch-app/compare/4.4.1...4.4.2) (2019-04-10)
221
-
222
-
223
- ### Bug Fixes
224
-
225
- * **deps:** update dependency chalk to v2.4.2 ([#385](https://github.com/algolia/create-instantsearch-app/issues/385)) ([1bb0e23](https://github.com/algolia/create-instantsearch-app/commit/1bb0e23))
226
- * **deps:** update dependency load-json-file to v5.2.0 ([#387](https://github.com/algolia/create-instantsearch-app/issues/387)) ([2b5f396](https://github.com/algolia/create-instantsearch-app/commit/2b5f396))
227
- * **templates:** use expo for react-native ([#392](https://github.com/algolia/create-instantsearch-app/issues/392)) ([e7de93c](https://github.com/algolia/create-instantsearch-app/commit/e7de93c))
228
-
229
-
230
-
231
- ## [4.4.1](https://github.com/algolia/create-instantsearch-app/compare/4.4.0...4.4.1) (2019-02-26)
232
-
233
-
234
- ### Bug Fixes
235
-
236
- * **api:** resolve template path ([375212b](https://github.com/algolia/create-instantsearch-app/commit/375212b))
237
-
238
-
239
-
240
- # [4.4.0](https://github.com/algolia/create-instantsearch-app/compare/4.3.2...4.4.0) (2019-02-20)
241
-
242
-
243
- ### Features
244
-
245
- * **vue:** add template for Vue v2 ([#370](https://github.com/algolia/create-instantsearch-app/issues/370)) ([ec43d28](https://github.com/algolia/create-instantsearch-app/commit/ec43d28))
246
-
247
-
248
-
249
- ## [4.3.2](https://github.com/algolia/create-instantsearch-app/compare/4.3.1...4.3.2) (2019-02-15)
250
-
251
-
252
- ### Bug Fixes
253
-
254
- * **api:** fix template resolver ([1b0d2a1](https://github.com/algolia/create-instantsearch-app/commit/1b0d2a1))
255
-
256
-
257
-
258
- ## [4.3.1](https://github.com/algolia/create-instantsearch-app/compare/4.3.0...4.3.1) (2019-02-15)
259
-
260
-
261
- ### Bug Fixes
262
-
263
- * **api:** resolve relative paths ([#365](https://github.com/algolia/create-instantsearch-app/issues/365)) ([fc8c421](https://github.com/algolia/create-instantsearch-app/commit/fc8c421))
264
-
265
-
266
-
267
- # [4.3.0](https://github.com/algolia/create-instantsearch-app/compare/4.2.0...4.3.0) (2019-02-14)
268
-
269
-
270
- ### Bug Fixes
271
-
272
- * **deps:** update dependency inquirer to v6.2.2 ([#340](https://github.com/algolia/create-instantsearch-app/issues/340)) ([40d7419](https://github.com/algolia/create-instantsearch-app/commit/40d7419))
273
- * **deps:** update vue monorepo to v2.6.2 ([#345](https://github.com/algolia/create-instantsearch-app/issues/345)) ([53cc4dc](https://github.com/algolia/create-instantsearch-app/commit/53cc4dc))
274
- * **React InstantSearch:** placeholder template ([#361](https://github.com/algolia/create-instantsearch-app/issues/361)) ([caf15a0](https://github.com/algolia/create-instantsearch-app/commit/caf15a0))
275
- * **templates:** remove community links ([#362](https://github.com/algolia/create-instantsearch-app/issues/362)) ([8709534](https://github.com/algolia/create-instantsearch-app/commit/8709534))
276
-
277
-
278
- ### Features
279
-
280
- * **api:** add support for template versioning ([#351](https://github.com/algolia/create-instantsearch-app/issues/351)) ([e679daa](https://github.com/algolia/create-instantsearch-app/commit/e679daa))
281
- * **api:** throw when unsupported template version ([#354](https://github.com/algolia/create-instantsearch-app/issues/354)) ([f7a6a4e](https://github.com/algolia/create-instantsearch-app/commit/f7a6a4e))
282
-
283
-
284
-
285
- # [4.2.0](https://github.com/algolia/create-instantsearch-app/compare/4.1.0...4.2.0) (2019-01-14)
286
-
287
-
288
- ### Bug Fixes
289
-
290
- * **angular:** use instantsearch.css styles directly ([#347](https://github.com/algolia/create-instantsearch-app/issues/347)) ([4e410d5](https://github.com/algolia/create-instantsearch-app/commit/4e410d5))
291
- * **deps:** update dependency react-scripts to v2.1.1 ([20bbb6a](https://github.com/algolia/create-instantsearch-app/commit/20bbb6a))
292
- * **deps:** update react monorepo to v16.6.3 ([66fd398](https://github.com/algolia/create-instantsearch-app/commit/66fd398))
293
-
294
-
295
- ### Features
296
-
297
- * **js:** migrate template to InstantSearch.js 3 ([#350](https://github.com/algolia/create-instantsearch-app/issues/350)) ([819b056](https://github.com/algolia/create-instantsearch-app/commit/819b056)), closes [#349](https://github.com/algolia/create-instantsearch-app/issues/349)
298
-
299
-
300
-
301
- <a name="4.1.0"></a>
302
- # [4.1.0](https://github.com/algolia/create-instantsearch-app/compare/4.0.0...4.1.0) (2018-10-29)
303
-
304
-
305
- ### Bug Fixes
306
-
307
- * **angular:** add prod param to build command ([#278](https://github.com/algolia/create-instantsearch-app/issues/278)) ([0bc801b](https://github.com/algolia/create-instantsearch-app/commit/0bc801b))
308
- * **angular:** fix manifest and Angular dependencies ([#310](https://github.com/algolia/create-instantsearch-app/issues/310)) ([d4dd811](https://github.com/algolia/create-instantsearch-app/commit/d4dd811))
309
- * **autocomplete:** remove useless $hits variable ([#252](https://github.com/algolia/create-instantsearch-app/issues/252)) ([1b04e8d](https://github.com/algolia/create-instantsearch-app/commit/1b04e8d))
310
- * **cli:** Fix prompt typo ([#230](https://github.com/algolia/create-instantsearch-app/issues/230)) ([bf74d80](https://github.com/algolia/create-instantsearch-app/commit/bf74d80))
311
- * **deps:** update angular monorepo to v6.1.10 ([#287](https://github.com/algolia/create-instantsearch-app/issues/287)) ([173ae07](https://github.com/algolia/create-instantsearch-app/commit/173ae07))
312
- * **deps:** update angular monorepo to v6.1.7 ([#234](https://github.com/algolia/create-instantsearch-app/issues/234)) ([976612e](https://github.com/algolia/create-instantsearch-app/commit/976612e))
313
- * **deps:** update angular monorepo to v6.1.9 ([#269](https://github.com/algolia/create-instantsearch-app/issues/269)) ([f696ac0](https://github.com/algolia/create-instantsearch-app/commit/f696ac0))
314
- * **deps:** update dependency commander to v2.18.0 ([#235](https://github.com/algolia/create-instantsearch-app/issues/235)) ([ea3ab43](https://github.com/algolia/create-instantsearch-app/commit/ea3ab43))
315
- * **deps:** update dependency commander to v2.19.0 ([#288](https://github.com/algolia/create-instantsearch-app/issues/288)) ([4ab3fd3](https://github.com/algolia/create-instantsearch-app/commit/4ab3fd3))
316
- * **deps:** update dependency expo to v29.0.1 ([#249](https://github.com/algolia/create-instantsearch-app/issues/249)) ([9eed507](https://github.com/algolia/create-instantsearch-app/commit/9eed507))
317
- * **deps:** update dependency expo to v30 ([#241](https://github.com/algolia/create-instantsearch-app/issues/241)) ([45b7ae5](https://github.com/algolia/create-instantsearch-app/commit/45b7ae5))
318
- * **deps:** update dependency load-json-file to v5.1.0 ([#270](https://github.com/algolia/create-instantsearch-app/issues/270)) ([2c16283](https://github.com/algolia/create-instantsearch-app/commit/2c16283))
319
- * **deps:** update dependency metalsmith-ignore to v1 ([#242](https://github.com/algolia/create-instantsearch-app/issues/242)) ([2352281](https://github.com/algolia/create-instantsearch-app/commit/2352281))
320
- * **deps:** update dependency rxjs to v6.3.2 ([#236](https://github.com/algolia/create-instantsearch-app/issues/236)) ([950a737](https://github.com/algolia/create-instantsearch-app/commit/950a737))
321
- * **deps:** update dependency rxjs to v6.3.3 ([#271](https://github.com/algolia/create-instantsearch-app/issues/271)) ([a13c192](https://github.com/algolia/create-instantsearch-app/commit/a13c192))
322
- * **deps:** update dependency vue to v2.5.17 ([#176](https://github.com/algolia/create-instantsearch-app/issues/176)) ([99fd4c1](https://github.com/algolia/create-instantsearch-app/commit/99fd4c1))
323
- * **deps:** update react monorepo to v16.5.0 ([#238](https://github.com/algolia/create-instantsearch-app/issues/238)) ([cf5d036](https://github.com/algolia/create-instantsearch-app/commit/cf5d036))
324
- * **deps:** update react monorepo to v16.5.1 ([#251](https://github.com/algolia/create-instantsearch-app/issues/251)) ([0086764](https://github.com/algolia/create-instantsearch-app/commit/0086764))
325
- * **deps:** update react monorepo to v16.5.2 ([#272](https://github.com/algolia/create-instantsearch-app/issues/272)) ([8401d1b](https://github.com/algolia/create-instantsearch-app/commit/8401d1b))
326
- * **InstantSearch:** disable autofocus ([#257](https://github.com/algolia/create-instantsearch-app/issues/257)) ([ed1d98a](https://github.com/algolia/create-instantsearch-app/commit/ed1d98a))
327
- * **templates:** Add Vue ESLint config ([#240](https://github.com/algolia/create-instantsearch-app/issues/240)) ([c1a5ecf](https://github.com/algolia/create-instantsearch-app/commit/c1a5ecf))
328
-
329
-
330
- ### Features
331
-
332
- * **cli:** add default Algolia credentials ([#291](https://github.com/algolia/create-instantsearch-app/issues/291)) ([b3dc47f](https://github.com/algolia/create-instantsearch-app/commit/b3dc47f))
333
- * **react:** upgrade to react-scripts@2 ([#300](https://github.com/algolia/create-instantsearch-app/issues/300)) ([f8ac929](https://github.com/algolia/create-instantsearch-app/commit/f8ac929))
334
-
335
-
336
- ### Reverts
337
-
338
- * fix(deps): update dependency react-native to v0.57.1 ([#250](https://github.com/algolia/create-instantsearch-app/issues/250)) ([24b1935](https://github.com/algolia/create-instantsearch-app/commit/24b1935))
339
-
340
-
341
-
342
- <a name="4.0.0"></a>
343
- # [4.0.0](https://github.com/algolia/create-instantsearch-app/compare/3.3.0...4.0.0) (2018-09-03)
344
-
345
-
346
- ### Bug Fixes
347
-
348
- * **cli:** Update question for "Attribute to display" ([#149](https://github.com/algolia/create-instantsearch-app/issues/149)) ([1ccd5b9](https://github.com/algolia/create-instantsearch-app/commit/1ccd5b9))
349
- * **deps:** update dependency algoliasearch to v3.30.0 ([#174](https://github.com/algolia/create-instantsearch-app/issues/174)) ([1e9a2a1](https://github.com/algolia/create-instantsearch-app/commit/1e9a2a1))
350
- * **deps:** update dependency commander to v2.17.0 ([#175](https://github.com/algolia/create-instantsearch-app/issues/175)) ([08819c5](https://github.com/algolia/create-instantsearch-app/commit/08819c5))
351
- * **deps:** update dependency commander to v2.17.1 ([#191](https://github.com/algolia/create-instantsearch-app/issues/191)) ([f0beb2e](https://github.com/algolia/create-instantsearch-app/commit/f0beb2e))
352
- * **deps:** update dependency expo to v27.1.1 ([#163](https://github.com/algolia/create-instantsearch-app/issues/163)) ([4fbba69](https://github.com/algolia/create-instantsearch-app/commit/4fbba69))
353
- * **deps:** update dependency expo to v29 ([#155](https://github.com/algolia/create-instantsearch-app/issues/155)) ([53b63bb](https://github.com/algolia/create-instantsearch-app/commit/53b63bb))
354
- * **deps:** update dependency inquirer to v6.1.0 ([#192](https://github.com/algolia/create-instantsearch-app/issues/192)) ([493185e](https://github.com/algolia/create-instantsearch-app/commit/493185e))
355
- * **deps:** update dependency inquirer to v6.2.0 ([#217](https://github.com/algolia/create-instantsearch-app/issues/217)) ([08ee151](https://github.com/algolia/create-instantsearch-app/commit/08ee151))
356
- * **deps:** update dependency react-native to v0.56.0 ([#193](https://github.com/algolia/create-instantsearch-app/issues/193)) ([2826658](https://github.com/algolia/create-instantsearch-app/commit/2826658))
357
- * **deps:** update dependency react-scripts to v1.1.5 ([#218](https://github.com/algolia/create-instantsearch-app/issues/218)) ([4ca0ab9](https://github.com/algolia/create-instantsearch-app/commit/4ca0ab9))
358
- * **deps:** update dependency rxjs to v6.3.1 ([#228](https://github.com/algolia/create-instantsearch-app/issues/228)) ([5eb3149](https://github.com/algolia/create-instantsearch-app/commit/5eb3149))
359
- * **deps:** update react monorepo to v16.4.2 ([#177](https://github.com/algolia/create-instantsearch-app/issues/177)) ([c9cdb13](https://github.com/algolia/create-instantsearch-app/commit/c9cdb13))
360
-
361
-
362
- ### Features
363
-
364
- * **cli:** Accept multiple attributes to display ([#153](https://github.com/algolia/create-instantsearch-app/issues/153)) ([0b93202](https://github.com/algolia/create-instantsearch-app/commit/0b93202)), closes [#151](https://github.com/algolia/create-instantsearch-app/issues/151)
365
-
366
-
367
- ### Reverts
368
-
369
- * fix(deps): update dependency react-native to v0.56.0 ([#193](https://github.com/algolia/create-instantsearch-app/issues/193)) ([#229](https://github.com/algolia/create-instantsearch-app/issues/229)) ([14d2e58](https://github.com/algolia/create-instantsearch-app/commit/14d2e58))
370
-
371
-
372
- ### BREAKING CHANGES
373
-
374
- * **cli:** The option `mainAttribute` has been renamed `attributesToDisplay` and now accepts multiple attributes.
375
-
376
-
377
-
378
- <a name="3.3.0"></a>
379
- # [3.3.0](https://github.com/algolia/create-instantsearch-app/compare/3.2.0...3.3.0) (2018-07-24)
380
-
381
-
382
- ### Bug Fixes
383
-
384
- * **deps:** update dependency metalsmith-in-place to v4.2.0 ([#146](https://github.com/algolia/create-instantsearch-app/issues/146)) ([a7dc371](https://github.com/algolia/create-instantsearch-app/commit/a7dc371))
385
-
386
-
387
- ### Features
388
-
389
- * **templates:** Update InstantSearch.js to 2.9.0 ([b36ce30](https://github.com/algolia/create-instantsearch-app/commit/b36ce30))
390
-
391
-
392
-
393
- <a name="3.2.0"></a>
394
- # [3.2.0](https://github.com/algolia/create-instantsearch-app/compare/3.1.0...3.2.0) (2018-07-19)
395
-
396
-
397
- ### Bug Fixes
398
-
399
- * **deps:** update dependency algoliasearch to v3.29.0 ([#106](https://github.com/algolia/create-instantsearch-app/issues/106)) ([73f64f3](https://github.com/algolia/create-instantsearch-app/commit/73f64f3))
400
- * **deps:** update dependency commander to v2.16.0 ([#107](https://github.com/algolia/create-instantsearch-app/issues/107)) ([6c31090](https://github.com/algolia/create-instantsearch-app/commit/6c31090))
401
- * **deps:** update dependency inquirer to v6 ([#127](https://github.com/algolia/create-instantsearch-app/issues/127)) ([185c2a3](https://github.com/algolia/create-instantsearch-app/commit/185c2a3))
402
- * **deps:** update dependency react to v16.4.1 ([#133](https://github.com/algolia/create-instantsearch-app/issues/133)) ([fe5090f](https://github.com/algolia/create-instantsearch-app/commit/fe5090f))
403
- * **deps:** update dependency react-native to v0.56.0 ([#134](https://github.com/algolia/create-instantsearch-app/issues/134)) ([c578859](https://github.com/algolia/create-instantsearch-app/commit/c578859))
404
- * **deps:** update dependency rxjs to v6.2.2 ([#135](https://github.com/algolia/create-instantsearch-app/issues/135)) ([15429d6](https://github.com/algolia/create-instantsearch-app/commit/15429d6))
405
- * **templates:** Fix failing default tests in Angular ([#138](https://github.com/algolia/create-instantsearch-app/issues/138)) ([2974e98](https://github.com/algolia/create-instantsearch-app/commit/2974e98))
406
- * **templates:** Use single quotes in Angular ([#137](https://github.com/algolia/create-instantsearch-app/issues/137)) ([b461f86](https://github.com/algolia/create-instantsearch-app/commit/b461f86))
407
-
408
-
409
- ### Features
410
-
411
- * **templates:** Add types for AlgoliaSearch in Angular ([#116](https://github.com/algolia/create-instantsearch-app/issues/116)) ([63ab3c1](https://github.com/algolia/create-instantsearch-app/commit/63ab3c1))
412
- * **templates:** Reorder Angular `devDependencies` ([#115](https://github.com/algolia/create-instantsearch-app/issues/115)) ([2fd585a](https://github.com/algolia/create-instantsearch-app/commit/2fd585a))
413
- * **templates:** Use `searchClient` in Angular ([#114](https://github.com/algolia/create-instantsearch-app/issues/114)) ([6b6cb2f](https://github.com/algolia/create-instantsearch-app/commit/6b6cb2f))
414
- * **templates:** Use `searchClient` in React ([#113](https://github.com/algolia/create-instantsearch-app/issues/113)) ([33e646c](https://github.com/algolia/create-instantsearch-app/commit/33e646c))
415
-
416
-
417
- ### Reverts
418
-
419
- * chore(deps): update dependency typescript to v2.9.2 ([#132](https://github.com/algolia/create-instantsearch-app/issues/132)) ([1c0819b](https://github.com/algolia/create-instantsearch-app/commit/1c0819b))
420
-
421
-
422
-
423
- <a name="3.1.0"></a>
424
- # [3.1.0](https://github.com/algolia/create-instantsearch-app/compare/3.0.0...3.1.0) (2018-07-05)
425
-
426
-
427
- ### Bug Fixes
428
-
429
- * **cli:** Remove command shortcuts ([#67](https://github.com/algolia/create-instantsearch-app/issues/67)) ([4bc6ba1](https://github.com/algolia/create-instantsearch-app/commit/4bc6ba1))
430
- * **ios:** run pod repo update before install ([#72](https://github.com/algolia/create-instantsearch-app/issues/72)) ([1d10805](https://github.com/algolia/create-instantsearch-app/commit/1d10805))
431
- * **templates:** Pin library dependencies ([#79](https://github.com/algolia/create-instantsearch-app/issues/79)) ([8ea5a77](https://github.com/algolia/create-instantsearch-app/commit/8ea5a77))
432
-
433
-
434
- ### Features
435
-
436
- * **cli:** Add template categories ([#76](https://github.com/algolia/create-instantsearch-app/issues/76)) ([a04e9c6](https://github.com/algolia/create-instantsearch-app/commit/a04e9c6))
437
- * **cli:** Add empty lines before intro line ([b4b4fcc](https://github.com/algolia/create-instantsearch-app/commit/b4b4fcc))
438
- * **templates:** Add Android template ([#73](https://github.com/algolia/create-instantsearch-app/issues/73)) ([d35e9c9](https://github.com/algolia/create-instantsearch-app/commit/d35e9c9))
439
- * **templates:** Add Autocomplete.js template ([#80](https://github.com/algolia/create-instantsearch-app/issues/80)) ([fe9a51c](https://github.com/algolia/create-instantsearch-app/commit/fe9a51c))
440
- * **templates:** Add iOS template ([#69](https://github.com/algolia/create-instantsearch-app/issues/69)) ([aa061f8](https://github.com/algolia/create-instantsearch-app/commit/aa061f8))
441
- * **templates:** Add JavaScript Client template ([#77](https://github.com/algolia/create-instantsearch-app/issues/77)) ([1dc0d03](https://github.com/algolia/create-instantsearch-app/commit/1dc0d03))
442
- * **templates:** Add JavaScript Helper template ([#78](https://github.com/algolia/create-instantsearch-app/issues/78)) ([34d0e94](https://github.com/algolia/create-instantsearch-app/commit/34d0e94))
443
-
444
-
445
-
446
- <a name="3.0.0"></a>
447
- # [3.0.0](https://github.com/algolia/create-instantsearch-app/compare/3.0.0-beta.5...3.0.0) (2018-06-18)
448
-
449
-
450
- ### Bug Fixes
451
-
452
- * **cli:** Use latest version when stable unavailable ([#57](https://github.com/algolia/create-instantsearch-app/issues/57)) ([e764cd5](https://github.com/algolia/create-instantsearch-app/commit/e764cd5))
453
-
454
-
455
-
456
- <a name="3.0.0-beta.5"></a>
457
- # [3.0.0-beta.5](https://github.com/algolia/create-instantsearch-app/compare/3.0.0-beta.4...3.0.0-beta.5) (2018-06-15)
458
-
459
-
460
- ### Features
461
-
462
- * **templates:** Update Parcel on InstantSearch.js template ([2f9d529](https://github.com/algolia/create-instantsearch-app/commit/2f9d529))
463
-
464
-
465
-
466
- <a name="3.0.0-beta.4"></a>
467
- # [3.0.0-beta.4](https://github.com/algolia/create-instantsearch-app/compare/3.0.0-beta.3...3.0.0-beta.4) (2018-06-15)
468
-
469
-
470
- ### Bug Fixes
471
-
472
- * **cli:** Fallback on latest version when stable unavailable ([#50](https://github.com/algolia/create-instantsearch-app/issues/50)) ([0bd64a2](https://github.com/algolia/create-instantsearch-app/commit/0bd64a2))
473
-
474
-
475
- ### Features
476
-
477
- * **cli:** Print relative cd path ([#45](https://github.com/algolia/create-instantsearch-app/issues/45)) ([37907e1](https://github.com/algolia/create-instantsearch-app/commit/37907e1))
478
- * **cli:** Recommend attributes to display in hits ([#43](https://github.com/algolia/create-instantsearch-app/issues/43)) ([0d9cb6a](https://github.com/algolia/create-instantsearch-app/commit/0d9cb6a))
479
- * **task:** Ignore error log when user aborts during installation ([#42](https://github.com/algolia/create-instantsearch-app/issues/42)) ([9e99aad](https://github.com/algolia/create-instantsearch-app/commit/9e99aad))
480
- * **template:** Use default IS import from jsDelivr ([#46](https://github.com/algolia/create-instantsearch-app/issues/46)) ([8e0c54b](https://github.com/algolia/create-instantsearch-app/commit/8e0c54b))
481
- * **templates:** Add React Native template ([#53](https://github.com/algolia/create-instantsearch-app/issues/53)) ([8b14d31](https://github.com/algolia/create-instantsearch-app/commit/8b14d31))
482
- * **templates:** Warn facets usage with React Native template ([#56](https://github.com/algolia/create-instantsearch-app/issues/56)) ([6502feb](https://github.com/algolia/create-instantsearch-app/commit/6502feb))
483
-
484
-
485
-
486
- <a name="3.0.0-beta.3"></a>
487
- # [3.0.0-beta.3](https://github.com/algolia/create-instantsearch-app/compare/3.0.0-beta.1...3.0.0-beta.3) (2018-06-11)
488
-
489
-
490
- ### Bug Fixes
491
-
492
- * **templates:** Remove empty div when no facets ([#38](https://github.com/algolia/create-instantsearch-app/issues/38)) ([f860c2c](https://github.com/algolia/create-instantsearch-app/commit/f860c2c))
493
-
494
-
495
- ### Features
496
-
497
- * **release:** Set up `release-it` for releasing ([#40](https://github.com/algolia/create-instantsearch-app/issues/40)) ([054a755](https://github.com/algolia/create-instantsearch-app/commit/054a755))
498
- * **templates:** Add config files ([#39](https://github.com/algolia/create-instantsearch-app/issues/39)) ([b34b49b](https://github.com/algolia/create-instantsearch-app/commit/b34b49b)), closes [#34](https://github.com/algolia/create-instantsearch-app/issues/34)
499
-
500
-
501
-
502
- <a name="3.0.0-beta.1"></a>
503
- # [3.0.0-beta.1](https://github.com/algolia/create-instantsearch-app/compare/3.0.0-beta.0...3.0.0-beta.1) (2018-06-05)
504
-
505
-
506
- ### Features
507
-
508
- * **cli:** Move hashbang to `index.js` ([fd70338](https://github.com/algolia/create-instantsearch-app/commit/fd70338))
509
-
510
-
511
-
512
- <a name="3.0.0-beta.0"></a>
513
- # [3.0.0-beta.0](https://github.com/algolia/create-instantsearch-app/compare/2.3.0...3.0.0-beta.0) (2018-06-05)
514
-
515
-
516
- ### Features
517
-
518
- * **api:** Create InstantSearch App v3 ([#10](https://github.com/algolia/create-instantsearch-app/issues/10)) ([8833cfb](https://github.com/algolia/create-instantsearch-app/commit/8833cfb)), closes [#9](https://github.com/algolia/create-instantsearch-app/issues/9) [#30](https://github.com/algolia/create-instantsearch-app/issues/30) [#14](https://github.com/algolia/create-instantsearch-app/issues/14) [#22](https://github.com/algolia/create-instantsearch-app/issues/22) [#26](https://github.com/algolia/create-instantsearch-app/issues/26) [#27](https://github.com/algolia/create-instantsearch-app/issues/27) [#28](https://github.com/algolia/create-instantsearch-app/issues/28)
519
-
520
-
521
-
522
- <a name="2.3.0"></a>
523
- # [2.3.0](https://github.com/algolia/create-instantsearch-app/compare/2.2.0...2.3.0) (2018-02-01)
524
-
525
-
526
- ### Bug Fixes
527
-
528
- * **boilerplate:** minor HTML fixes ([#6](https://github.com/algolia/create-instantsearch-app/issues/6)) ([51c00a4](https://github.com/algolia/create-instantsearch-app/commit/51c00a4))
529
-
530
-
531
- ### Features
532
-
533
- * **version:** add dynamic versioning ([#8](https://github.com/algolia/create-instantsearch-app/issues/8)) ([decf54c](https://github.com/algolia/create-instantsearch-app/commit/decf54c)), closes [#1](https://github.com/algolia/create-instantsearch-app/issues/1)
534
-
535
-
536
-
537
- <a name="2.2.0"></a>
538
- # [2.2.0](https://github.com/algolia/create-instantsearch-app/compare/d7693d6...2.2.0) (2017-09-01)
539
-
540
-
541
- ### Features
542
-
543
- * can create new basic instantsearch.js projects ([d7693d6](https://github.com/algolia/create-instantsearch-app/commit/d7693d6))
544
- * **boilerplate:** add server to vanilla instantsearch.js ([02eb820](https://github.com/algolia/create-instantsearch-app/commit/02eb820))
545
- * **boilerplate:** configuration of the new app by the script ([da6758c](https://github.com/algolia/create-instantsearch-app/commit/da6758c))
546
- * **cli:** added config handling ([00d0a40](https://github.com/algolia/create-instantsearch-app/commit/00d0a40))
547
-
548
-
549
-
@@ -1,5 +0,0 @@
1
- node_modules
2
- .DS_Store
3
- dist
4
- dist-ssr
5
- *.local