create-instantsearch-app 5.1.1 → 5.1.2
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.
- package/CHANGELOG.md +11 -0
- package/package.json +3 -3
- package/src/templates/Angular InstantSearch/package.json +12 -13
- package/src/templates/Autocomplete/package.json +1 -1
- package/src/templates/InstantSearch.js/package.json +1 -1
- package/src/templates/InstantSearch.js widget/package.json.hbs +1 -1
- package/src/templates/JavaScript Helper 2/package.json +1 -1
- package/src/templates/React InstantSearch/package.json +1 -1
- package/src/templates/React InstantSearch/src/App.js.hbs +3 -1
- package/src/templates/React InstantSearch Native/package.json +1 -1
- package/src/templates/React InstantSearch widget/package.json.hbs +1 -1
- package/src/templates/Vue InstantSearch/package.json +1 -1
- package/src/templates/Vue InstantSearch 2/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [5.1.2](https://github.com/algolia/create-instantsearch-app/compare/5.1.1...5.1.2) (2022-02-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **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))
|
|
7
|
+
* **angular:** update angular packages ([#555](https://github.com/algolia/create-instantsearch-app/issues/555)) ([9987264](https://github.com/algolia/create-instantsearch-app/commit/9987264f32582721ac2a8e7f3348fa3d54be3975))
|
|
8
|
+
* **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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
## [5.1.1](https://github.com/algolia/create-instantsearch-app/compare/5.1.0...5.1.1) (2022-01-03)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-instantsearch-app",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "⚡️ Build InstantSearch apps at the speed of thought",
|
|
6
6
|
"keywords": [
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"node": ">= 10"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@algolia/cache-in-memory": "4
|
|
40
|
-
"algoliasearch": "4
|
|
39
|
+
"@algolia/cache-in-memory": "4",
|
|
40
|
+
"algoliasearch": "4",
|
|
41
41
|
"chalk": "3.0.0",
|
|
42
42
|
"commander": "4.1.1",
|
|
43
43
|
"inquirer": "8.0.0",
|
|
@@ -10,25 +10,24 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "12.2.
|
|
14
|
-
"@angular/common": "12.2.
|
|
15
|
-
"@angular/compiler": "12.2.
|
|
16
|
-
"@angular/core": "12.2.
|
|
17
|
-
"@angular/forms": "12.2.
|
|
18
|
-
"@angular/platform-browser": "12.2.
|
|
19
|
-
"@angular/platform-browser-dynamic": "12.2.
|
|
20
|
-
"@angular/router": "12.2.
|
|
21
|
-
"algoliasearch": "4
|
|
13
|
+
"@angular/animations": "12.2.16",
|
|
14
|
+
"@angular/common": "12.2.16",
|
|
15
|
+
"@angular/compiler": "12.2.16",
|
|
16
|
+
"@angular/core": "12.2.16",
|
|
17
|
+
"@angular/forms": "12.2.16",
|
|
18
|
+
"@angular/platform-browser": "12.2.16",
|
|
19
|
+
"@angular/platform-browser-dynamic": "12.2.16",
|
|
20
|
+
"@angular/router": "12.2.16",
|
|
21
|
+
"algoliasearch": "4",
|
|
22
22
|
"angular-instantsearch": "{{libraryVersion}}",
|
|
23
23
|
"rxjs": "6.6.0",
|
|
24
24
|
"tslib": "2.3.0",
|
|
25
25
|
"zone.js": "0.11.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@angular-devkit/build-angular": "12.2.
|
|
29
|
-
"@angular/cli": "12.2.
|
|
30
|
-
"@angular/compiler-cli": "12.2.
|
|
31
|
-
"@types/algoliasearch": "4.0.0",
|
|
28
|
+
"@angular-devkit/build-angular": "12.2.16",
|
|
29
|
+
"@angular/cli": "12.2.16",
|
|
30
|
+
"@angular/compiler-cli": "12.2.16",
|
|
32
31
|
"@types/jasmine": "3.8.0",
|
|
33
32
|
"@types/node": "12.11.1",
|
|
34
33
|
"jasmine-core": "3.8.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@testing-library/jest-dom": "5.11.9",
|
|
49
49
|
"@typescript-eslint/eslint-plugin": "4.16.1",
|
|
50
50
|
"@typescript-eslint/parser": "4.16.1",
|
|
51
|
-
"algoliasearch": "4
|
|
51
|
+
"algoliasearch": "4",
|
|
52
52
|
"algoliasearch-helper": "3.4.4",
|
|
53
53
|
"babel-jest": "26.6.3",
|
|
54
54
|
"babel-plugin-add-import-extension": "1.5.0",
|