public_suffix 7.0.0 → 7.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AGENTS.md +38 -0
- data/CHANGELOG.md +300 -185
- data/CLAUDE.md +1 -0
- data/CONTRIBUTING.md +129 -0
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/RELEASING.md +5 -4
- data/data/list.txt +126 -39
- 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 +1 -1
- data/lib/public_suffix/version.rb +2 -2
- data/lib/public_suffix.rb +1 -1
- metadata +6 -3
data/CLAUDE.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
AGENTS.md
|
data/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
# Contributing to PublicSuffix for Ruby
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to PublicSuffix for Ruby!
|
|
4
|
+
|
|
5
|
+
## Development Workflow
|
|
6
|
+
|
|
7
|
+
1. Fork and clone the repository
|
|
8
|
+
2. Install dependencies: `bundle install`
|
|
9
|
+
3. Create a branch: `git checkout -b feature/your-feature`
|
|
10
|
+
4. Make your changes
|
|
11
|
+
5. Run tests: `rake test`
|
|
12
|
+
6. Commit using Conventional Commits format (see below)
|
|
13
|
+
7. Push and create a pull request
|
|
14
|
+
|
|
15
|
+
## Commit Message Guidelines
|
|
16
|
+
|
|
17
|
+
We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for commit messages.
|
|
18
|
+
|
|
19
|
+
We follow the [Common Changelog](https://common-changelog.org/) format for changelog entries.
|
|
20
|
+
|
|
21
|
+
### Format
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
<type>(<scope>): <subject>
|
|
25
|
+
|
|
26
|
+
<body>
|
|
27
|
+
|
|
28
|
+
<footer>
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Use lowercase for `<type>`. Capitalize the first letter of `<subject>` (sentence-style). See examples below.
|
|
32
|
+
|
|
33
|
+
### Type
|
|
34
|
+
|
|
35
|
+
- **feat**: A new feature
|
|
36
|
+
- **fix**: A bug fix
|
|
37
|
+
- **chore**: Other changes that don't modify src or test files
|
|
38
|
+
- **docs**: Documentation only changes
|
|
39
|
+
- **style**: Code style changes (formatting, etc.)
|
|
40
|
+
- **refactor**: Code change that neither fixes a bug nor adds a feature
|
|
41
|
+
- **perf**: Performance improvement
|
|
42
|
+
- **test**: Adding or updating tests
|
|
43
|
+
- **build**: Changes to build system or external dependencies
|
|
44
|
+
- **ci**: Changes to CI configuration files and scripts
|
|
45
|
+
|
|
46
|
+
### Scope
|
|
47
|
+
|
|
48
|
+
- **parser**: List parsing and rule handling
|
|
49
|
+
- **domain**: Domain parsing and validation
|
|
50
|
+
- **list**: List management and operations
|
|
51
|
+
- **rule**: Rule definitions and matching
|
|
52
|
+
|
|
53
|
+
### Examples
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
feat(parser): Add support for wildcard exceptions
|
|
57
|
+
|
|
58
|
+
fix(domain): Handle FQDN trailing dots correctly
|
|
59
|
+
|
|
60
|
+
docs: Update usage examples in README
|
|
61
|
+
|
|
62
|
+
refactor(list): Simplify rule lookup logic
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
### Breaking Changes
|
|
66
|
+
|
|
67
|
+
Add `BREAKING CHANGE:` in the footer:
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
feat(domain): Change parse return type
|
|
71
|
+
|
|
72
|
+
BREAKING CHANGE: Domain#parse now returns nil for invalid domains instead of raising.
|
|
73
|
+
Update code to check for nil returns.
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Testing
|
|
77
|
+
|
|
78
|
+
### Running Tests
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
rake test # Run all tests
|
|
82
|
+
rake test TEST=test/domain_test.rb # Run specific test file
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Writing Tests
|
|
86
|
+
|
|
87
|
+
- Tests use Minitest framework
|
|
88
|
+
- Place tests in `test/` directory
|
|
89
|
+
- Use descriptive test names
|
|
90
|
+
- Test both happy paths and error cases
|
|
91
|
+
- Include tests for edge cases (empty strings, unicode, etc.)
|
|
92
|
+
|
|
93
|
+
## Pull Request Process
|
|
94
|
+
|
|
95
|
+
1. Update documentation for API changes
|
|
96
|
+
2. Add tests for new features or bug fixes
|
|
97
|
+
3. Ensure all tests pass: `rake test`
|
|
98
|
+
4. Use Conventional Commits format
|
|
99
|
+
5. Provide clear PR description with context
|
|
100
|
+
6. Reference related issues if applicable
|
|
101
|
+
|
|
102
|
+
## Code Style
|
|
103
|
+
|
|
104
|
+
- Follow [Ruby Style Guide](https://rubystyle.guide/)
|
|
105
|
+
- Use RuboCop configuration if present
|
|
106
|
+
- Add YARD documentation for public methods
|
|
107
|
+
- Keep methods focused and small
|
|
108
|
+
|
|
109
|
+
### Ruby-Specific Guidelines
|
|
110
|
+
|
|
111
|
+
- Follow idiomatic Ruby patterns
|
|
112
|
+
- Use meaningful variable and method names
|
|
113
|
+
- Prefer `raise` over `fail`
|
|
114
|
+
- Use blocks and iterators effectively
|
|
115
|
+
- Follow the principle of least surprise
|
|
116
|
+
- Prefer methods that return values over side effects
|
|
117
|
+
|
|
118
|
+
### Documentation
|
|
119
|
+
|
|
120
|
+
- Add YARD comments for public methods
|
|
121
|
+
- Include usage examples in documentation
|
|
122
|
+
- Update README.md for user-facing changes
|
|
123
|
+
- Keep inline comments minimal - prefer self-documenting code
|
|
124
|
+
|
|
125
|
+
## Questions?
|
|
126
|
+
|
|
127
|
+
Open an issue for questions, feature discussions, or bug reports.
|
|
128
|
+
|
|
129
|
+
Thank you for contributing!
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -226,6 +226,6 @@ See [CHANGELOG.md](CHANGELOG.md) for details.
|
|
|
226
226
|
|
|
227
227
|
## License
|
|
228
228
|
|
|
229
|
-
Copyright (c) 2009-
|
|
229
|
+
Copyright (c) 2009-2026 Simone Carletti. [MIT License](LICENSE.txt).
|
|
230
230
|
|
|
231
231
|
The [Public Suffix List source](https://publicsuffix.org/list/) is subject to the terms of the Mozilla Public License, v. 2.0.
|
data/RELEASING.md
CHANGED
|
@@ -31,10 +31,12 @@ This document describes the steps to release a new version of PublicSuffix.
|
|
|
31
31
|
|
|
32
32
|
3. **Update the changelog** with the new version
|
|
33
33
|
|
|
34
|
-
Edit `CHANGELOG.md` and add a new section for the release:
|
|
34
|
+
Edit `CHANGELOG.md` and add a new section for the release following the [Common Changelog](https://common-changelog.org/) format (see [CONTRIBUTING.md](CONTRIBUTING.md) for details):
|
|
35
35
|
|
|
36
36
|
```markdown
|
|
37
|
-
##
|
|
37
|
+
## X.Y.Z - YYYY-MM-DD
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
38
40
|
|
|
39
41
|
- Description of changes
|
|
40
42
|
```
|
|
@@ -60,8 +62,7 @@ This document describes the steps to release a new version of PublicSuffix.
|
|
|
60
62
|
6. **Commit the new version**
|
|
61
63
|
|
|
62
64
|
```shell
|
|
63
|
-
git
|
|
64
|
-
git commit -m "Release $VERSION"
|
|
65
|
+
git commit -am "Release $VERSION"
|
|
65
66
|
```
|
|
66
67
|
|
|
67
68
|
7. **Create a signed tag**
|
data/data/list.txt
CHANGED
|
@@ -1298,6 +1298,12 @@ gov.gy
|
|
|
1298
1298
|
net.gy
|
|
1299
1299
|
org.gy
|
|
1300
1300
|
|
|
1301
|
+
// Hercules : https://hercules.app
|
|
1302
|
+
// Submitted by Brendan Falk <security@hercules.app>
|
|
1303
|
+
onhercules.app
|
|
1304
|
+
hercules-app.com
|
|
1305
|
+
hercules-dev.com
|
|
1306
|
+
|
|
1301
1307
|
// hk : https://www.hkirc.hk
|
|
1302
1308
|
// Submitted by registry <hk.tech@hkirc.hk>
|
|
1303
1309
|
hk
|
|
@@ -1412,6 +1418,8 @@ or.id
|
|
|
1412
1418
|
ponpes.id
|
|
1413
1419
|
sch.id
|
|
1414
1420
|
web.id
|
|
1421
|
+
// xn--9tfky.id (<bali>.id, Und-Bali)
|
|
1422
|
+
ᬩᬮᬶ.id
|
|
1415
1423
|
|
|
1416
1424
|
// ie : https://www.iana.org/domains/root/db/ie.html
|
|
1417
1425
|
ie
|
|
@@ -5662,7 +5670,9 @@ si
|
|
|
5662
5670
|
sj
|
|
5663
5671
|
|
|
5664
5672
|
// sk : https://www.iana.org/domains/root/db/sk.html
|
|
5673
|
+
// https://sk-nic.sk/
|
|
5665
5674
|
sk
|
|
5675
|
+
org.sk
|
|
5666
5676
|
|
|
5667
5677
|
// sl : http://www.nic.sl
|
|
5668
5678
|
// Submitted by registry <adam@neoip.com>
|
|
@@ -6811,7 +6821,7 @@ org.zw
|
|
|
6811
6821
|
|
|
6812
6822
|
// newGTLDs
|
|
6813
6823
|
|
|
6814
|
-
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-
|
|
6824
|
+
// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2025-12-06T15:17:27Z
|
|
6815
6825
|
// This list is auto-generated, don't edit it manually.
|
|
6816
6826
|
// aaa : American Automobile Association, Inc.
|
|
6817
6827
|
// https://www.iana.org/domains/root/db/aaa.html
|
|
@@ -10189,7 +10199,7 @@ solutions
|
|
|
10189
10199
|
// https://www.iana.org/domains/root/db/song.html
|
|
10190
10200
|
song
|
|
10191
10201
|
|
|
10192
|
-
// sony : Sony Corporation
|
|
10202
|
+
// sony : Sony Group Corporation
|
|
10193
10203
|
// https://www.iana.org/domains/root/db/sony.html
|
|
10194
10204
|
sony
|
|
10195
10205
|
|
|
@@ -11327,6 +11337,10 @@ adobeioruntime.net
|
|
|
11327
11337
|
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
|
11328
11338
|
africa.com
|
|
11329
11339
|
|
|
11340
|
+
// AgentbaseAI Inc. : https://assistant-ui.com
|
|
11341
|
+
// Submitted by Simon Farshid <security@assistant-ui.com>
|
|
11342
|
+
*.auiusercontent.com
|
|
11343
|
+
|
|
11330
11344
|
// Agnat sp. z o.o. : https://domena.pl
|
|
11331
11345
|
// Submitted by Przemyslaw Plewa <it-admin@domena.pl>
|
|
11332
11346
|
beep.pl
|
|
@@ -12326,6 +12340,10 @@ eero-stage.online
|
|
|
12326
12340
|
|
|
12327
12341
|
// concludes Amazon
|
|
12328
12342
|
|
|
12343
|
+
// Antagonist B.V. : https://www.antagonist.nl/
|
|
12344
|
+
// Submitted by Sander Hoentjen <systeembeheer@antagonist.nl>
|
|
12345
|
+
antagonist.cloud
|
|
12346
|
+
|
|
12329
12347
|
// Apigee : https://apigee.com/
|
|
12330
12348
|
// Submitted by Apigee Security Team <security@apigee.com>
|
|
12331
12349
|
apigee.io
|
|
@@ -12338,6 +12356,24 @@ panel.dev
|
|
|
12338
12356
|
// Submitted by Alexander Selivanov <alex@apphud.com>
|
|
12339
12357
|
siiites.com
|
|
12340
12358
|
|
|
12359
|
+
// Apple : https://www.apple.com
|
|
12360
|
+
// Submitted by Apple DNS <dnscontact@apple.com>
|
|
12361
|
+
int.apple
|
|
12362
|
+
*.cloud.int.apple
|
|
12363
|
+
*.r.cloud.int.apple
|
|
12364
|
+
*.ap-north-1.r.cloud.int.apple
|
|
12365
|
+
*.ap-south-1.r.cloud.int.apple
|
|
12366
|
+
*.ap-south-2.r.cloud.int.apple
|
|
12367
|
+
*.eu-central-1.r.cloud.int.apple
|
|
12368
|
+
*.eu-north-1.r.cloud.int.apple
|
|
12369
|
+
*.us-central-1.r.cloud.int.apple
|
|
12370
|
+
*.us-central-2.r.cloud.int.apple
|
|
12371
|
+
*.us-east-1.r.cloud.int.apple
|
|
12372
|
+
*.us-east-2.r.cloud.int.apple
|
|
12373
|
+
*.us-west-1.r.cloud.int.apple
|
|
12374
|
+
*.us-west-2.r.cloud.int.apple
|
|
12375
|
+
*.us-west-3.r.cloud.int.apple
|
|
12376
|
+
|
|
12341
12377
|
// Appspace : https://www.appspace.com
|
|
12342
12378
|
// Submitted by Appspace Security Team <security@appspace.com>
|
|
12343
12379
|
appspacehosted.com
|
|
@@ -12350,6 +12386,7 @@ appudo.net
|
|
|
12350
12386
|
// Appwrite : https://appwrite.io
|
|
12351
12387
|
// Submitted by Steven Nguyen <security@appwrite.io>
|
|
12352
12388
|
appwrite.global
|
|
12389
|
+
appwrite.network
|
|
12353
12390
|
*.appwrite.run
|
|
12354
12391
|
|
|
12355
12392
|
// Aptible : https://www.aptible.com/
|
|
@@ -12497,6 +12534,8 @@ square7.net
|
|
|
12497
12534
|
// Submitted by Andrea Brancaleoni <abrancaleoni@brave.com>
|
|
12498
12535
|
brave.app
|
|
12499
12536
|
*.s.brave.app
|
|
12537
|
+
brave.dev
|
|
12538
|
+
*.s.brave.dev
|
|
12500
12539
|
brave.io
|
|
12501
12540
|
*.s.brave.io
|
|
12502
12541
|
|
|
@@ -12725,8 +12764,9 @@ co.no
|
|
|
12725
12764
|
*.devinapps.com
|
|
12726
12765
|
|
|
12727
12766
|
// Combell.com : https://www.combell.com
|
|
12728
|
-
// Submitted by
|
|
12767
|
+
// Submitted by Combell Team <support@combell.com>
|
|
12729
12768
|
webhosting.be
|
|
12769
|
+
prvw.eu
|
|
12730
12770
|
hosting-cluster.nl
|
|
12731
12771
|
|
|
12732
12772
|
// Contentful GmbH : https://www.contentful.com
|
|
@@ -12904,8 +12944,11 @@ discordsez.com
|
|
|
12904
12944
|
// Submitted by Calvin Browne <calvin@dns.business>
|
|
12905
12945
|
jozi.biz
|
|
12906
12946
|
|
|
12907
|
-
// DNSHE : https://
|
|
12947
|
+
// DNSHE : https://www.dnshe.com
|
|
12908
12948
|
// Submitted by DNSHE Team <support@dnshe.com>
|
|
12949
|
+
ccwu.cc
|
|
12950
|
+
cc.cd
|
|
12951
|
+
us.ci
|
|
12909
12952
|
de5.net
|
|
12910
12953
|
|
|
12911
12954
|
// DNShome : https://www.dnshome.de/
|
|
@@ -12917,6 +12960,12 @@ dnshome.de
|
|
|
12917
12960
|
online.th
|
|
12918
12961
|
shop.th
|
|
12919
12962
|
|
|
12963
|
+
// dotScot Domains : https://domains.scot/
|
|
12964
|
+
// Submitted by DNS Team <dns@domains.scot>
|
|
12965
|
+
co.scot
|
|
12966
|
+
me.scot
|
|
12967
|
+
org.scot
|
|
12968
|
+
|
|
12920
12969
|
// DrayTek Corp. : https://www.draytek.com/
|
|
12921
12970
|
// Submitted by Paul Fang <mis@draytek.com>
|
|
12922
12971
|
drayddns.com
|
|
@@ -13283,12 +13332,9 @@ elementor.cool
|
|
|
13283
13332
|
// Emergent : https://emergent.sh
|
|
13284
13333
|
// Submitted by Emergent Security Team <security@emergent.sh>
|
|
13285
13334
|
emergent.cloud
|
|
13335
|
+
preview.emergentagent.com
|
|
13286
13336
|
emergent.host
|
|
13287
13337
|
|
|
13288
|
-
// En root‽ : https://en-root.org
|
|
13289
|
-
// Submitted by Emmanuel Raviart <emmanuel@raviart.com>
|
|
13290
|
-
en-root.fr
|
|
13291
|
-
|
|
13292
13338
|
// Enalean SAS : https://www.enalean.com
|
|
13293
13339
|
// Submitted by Enalean Security Team <security@enalean.com>
|
|
13294
13340
|
mytuleap.com
|
|
@@ -13549,15 +13595,9 @@ on-fleek.app
|
|
|
13549
13595
|
flutterflow.app
|
|
13550
13596
|
|
|
13551
13597
|
// fly.io : https://fly.io
|
|
13552
|
-
// Submitted by Kurt Mackey <
|
|
13598
|
+
// Submitted by Kurt Mackey <ops@fly.io>
|
|
13599
|
+
sprites.app
|
|
13553
13600
|
fly.dev
|
|
13554
|
-
shw.io
|
|
13555
|
-
edgeapp.net
|
|
13556
|
-
|
|
13557
|
-
// Forgerock : https://www.forgerock.com
|
|
13558
|
-
// Submitted by Roderick Parr <roderick.parr@forgerock.com>
|
|
13559
|
-
forgeblocks.com
|
|
13560
|
-
id.forgerock.io
|
|
13561
13601
|
|
|
13562
13602
|
// FoundryLabs, Inc : https://e2b.dev/
|
|
13563
13603
|
// Submitted by Jiri Sveceny <security@e2b.dev>
|
|
@@ -13631,6 +13671,11 @@ futuremailing.at
|
|
|
13631
13671
|
*.kunden.ortsinfo.at
|
|
13632
13672
|
*.statics.cloud
|
|
13633
13673
|
|
|
13674
|
+
// Gadget Software Inc. : https://gadget.dev
|
|
13675
|
+
// Submitted by Harry Brundage <security@gadget.dev>
|
|
13676
|
+
gadget.app
|
|
13677
|
+
gadget.host
|
|
13678
|
+
|
|
13634
13679
|
// GCom Internet : https://www.gcom.net.au
|
|
13635
13680
|
// Submitted by Leo Julius <support@gcom.net.au>
|
|
13636
13681
|
aliases121.com
|
|
@@ -13856,11 +13901,19 @@ grafana-dev.net
|
|
|
13856
13901
|
// Submitted by Matt Yamkowy <info@grayjaysports.ca>
|
|
13857
13902
|
grayjayleagues.com
|
|
13858
13903
|
|
|
13904
|
+
// Grebedoc : https://grebedoc.dev
|
|
13905
|
+
// Submitted by Catherine Zotova <admin@grebedoc.dev>
|
|
13906
|
+
grebedoc.dev
|
|
13907
|
+
|
|
13859
13908
|
// GünstigBestellen : https://günstigbestellen.de
|
|
13860
13909
|
// Submitted by Furkan Akkoc <info@hendelzon.de>
|
|
13861
13910
|
günstigbestellen.de
|
|
13862
13911
|
günstigliefern.de
|
|
13863
13912
|
|
|
13913
|
+
// GV.UY : https://nic.gv.uy
|
|
13914
|
+
// Submitted by cheng <admin@mailto.al>
|
|
13915
|
+
gv.uy
|
|
13916
|
+
|
|
13864
13917
|
// Hackclub Nest : https://hackclub.app
|
|
13865
13918
|
// Submitted by Cyteon <admins@hackclub.app>
|
|
13866
13919
|
hackclub.app
|
|
@@ -13993,6 +14046,10 @@ iki.fi
|
|
|
13993
14046
|
ibxos.it
|
|
13994
14047
|
iliadboxos.it
|
|
13995
14048
|
|
|
14049
|
+
// Imagine : https://imagine.dev
|
|
14050
|
+
// Submitted by Steven Nguyen <security@imagine.dev>
|
|
14051
|
+
imagine-proxy.work
|
|
14052
|
+
|
|
13996
14053
|
// Incsub, LLC : https://incsub.com/
|
|
13997
14054
|
// Submitted by Aaron Edwards <sysadmins@incsub.com>
|
|
13998
14055
|
smushcdn.com
|
|
@@ -14001,6 +14058,10 @@ wpmucdn.com
|
|
|
14001
14058
|
tempurl.host
|
|
14002
14059
|
wpmudev.host
|
|
14003
14060
|
|
|
14061
|
+
// Indevs : https://indevs.in
|
|
14062
|
+
// Submitted by Sudheer Bhuvana <security@admin.indevs.in>
|
|
14063
|
+
indevs.in
|
|
14064
|
+
|
|
14004
14065
|
// Individual Network Berlin e.V. : https://www.in-berlin.de/
|
|
14005
14066
|
// Submitted by Christian Seitz <chris@in-berlin.de>
|
|
14006
14067
|
dyn-berlin.de
|
|
@@ -14237,6 +14298,10 @@ kapsi.fi
|
|
|
14237
14298
|
ezproxy.kuleuven.be
|
|
14238
14299
|
kuleuven.cloud
|
|
14239
14300
|
|
|
14301
|
+
// Kevin Service : https://kevsrv.me
|
|
14302
|
+
// Submitted by Kevin Service Team <cs@kevsrv.me>
|
|
14303
|
+
ae.kg
|
|
14304
|
+
|
|
14240
14305
|
// Keyweb AG : https://www.keyweb.de
|
|
14241
14306
|
// Submitted by Martin Dannehl <postmaster@keymachine.de>
|
|
14242
14307
|
keymachine.de
|
|
@@ -14434,6 +14499,11 @@ luyani.net
|
|
|
14434
14499
|
// Submitted by Damien Tournoud <dtournoud@magento.cloud>
|
|
14435
14500
|
*.magentosite.cloud
|
|
14436
14501
|
|
|
14502
|
+
// Magic Patterns : https://www.magicpatterns.com
|
|
14503
|
+
// Submitted by Teddy Ni <security@magicpatterns.com>
|
|
14504
|
+
magicpatterns.app
|
|
14505
|
+
magicpatternsapp.com
|
|
14506
|
+
|
|
14437
14507
|
// Mail.Ru Group : https://hb.cldmail.ru
|
|
14438
14508
|
// Submitted by Ilya Zaretskiy <zaretskiy@corp.mail.ru>
|
|
14439
14509
|
hb.cldmail.ru
|
|
@@ -14528,8 +14598,12 @@ westus2.azurestaticapps.net
|
|
|
14528
14598
|
azurewebsites.net
|
|
14529
14599
|
cloudapp.net
|
|
14530
14600
|
trafficmanager.net
|
|
14601
|
+
servicebus.usgovcloudapi.net
|
|
14602
|
+
usgovcloudapp.net
|
|
14531
14603
|
blob.core.windows.net
|
|
14532
14604
|
servicebus.windows.net
|
|
14605
|
+
azure-api.us
|
|
14606
|
+
azurewebsites.us
|
|
14533
14607
|
|
|
14534
14608
|
// MikroTik : https://mikrotik.com
|
|
14535
14609
|
// Submitted by MikroTik SysAdmin Team <support@mikrotik.com>
|
|
@@ -14795,18 +14869,10 @@ freeddns.us
|
|
|
14795
14869
|
nsupdate.info
|
|
14796
14870
|
nerdpol.ovh
|
|
14797
14871
|
|
|
14798
|
-
// NYC.mn : https://dot.nyc.mn/
|
|
14799
|
-
// Submitted by NYC.mn Subdomain Service <nyc.mn@mailfence.com>
|
|
14800
|
-
nyc.mn
|
|
14801
|
-
|
|
14802
14872
|
// O3O.Foundation : https://o3o.foundation/
|
|
14803
14873
|
// Submitted by the prvcy.page Registry Team <info@o3o.foundation>
|
|
14804
14874
|
prvcy.page
|
|
14805
14875
|
|
|
14806
|
-
// Obl.ong : https://obl.ong
|
|
14807
|
-
// Submitted by Reese Armstrong <team@obl.ong>
|
|
14808
|
-
obl.ong
|
|
14809
|
-
|
|
14810
14876
|
// Observable, Inc. : https://observablehq.com
|
|
14811
14877
|
// Submitted by Mike Bostock <dns@observablehq.com>
|
|
14812
14878
|
observablehq.cloud
|
|
@@ -14963,10 +15029,6 @@ srv.us
|
|
|
14963
15029
|
gh.srv.us
|
|
14964
15030
|
gl.srv.us
|
|
14965
15031
|
|
|
14966
|
-
// PE Ulyanov Kirill Sergeevich : https://airy.host
|
|
14967
|
-
// Submitted by Kirill Ulyanov <k.ulyanov@airy.host>
|
|
14968
|
-
lk3.ru
|
|
14969
|
-
|
|
14970
15032
|
// Peplink | Pepwave : http://peplink.com/
|
|
14971
15033
|
// Submitted by Steve Leung <steveleung@peplink.com>
|
|
14972
15034
|
mypep.link
|
|
@@ -14975,6 +15037,11 @@ mypep.link
|
|
|
14975
15037
|
// Submitted by Kenneth Van Alstyne <kvanalstyne@perspecta.com>
|
|
14976
15038
|
perspecta.cloud
|
|
14977
15039
|
|
|
15040
|
+
// Ping Identity : https://www.pingidentity.com
|
|
15041
|
+
// Submitted by Ping Identity <security@pingidentity.com>
|
|
15042
|
+
forgeblocks.com
|
|
15043
|
+
id.forgerock.io
|
|
15044
|
+
|
|
14978
15045
|
// Plain : https://www.plain.com/
|
|
14979
15046
|
// Submitted by Jesús Hernández <security@plain.com>
|
|
14980
15047
|
support.site
|
|
@@ -14993,11 +15060,6 @@ us.platform.sh
|
|
|
14993
15060
|
*.platformsh.site
|
|
14994
15061
|
*.tst.site
|
|
14995
15062
|
|
|
14996
|
-
// Platter : https://platter.dev
|
|
14997
|
-
// Submitted by Patrick Flor <patrick@platter.dev>
|
|
14998
|
-
platter-app.dev
|
|
14999
|
-
platterp.us
|
|
15000
|
-
|
|
15001
15063
|
// Pley AB : https://www.pley.com/
|
|
15002
15064
|
// Submitted by Henning Pohl <infra@pley.com>
|
|
15003
15065
|
pley.games
|
|
@@ -15045,6 +15107,10 @@ dev.project-study.com
|
|
|
15045
15107
|
// Submitted by Martin Meier <admin@protonet.io>
|
|
15046
15108
|
protonet.io
|
|
15047
15109
|
|
|
15110
|
+
// PSL Sandbox : https://github.com/groundcat/PSL-Sandbox
|
|
15111
|
+
// Submitted by groundcat <psl-sandbox@alumni.upenn.edu>
|
|
15112
|
+
platter-app.dev
|
|
15113
|
+
|
|
15048
15114
|
// PT Ekossistim Indo Digital : https://e.id
|
|
15049
15115
|
// Submitted by Eid Team <support@corp.e.id>
|
|
15050
15116
|
e.id
|
|
@@ -15054,6 +15120,11 @@ e.id
|
|
|
15054
15120
|
chirurgiens-dentistes-en-france.fr
|
|
15055
15121
|
byen.site
|
|
15056
15122
|
|
|
15123
|
+
// PublicZone : https://publiczone.org/
|
|
15124
|
+
// Submitted by PublicZone NOC Team <noc@publiczone.org>
|
|
15125
|
+
nyc.mn
|
|
15126
|
+
*.cn.st
|
|
15127
|
+
|
|
15057
15128
|
// pubtls.org : https://www.pubtls.org
|
|
15058
15129
|
// Submitted by Kor Nielsen <kor@pubtls.org>
|
|
15059
15130
|
pubtls.org
|
|
@@ -15159,6 +15230,11 @@ rhcloud.com
|
|
|
15159
15230
|
// Submitted by Andrew Farries <andrew.farries@red-gate.com>
|
|
15160
15231
|
instances.spawn.cc
|
|
15161
15232
|
|
|
15233
|
+
// Redpanda Data : https://redpanda.com
|
|
15234
|
+
// Submitted by Infrastructure Team <security@redpanda.com>
|
|
15235
|
+
*.clusters.rdpa.co
|
|
15236
|
+
*.srvrless.rdpa.co
|
|
15237
|
+
|
|
15162
15238
|
// Render : https://render.com
|
|
15163
15239
|
// Submitted by Anurag Goel <dev@render.com>
|
|
15164
15240
|
onrender.com
|
|
@@ -15332,6 +15408,10 @@ sakura.tv
|
|
|
15332
15408
|
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
|
15333
15409
|
sandcats.io
|
|
15334
15410
|
|
|
15411
|
+
// Sav.com, LLC : https://marketing.sav.com/
|
|
15412
|
+
// Submitted by Mukul Kudegave <mukul@sav.com>
|
|
15413
|
+
sav.case
|
|
15414
|
+
|
|
15335
15415
|
// SBE network solutions GmbH : https://www.sbe.de/
|
|
15336
15416
|
// Submitted by Norman Meilick <nm@sbe.de>
|
|
15337
15417
|
logoip.com
|
|
@@ -15625,10 +15705,6 @@ ipfs.w3s.link
|
|
|
15625
15705
|
// Submitted by Tony Schirmer <tony@storebase.io>
|
|
15626
15706
|
storebase.store
|
|
15627
15707
|
|
|
15628
|
-
// Storipress : https://storipress.com
|
|
15629
|
-
// Submitted by Benno Liu <benno@storipress.com>
|
|
15630
|
-
storipress.app
|
|
15631
|
-
|
|
15632
15708
|
// Storj Labs Inc. : https://storj.io/
|
|
15633
15709
|
// Submitted by Philip Hutchins <hostmaster@storj.io>
|
|
15634
15710
|
storj.farm
|
|
@@ -15740,6 +15816,14 @@ tche.br
|
|
|
15740
15816
|
site.tb-hosting.com
|
|
15741
15817
|
directwp.eu
|
|
15742
15818
|
|
|
15819
|
+
// TechEdge Limited: https://www.nic.uk.cc/
|
|
15820
|
+
// Submitted by TechEdge Developer <support@nic.uk.cc>
|
|
15821
|
+
ec.cc
|
|
15822
|
+
eu.cc
|
|
15823
|
+
gu.cc
|
|
15824
|
+
uk.cc
|
|
15825
|
+
us.cc
|
|
15826
|
+
|
|
15743
15827
|
// Teckids e.V. : https://www.teckids.org
|
|
15744
15828
|
// Submitted by Dominik George <dominik.george@teckids.org>
|
|
15745
15829
|
edugit.io
|
|
@@ -16013,8 +16097,6 @@ wmflabs.org
|
|
|
16013
16097
|
|
|
16014
16098
|
// William Harrison : https://wharrison.com.au
|
|
16015
16099
|
// Submitted by William Harrison <security@hrsn.net>
|
|
16016
|
-
wdh.app
|
|
16017
|
-
hrsn.au
|
|
16018
16100
|
vps.hrsn.au
|
|
16019
16101
|
hrsn.dev
|
|
16020
16102
|
is-a.dev
|
|
@@ -16080,6 +16162,10 @@ cistron.nl
|
|
|
16080
16162
|
demon.nl
|
|
16081
16163
|
xs4all.space
|
|
16082
16164
|
|
|
16165
|
+
// xTool : https://xtool.com
|
|
16166
|
+
// Submitted by Echo <admin@xtool.com>
|
|
16167
|
+
xtooldevice.com
|
|
16168
|
+
|
|
16083
16169
|
// Yandex.Cloud LLC : https://cloud.yandex.com
|
|
16084
16170
|
// Submitted by Alexander Lodin <security+psl@yandex-team.ru>
|
|
16085
16171
|
yandexcloud.net
|
|
@@ -16131,6 +16217,7 @@ enterprisecloud.nu
|
|
|
16131
16217
|
// Zone.ID: https://zone.id
|
|
16132
16218
|
// Submitted by Gx1.org <security@gx1.org>
|
|
16133
16219
|
zone.id
|
|
16220
|
+
nett.to
|
|
16134
16221
|
|
|
16135
16222
|
// ZoneABC : https://zoneabc.net
|
|
16136
16223
|
// Submitted by ZoneABC Team <support@zoneabc.net>
|
data/lib/public_suffix/domain.rb
CHANGED
data/lib/public_suffix/errors.rb
CHANGED
data/lib/public_suffix/list.rb
CHANGED
data/lib/public_suffix/rule.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Domain name parser based on the Public Suffix List.
|
|
6
6
|
#
|
|
7
|
-
# Copyright (c) 2009-
|
|
7
|
+
# Copyright (c) 2009-2026 Simone Carletti <weppos@weppos.net>
|
|
8
8
|
|
|
9
9
|
module PublicSuffix
|
|
10
10
|
|
|
11
11
|
# @return [String] the current library version
|
|
12
|
-
VERSION = "7.0.
|
|
12
|
+
VERSION = "7.0.1"
|
|
13
13
|
|
|
14
14
|
end
|
data/lib/public_suffix.rb
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
#
|
|
5
5
|
# Domain name parser based on the Public Suffix List.
|
|
6
6
|
#
|
|
7
|
-
# Copyright (c) 2009-
|
|
7
|
+
# Copyright (c) 2009-2026 Simone Carletti <weppos@weppos.net>
|
|
8
8
|
|
|
9
9
|
require_relative "public_suffix/domain"
|
|
10
10
|
require_relative "public_suffix/version"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: public_suffix
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.0.
|
|
4
|
+
version: 7.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simone Carletti
|
|
@@ -19,7 +19,10 @@ extra_rdoc_files:
|
|
|
19
19
|
- LICENSE.txt
|
|
20
20
|
files:
|
|
21
21
|
- ".yardopts"
|
|
22
|
+
- AGENTS.md
|
|
22
23
|
- CHANGELOG.md
|
|
24
|
+
- CLAUDE.md
|
|
25
|
+
- CONTRIBUTING.md
|
|
23
26
|
- LICENSE.txt
|
|
24
27
|
- README.md
|
|
25
28
|
- RELEASING.md
|
|
@@ -37,9 +40,9 @@ licenses:
|
|
|
37
40
|
metadata:
|
|
38
41
|
bug_tracker_uri: https://github.com/weppos/publicsuffix-ruby/issues
|
|
39
42
|
changelog_uri: https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md
|
|
40
|
-
documentation_uri: https://rubydoc.info/gems/public_suffix/7.0.
|
|
43
|
+
documentation_uri: https://rubydoc.info/gems/public_suffix/7.0.1
|
|
41
44
|
homepage_uri: https://simonecarletti.com/code/publicsuffix-ruby
|
|
42
|
-
source_code_uri: https://github.com/weppos/publicsuffix-ruby/tree/v7.0.
|
|
45
|
+
source_code_uri: https://github.com/weppos/publicsuffix-ruby/tree/v7.0.1
|
|
43
46
|
funding_uri: https://github.com/sponsors/weppos
|
|
44
47
|
rdoc_options: []
|
|
45
48
|
require_paths:
|