public_suffix 5.0.4 → 6.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +42 -2
- data/LICENSE.txt +1 -1
- data/README.md +2 -4
- data/SECURITY.md +1 -2
- data/data/list.txt +930 -518
- data/lib/public_suffix/domain.rb +1 -1
- data/lib/public_suffix/errors.rb +1 -1
- data/lib/public_suffix/list.rb +1 -1
- data/lib/public_suffix/rule.rb +2 -2
- data/lib/public_suffix/version.rb +2 -2
- data/lib/public_suffix.rb +1 -1
- metadata +6 -7
- data/2.0-Upgrade.md +0 -52
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7daed8b8dcf4faa015547a85c042814a06b5cb35d1068fc49bc586d3950e6fd3
|
4
|
+
data.tar.gz: 5f82beeeff336ce23cf9128ca2c9c8280fb1b5334ab42ed8a76afcf462e2a39b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b95bac79951e4799cb8f9eb8c4132b304144b603e0313ad3ddb6d93000a1c463bc941ae3e6d5162193b9618ae95baa57a957b173fd32123ea8b08681d1cfa7d0
|
7
|
+
data.tar.gz: 12c02dbf3b9737da95b2338952a1f39a2f65b5249c536e59a0c0821c4be06aa7afd7c5c021de2e1fbb4388446ca9b2605f07e1b3536fadcd87aceb3d994d0510
|
data/CHANGELOG.md
CHANGED
@@ -2,25 +2,66 @@
|
|
2
2
|
|
3
3
|
This project uses [Semantic Versioning 2.0.0](https://semver.org/).
|
4
4
|
|
5
|
+
|
6
|
+
## 6.0.1
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
|
10
|
+
- Updated definitions.
|
11
|
+
|
12
|
+
|
13
|
+
## 6.0.0
|
14
|
+
|
15
|
+
Same as 5.1.0. Re-releasing as a major version change due to a major ruby version requirement change.
|
16
|
+
|
17
|
+
### Changed
|
18
|
+
|
19
|
+
- Updated definitions.
|
20
|
+
- Minimum Ruby version is 3.0
|
21
|
+
|
22
|
+
|
23
|
+
## 5.1.1
|
24
|
+
|
25
|
+
No significant changes. Releasing a mini version to address 5.1.0 release with major ruby requirement change (GH-315).
|
26
|
+
|
27
|
+
|
28
|
+
## 5.1.0
|
29
|
+
|
30
|
+
### Changed
|
31
|
+
|
32
|
+
- Updated definitions.
|
33
|
+
- Minimum Ruby version is 3.0
|
34
|
+
|
35
|
+
|
36
|
+
## 5.0.5
|
37
|
+
|
38
|
+
### Changed
|
39
|
+
|
40
|
+
- Updated definitions.
|
41
|
+
|
42
|
+
|
5
43
|
## 5.0.4
|
6
44
|
|
7
45
|
### Changed
|
8
46
|
|
9
|
-
- Reduced .gem file size (GH-
|
47
|
+
- Reduced .gem file size (GH-258). [Thanks @ybiquitous]
|
10
48
|
- Updated definitions.
|
11
49
|
|
50
|
+
|
12
51
|
## 5.0.3
|
13
52
|
|
14
53
|
### Fixed
|
15
54
|
|
16
55
|
- Fixed automated release workflow.
|
17
56
|
|
57
|
+
|
18
58
|
## 5.0.2
|
19
59
|
|
20
60
|
### Changed
|
21
61
|
|
22
62
|
- Updated definitions.
|
23
63
|
|
64
|
+
|
24
65
|
## 5.0.1
|
25
66
|
|
26
67
|
### Changed
|
@@ -33,7 +74,6 @@ This project uses [Semantic Versioning 2.0.0](https://semver.org/).
|
|
33
74
|
### Changed
|
34
75
|
|
35
76
|
- Minimum Ruby version is 2.6
|
36
|
-
|
37
77
|
- Updated definitions.
|
38
78
|
|
39
79
|
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
## Requirements
|
18
18
|
|
19
|
-
<tt>PublicSuffix</tt> requires **Ruby >=
|
19
|
+
<tt>PublicSuffix</tt> requires **Ruby >= 3.0**. For an older versions of Ruby use a previous release.
|
20
20
|
|
21
21
|
|
22
22
|
## Installation
|
@@ -33,8 +33,6 @@ Or use Bundler and define it as a dependency in your `Gemfile`:
|
|
33
33
|
gem 'public_suffix'
|
34
34
|
```
|
35
35
|
|
36
|
-
If you are upgrading to 2.0, see [2.0-Upgrade.md](2.0-Upgrade.md).
|
37
|
-
|
38
36
|
## Usage
|
39
37
|
|
40
38
|
Extract the domain out from a name:
|
@@ -209,7 +207,7 @@ See the [CHANGELOG.md](CHANGELOG.md) file for details.
|
|
209
207
|
|
210
208
|
## License
|
211
209
|
|
212
|
-
Copyright (c) 2009-
|
210
|
+
Copyright (c) 2009-2024 Simone Carletti. This is Free Software distributed under the MIT license.
|
213
211
|
|
214
212
|
The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
|
215
213
|
|
data/SECURITY.md
CHANGED
@@ -4,8 +4,7 @@
|
|
4
4
|
|
5
5
|
Security updates are provided only for the current minor version.
|
6
6
|
|
7
|
-
If you are using a previous minor version, we recommend to upgrade to the current minor version.
|
8
|
-
This project uses [semantic versioning](https://semver.org/), therefore you can upgrade to a more recent minor version without incurring into breaking changes.
|
7
|
+
If you are using a previous minor version, we recommend to upgrade to the current minor version. This project uses [semantic versioning](https://semver.org/), therefore you can upgrade to a more recent minor version without incurring into breaking changes.
|
9
8
|
|
10
9
|
Exceptionally, we may support previous minor versions upon request if there are significant reasons preventing to immediately switch the latest minor version.
|
11
10
|
|