Skip to content

Commit 09d8965

Browse files
committed
Add changelog, update for v6
1 parent 9c4aee3 commit 09d8965

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# What's New
2+
3+
**name-suggestion-index** is an open source project. You can submit bug reports, help out,
4+
or learn more by visiting our project page on GitHub: :octocat: https://github.com/osmlab/name-suggestion-index
5+
6+
Please star our project on GitHub to show your support! ⭐️
7+
8+
_Breaking changes, which may affect downstream projects, are marked with a_ ⚠️
9+
10+
11+
<!--
12+
# A.B.C
13+
##### YYYY-MMM-DD
14+
15+
* Added resources:
16+
* Added events:
17+
* Updated:
18+
19+
[#xxxx]: https://github.com/osmlab/name-suggestion-index/issues/xxxx
20+
-->
21+
22+
# 6.0.YYYYMMDD
23+
##### 2021-Jun-24
24+
* Bump to location-conflation v1.0.2 / country-coder v5.0.3
25+
* ⚠️ Replace rollup/parcel/babel with [esbuild](https://esbuild.github.io/) for super fast build speed. Package exports are now:
26+
* `"module": "./index.mjs"` - ESM, modern JavaScript, works with `import`
27+
* `"main": "./dist/javascript/nsi.cjs"` - CJS bundle, modern JavaScript, works with `require()`
28+
* `Matcher()` is a class now. Instantiate it like: `matcher = new Matcher();`
29+
* No longer distributing ES5 builds
30+
* ⚠️ name-suggestion-index is marked as `"type": "module"` now
31+
* ⚠️ Dropped support for old browsers like Internet Explorer on https://nsi.guide
32+
33+
34+
# 5.0.YYYYMMDD
35+
##### 2021-Mar-22
36+
* ⚠️ Significant refactor ([#4543], [#4964]):
37+
* Add support for multiple trees (brands, operators, flags, transit) ([#4231], [#4745])
38+
* Major changes to the name matching code, match generic patterns too ([#4924])
39+
* Change file format to store per-category exclude patterns ([#4906])
40+
* Add support for generated unique identifiers ([#3995])
41+
* Add support for template-generated categories ([#2883])
42+
43+
[#2883]: https://github.com/osmlab/name-suggestion-index/issues/2883
44+
[#3995]: https://github.com/osmlab/name-suggestion-index/issues/3995
45+
[#4231]: https://github.com/osmlab/name-suggestion-index/issues/4231
46+
[#4543]: https://github.com/osmlab/name-suggestion-index/issues/4543
47+
[#4745]: https://github.com/osmlab/name-suggestion-index/issues/4745
48+
[#4906]: https://github.com/osmlab/name-suggestion-index/issues/4906
49+
[#4924]: https://github.com/osmlab/name-suggestion-index/issues/4924
50+
[#4964]: https://github.com/osmlab/name-suggestion-index/issues/4964

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "name-suggestion-index",
3-
"version": "5.0.20210623",
3+
"version": "6.0.20210624",
44
"license": "BSD-3-Clause",
55
"repository": "github:osmlab/name-suggestion-index",
66
"contributors": [

0 commit comments

Comments
 (0)