public_suffix 5.0.5 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/README.md +1 -3
- data/SECURITY.md +1 -2
- data/data/list.txt +594 -403
- data/lib/public_suffix/rule.rb +1 -1
- data/lib/public_suffix/version.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: 327877edc15d2e701fe28dde5ebee9822842233c92796337604bf4b27db58c4a
|
4
|
+
data.tar.gz: c209561b2462cdee41e5752592781ee9ac598d314c0cf2743a32e904e6b1243b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0fc0513322551207e40fb215cf9b23470cf4c543d327ed66f87d0e05975c19eac11565102a80a1ec3bc97faa5dbdfc16d453b8172e994b31b8c8070de15a31a3
|
7
|
+
data.tar.gz: dea7ecb1c8486167400761171c38d521b2b29e36a11ae61180a888159381f725548bef7f1c61101fdf018f8faab5ac1366afb1e1b2627f90143b8d906bb7d906
|
data/CHANGELOG.md
CHANGED
@@ -2,12 +2,22 @@
|
|
2
2
|
|
3
3
|
This project uses [Semantic Versioning 2.0.0](https://semver.org/).
|
4
4
|
|
5
|
+
|
6
|
+
## 5.1.0
|
7
|
+
|
8
|
+
### Changed
|
9
|
+
|
10
|
+
- Updated definitions.
|
11
|
+
- Minimum Ruby version is 3.0
|
12
|
+
|
13
|
+
|
5
14
|
## 5.0.5
|
6
15
|
|
7
16
|
### Changed
|
8
17
|
|
9
18
|
- Updated definitions.
|
10
19
|
|
20
|
+
|
11
21
|
## 5.0.4
|
12
22
|
|
13
23
|
### Changed
|
@@ -15,18 +25,21 @@ This project uses [Semantic Versioning 2.0.0](https://semver.org/).
|
|
15
25
|
- Reduced .gem file size (GH-258). [Thanks @ybiquitous]
|
16
26
|
- Updated definitions.
|
17
27
|
|
28
|
+
|
18
29
|
## 5.0.3
|
19
30
|
|
20
31
|
### Fixed
|
21
32
|
|
22
33
|
- Fixed automated release workflow.
|
23
34
|
|
35
|
+
|
24
36
|
## 5.0.2
|
25
37
|
|
26
38
|
### Changed
|
27
39
|
|
28
40
|
- Updated definitions.
|
29
41
|
|
42
|
+
|
30
43
|
## 5.0.1
|
31
44
|
|
32
45
|
### Changed
|
@@ -39,7 +52,6 @@ This project uses [Semantic Versioning 2.0.0](https://semver.org/).
|
|
39
52
|
### Changed
|
40
53
|
|
41
54
|
- Minimum Ruby version is 2.6
|
42
|
-
|
43
55
|
- Updated definitions.
|
44
56
|
|
45
57
|
|
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:
|
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
|
|