Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
2.26.1 - 2018-06-19
Browse files Browse the repository at this point in the history
 * build: Configure Renovate (#579) 95fa18d
 * chore(deps): update dependency algolia-frontend-components to v0.0.34 (#580) 27470e2
 * chore(deps): update dependency algoliasearch to v3.27.1 (#601) bbadef3
 * chore(deps): update dependency marked to v0.3.19 (#591) d599356
 * chore(deps): update dependency sinon to v4.5.0 (#599) c6a0dd2
 * chore(deps): update dependency tape to v4.9.0 (#603) e29f234
 * doc(params): Add filters to query parameters (#604) c2e742e, closes #528
 * fix(_dispatchAlgoliaResponse): avoid mutate the client response (#611) d6bd801
  • Loading branch information
bobylito committed Jun 19, 2018
1 parent 861cb56 commit fa4a93d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
@@ -1,3 +1,13 @@
2.26.1 - 2018-06-19
* build: Configure Renovate (#579) https://github.com/algolia/algoliasearch-helper-js/commit/95fa18d14b63d70957be49538893aef7d0f93b77
* chore(deps): update dependency algolia-frontend-components to v0.0.34 (#580) https://github.com/algolia/algoliasearch-helper-js/commit/27470e2868374f7035340974f8e7ddc2c90f80d6
* chore(deps): update dependency algoliasearch to v3.27.1 (#601) https://github.com/algolia/algoliasearch-helper-js/commit/bbadef3994bf68b4b47c0b9312d8f67ae2c5c619
* chore(deps): update dependency marked to v0.3.19 (#591) https://github.com/algolia/algoliasearch-helper-js/commit/d5993568ed28fc2e1ee392bb3bb9c8699bd6707f
* chore(deps): update dependency sinon to v4.5.0 (#599) https://github.com/algolia/algoliasearch-helper-js/commit/c6a0dd2d6bdd3d5b256d6c1b5ad73e3f22371115
* chore(deps): update dependency tape to v4.9.0 (#603) https://github.com/algolia/algoliasearch-helper-js/commit/e29f2349a982e7e5d8efd9e2bd99d7c280ab9a55
* doc(params): Add filters to query parameters (#604) https://github.com/algolia/algoliasearch-helper-js/commit/c2e742e48a9093090937bf6abba9fa61227edf9d, closes https://github.com/algolia/algoliasearch-helper-js/issues/528
* fix(_dispatchAlgoliaResponse): avoid mutate the client response (#611) https://github.com/algolia/algoliasearch-helper-js/commit/d6bd801f3b3dc07ccd31b57947b8086c3fe07195

2.26.0 - 2018-04-25
* chore(deps): pin and upgrade some dependencies (#566) https://github.com/algolia/algoliasearch-helper-js/commit/5edd3b19f8ec115733874bddfb5bf1fa602ceab9
* chore(yarn.lock): fixed zuul dependency https://github.com/algolia/algoliasearch-helper-js/commit/ad21c56ddf9ec179e87a01560fdaedb70ba844f0
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "algoliasearch-helper",
"version": "2.26.0",
"version": "2.26.1",
"homepage": "https://github.com/algolia/algoliasearch-helper-js",
"authors": [
"Algolia Team <support@algolia.com>"
Expand Down
4 changes: 2 additions & 2 deletions dist/algoliasearch.helper.js
Expand Up @@ -14860,7 +14860,7 @@ AlgoliaSearchHelper.prototype._dispatchAlgoliaResponse = function(states, queryI

if (this._currentNbQueries === 0) this.emit('searchQueueEmpty');

var results = content.results;
var results = content.results.slice();
forEach(states, function(s) {
var state = s.state;
var queriesCount = s.queriesCount;
Expand Down Expand Up @@ -15555,7 +15555,7 @@ exports.getQueryStringFromState = function(state, options) {
},{"./SearchParameters":290,"./SearchParameters/shortener":291,"lodash/bind":212,"lodash/forEach":221,"lodash/invert":229,"lodash/isEmpty":235,"lodash/isPlainObject":244,"lodash/isString":246,"lodash/map":253,"lodash/mapKeys":254,"lodash/mapValues":255,"lodash/pick":263,"qs":281,"qs/lib/utils":284}],299:[function(require,module,exports){
'use strict';

module.exports = '2.26.0';
module.exports = '2.26.1';

},{}]},{},[1])(1)
});
2 changes: 1 addition & 1 deletion dist/algoliasearch.helper.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "algoliasearch-helper",
"version": "2.26.0",
"version": "2.26.1",
"description": "Helper for implementing advanced search features with algolia",
"main": "index.js",
"homepage": "https://community.algolia.com/algoliasearch-helper-js/",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
@@ -1,3 +1,3 @@
'use strict';

module.exports = '2.26.0';
module.exports = '2.26.1';

0 comments on commit fa4a93d

Please sign in to comment.