Skip to content

Commit

Permalink
chore(release): 6.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
krisk committed Oct 30, 2020
1 parent 9ab9fde commit 84a13cf
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 26 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [6.4.3](https://github.com/krisk/Fuse/compare/v6.4.2...v6.4.3) (2020-10-30)


### Bug Fixes

* **extended:** ignoreLocation when useExtendedSearch is true ([8f67ac9](https://github.com/krisk/Fuse/commit/8f67ac985d3440c20d93ce1e1c5ba66f384ea9bf)), closes [#465](https://github.com/krisk/Fuse/issues/465)

### [6.4.2](https://github.com/krisk/Fuse/compare/v6.4.1...v6.4.2) (2020-10-20)


Expand Down
4 changes: 2 additions & 2 deletions dist/fuse.basic.common.js
@@ -1,5 +1,5 @@
/**
* Fuse.js v6.4.2 - Lightweight fuzzy-search (http://fusejs.io)
* Fuse.js v6.4.3 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2020 Kiro Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
Expand Down Expand Up @@ -1446,7 +1446,7 @@ function format(results, docs) {
});
}

Fuse.version = '6.4.2';
Fuse.version = '6.4.3';
Fuse.createIndex = createIndex;
Fuse.parseIndex = parseIndex;
Fuse.config = Config;
Expand Down
4 changes: 2 additions & 2 deletions dist/fuse.basic.esm.js
@@ -1,5 +1,5 @@
/**
* Fuse.js v6.4.2 - Lightweight fuzzy-search (http://fusejs.io)
* Fuse.js v6.4.3 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2020 Kiro Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
Expand Down Expand Up @@ -1227,7 +1227,7 @@ function format(
})
}

Fuse.version = '6.4.2';
Fuse.version = '6.4.3';
Fuse.createIndex = createIndex;
Fuse.parseIndex = parseIndex;
Fuse.config = Config;
Expand Down
4 changes: 2 additions & 2 deletions dist/fuse.basic.esm.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/fuse.basic.js
@@ -1,5 +1,5 @@
/**
* Fuse.js v6.4.2 - Lightweight fuzzy-search (http://fusejs.io)
* Fuse.js v6.4.3 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2020 Kiro Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
Expand Down Expand Up @@ -1450,7 +1450,7 @@
});
}

Fuse.version = '6.4.2';
Fuse.version = '6.4.3';
Fuse.createIndex = createIndex;
Fuse.parseIndex = parseIndex;
Fuse.config = Config;
Expand Down
4 changes: 2 additions & 2 deletions dist/fuse.basic.min.js

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions dist/fuse.common.js
@@ -1,5 +1,5 @@
/**
* Fuse.js v6.4.2 - Lightweight fuzzy-search (http://fusejs.io)
* Fuse.js v6.4.3 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2020 Kiro Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
Expand Down Expand Up @@ -1427,7 +1427,9 @@ var FuzzyMatch = /*#__PURE__*/function (_BaseMatch) {
_ref$minMatchCharLeng = _ref.minMatchCharLength,
minMatchCharLength = _ref$minMatchCharLeng === void 0 ? Config.minMatchCharLength : _ref$minMatchCharLeng,
_ref$isCaseSensitive = _ref.isCaseSensitive,
isCaseSensitive = _ref$isCaseSensitive === void 0 ? Config.isCaseSensitive : _ref$isCaseSensitive;
isCaseSensitive = _ref$isCaseSensitive === void 0 ? Config.isCaseSensitive : _ref$isCaseSensitive,
_ref$ignoreLocation = _ref.ignoreLocation,
ignoreLocation = _ref$ignoreLocation === void 0 ? Config.ignoreLocation : _ref$ignoreLocation;

_classCallCheck(this, FuzzyMatch);

Expand All @@ -1439,7 +1441,8 @@ var FuzzyMatch = /*#__PURE__*/function (_BaseMatch) {
includeMatches: includeMatches,
findAllMatches: findAllMatches,
minMatchCharLength: minMatchCharLength,
isCaseSensitive: isCaseSensitive
isCaseSensitive: isCaseSensitive,
ignoreLocation: ignoreLocation
});
return _this;
}
Expand Down Expand Up @@ -1616,6 +1619,8 @@ var ExtendedSearch = /*#__PURE__*/function () {
includeMatches = _ref$includeMatches === void 0 ? Config.includeMatches : _ref$includeMatches,
_ref$minMatchCharLeng = _ref.minMatchCharLength,
minMatchCharLength = _ref$minMatchCharLeng === void 0 ? Config.minMatchCharLength : _ref$minMatchCharLeng,
_ref$ignoreLocation = _ref.ignoreLocation,
ignoreLocation = _ref$ignoreLocation === void 0 ? Config.ignoreLocation : _ref$ignoreLocation,
_ref$findAllMatches = _ref.findAllMatches,
findAllMatches = _ref$findAllMatches === void 0 ? Config.findAllMatches : _ref$findAllMatches,
_ref$location = _ref.location,
Expand All @@ -1633,6 +1638,7 @@ var ExtendedSearch = /*#__PURE__*/function () {
includeMatches: includeMatches,
minMatchCharLength: minMatchCharLength,
findAllMatches: findAllMatches,
ignoreLocation: ignoreLocation,
location: location,
threshold: threshold,
distance: distance
Expand Down Expand Up @@ -2224,7 +2230,7 @@ function format(results, docs) {
});
}

Fuse.version = '6.4.2';
Fuse.version = '6.4.3';
Fuse.createIndex = createIndex;
Fuse.parseIndex = parseIndex;
Fuse.config = Config;
Expand Down
2 changes: 1 addition & 1 deletion dist/fuse.d.ts
@@ -1,4 +1,4 @@
// Type definitions for Fuse.js v6.4.2
// Type definitions for Fuse.js v6.4.3
// TypeScript v3.9.5

export default Fuse
Expand Down
12 changes: 8 additions & 4 deletions dist/fuse.esm.js
@@ -1,5 +1,5 @@
/**
* Fuse.js v6.4.2 - Lightweight fuzzy-search (http://fusejs.io)
* Fuse.js v6.4.3 - Lightweight fuzzy-search (http://fusejs.io)
*
* Copyright (c) 2020 Kiro Risk (http://kiro.me)
* All Rights Reserved. Apache Software License 2.0
Expand Down Expand Up @@ -1063,7 +1063,8 @@ class FuzzyMatch extends BaseMatch {
includeMatches = Config.includeMatches,
findAllMatches = Config.findAllMatches,
minMatchCharLength = Config.minMatchCharLength,
isCaseSensitive = Config.isCaseSensitive
isCaseSensitive = Config.isCaseSensitive,
ignoreLocation = Config.ignoreLocation
} = {}
) {
super(pattern);
Expand All @@ -1074,7 +1075,8 @@ class FuzzyMatch extends BaseMatch {
includeMatches,
findAllMatches,
minMatchCharLength,
isCaseSensitive
isCaseSensitive,
ignoreLocation
});
}
static get type() {
Expand Down Expand Up @@ -1232,6 +1234,7 @@ class ExtendedSearch {
isCaseSensitive = Config.isCaseSensitive,
includeMatches = Config.includeMatches,
minMatchCharLength = Config.minMatchCharLength,
ignoreLocation = Config.ignoreLocation,
findAllMatches = Config.findAllMatches,
location = Config.location,
threshold = Config.threshold,
Expand All @@ -1244,6 +1247,7 @@ class ExtendedSearch {
includeMatches,
minMatchCharLength,
findAllMatches,
ignoreLocation,
location,
threshold,
distance
Expand Down Expand Up @@ -1755,7 +1759,7 @@ function format(
})
}

Fuse.version = '6.4.2';
Fuse.version = '6.4.3';
Fuse.createIndex = createIndex;
Fuse.parseIndex = parseIndex;
Fuse.config = Config;
Expand Down

0 comments on commit 84a13cf

Please sign in to comment.