UNPKG

4.46 kBMarkdownView Raw
1# Changelog
2
3All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
5### [2.1.8](https://github.com/peerigon/parse-domain/compare/v2.1.7...v2.1.8) (2019-05-27)
6
7
8### Bug Fixes
9
10* Add timeout to download public suffix list ([#56](https://github.com/peerigon/parse-domain/issues/56)) ([1fbd49c](https://github.com/peerigon/parse-domain/commit/1fbd49c))
11* Fix error where a lot of domains were not detected ([fc80789](https://github.com/peerigon/parse-domain/commit/fc80789)), closes [#64](https://github.com/peerigon/parse-domain/issues/64)
12* Fix sanity check during npm run build:tries ([a3c1eeb](https://github.com/peerigon/parse-domain/commit/a3c1eeb))
13* Fix thrown error with input that only contains whitespaces ([1d1a24a](https://github.com/peerigon/parse-domain/commit/1d1a24a)), closes [#32](https://github.com/peerigon/parse-domain/issues/32) [#61](https://github.com/peerigon/parse-domain/issues/61)
14
15
16
17<a name="2.1.7"></a>
18## [2.1.7](https://github.com/peerigon/parse-domain/compare/v2.1.6...v2.1.7) (2018-11-27)
19
20* Update dependencies [#57](https://github.com/peerigon/parse-domain/pull/57). Removes malicious code which has been introduced by event-stream ([more information](https://snyk.io/blog/malicious-code-found-in-npm-package-event-stream)).
21
22<a name="2.1.6"></a>
23## [2.1.6](https://github.com/peerigon/parse-domain/compare/v2.1.5...v2.1.6) (2018-10-19)
24
25
26### Bug Fixes
27
28* Broken published version ([f36d76e](https://github.com/peerigon/parse-domain/commit/f36d76e))
29
30
31
32<a name="2.1.5"></a>
33## [2.1.5](https://github.com/peerigon/parse-domain/compare/v2.1.4...v2.1.5) (2018-10-19)
34
35
36### Bug Fixes
37
38* Compatibility problems with older JavaScript engines ([#51](https://github.com/peerigon/parse-domain/issues/51)) ([d9d782b](https://github.com/peerigon/parse-domain/commit/d9d782b))
39
40
41
42<a name="2.1.4"></a>
43## [2.1.4](https://github.com/peerigon/parse-domain/compare/v2.1.3...v2.1.4) (2018-10-19)
44
45
46### Bug Fixes
47
48* Wrong entry in package.json files ([50fe635](https://github.com/peerigon/parse-domain/commit/50fe635))
49
50
51
52<a name="2.1.3"></a>
53## [2.1.3](https://github.com/peerigon/parse-domain/compare/v2.1.2...v2.1.3) (2018-10-19)
54
55
56### Bug Fixes
57
58* Do not write in the file system on postinstall if it's forbidden ([#39](https://github.com/peerigon/parse-domain/issues/39)) ([9aee180](https://github.com/peerigon/parse-domain/commit/9aee180))
59* Re-add missing prepare script after ([e5d6362](https://github.com/peerigon/parse-domain/commit/e5d6362))
60
61
62
63<a name="2.1.2"></a>
64## [2.1.2](https://github.com/peerigon/parse-domain/compare/v2.1.1...v2.1.2) (2018-06-13)
65
66
67### Bug Fixes
68
69* Add .babelrc for create-react-app apps ([#37](https://github.com/peerigon/parse-domain/issues/37)) ([d2d3728](https://github.com/peerigon/parse-domain/commit/d2d3728))
70
71
72
73<a name="2.1.1"></a>
74## [2.1.1](https://github.com/peerigon/parse-domain/compare/v2.1.0...v2.1.1) (2018-05-30)
75
76
77### Bug Fixes
78
79* Support url which has no protocol ([#28](https://github.com/peerigon/parse-domain/issues/28)) ([74dec41](https://github.com/peerigon/parse-domain/commit/74dec41))
80
81
82
83<a name="2.1.0"></a>
84# [2.1.0](https://github.com/peerigon/parse-domain/compare/v2.0.0...v2.1.0) (2018-05-30)
85
86
87### Features
88
89* Use trie data structure to decrease file size ([#33](https://github.com/peerigon/parse-domain/issues/33)) ([59f951b](https://github.com/peerigon/parse-domain/commit/59f951b))
90
91
92
93<a name="2.0.0"></a>
94# [2.0.0](https://github.com/peerigon/parse-domain/compare/v1.2.0...v2.0.0) (2017-12-03)
95
96
97### Code Refactoring
98
99* Update code to node 4 ([4d87f43](https://github.com/peerigon/parse-domain/commit/4d87f43))
100
101
102### Features
103
104* Update list of TLDs ([df15b19](https://github.com/peerigon/parse-domain/commit/df15b19))
105
106
107### BREAKING CHANGES
108
109* node 4 or newer is required
110
111
112
113<a name="1.2.0"></a>
114# [1.2.0](https://github.com/peerigon/parse-domain/compare/v1.1.0...v1.2.0) (2017-12-03)
115
116
117
118Changelog
119---------
120
121### 1.1.0
122- Fix parsing of URLs that have an @ character in the path [#13](https://github.com/peerigon/parse-domain/issues/13)
123- Update tlds a27a2c83102c563978b831bd161f1fb5409376bd
124
125### 1.0.0
126- Removed private tlds from the default regexp [#4](https://github.com/peerigon/parse-domain/issues/4) [#6](https://github.com/peerigon/parse-domain/issues/6)
127- Introduced `privateTlds` boolean flag to include private tlds
128- Reached stable state :)