Starkast / wikimum

:sparkles: Starkast wiki
https://starkast.wiki/
MIT License
4 stars 1 forks source link

Bump addressable from 2.8.6 to 2.8.7 #646

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps addressable from 2.8.6 to 2.8.7.

Changelog

Sourced from addressable's changelog.

Addressable 2.8.7

  • Allow public_suffix 6 (#535)

#535: sporkmonger/addressable#535

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
github-actions[bot] commented 3 months ago

Diff URLs

github-actions[bot] commented 3 months ago

gem compare addressable 2.8.6 2.8.7

````ruby Compared versions: ["2.8.6", "2.8.7"] DIFFERENT date: 2.8.6: 2023-12-09 00:00:00 UTC 2.8.7: 2024-06-21 00:00:00 UTC DIFFERENT metadata: 2.8.6: {"changelog_uri"=>"https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.6"} 2.8.7: {"changelog_uri"=>"https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.7"} DIFFERENT rubygems_version: 2.8.6: 3.4.22 2.8.7: 3.5.11 DIFFERENT version: 2.8.6: 2.8.6 2.8.7: 2.8.7 DIFFERENT files: 2.8.6->2.8.7: * Changed: CHANGELOG.md +5/-0 Gemfile +1/-0 Rakefile +0/-3 addressable.gemspec +6/-6 lib/addressable/template.rb +1/-1 lib/addressable/uri.rb +1/-1 lib/addressable/version.rb +1/-1 tasks/gem.rake +3/-3 DIFFERENT runtime dependencies: 2.8.6->2.8.7: * Updated: public_suffix from: [">= 2.0.2", "< 6.0"] to: [">= 2.0.2", "< 7.0"] ````
github-actions[bot] commented 3 months ago

gem compare --diff addressable 2.8.6 2.8.7

````ruby Compared versions: ["2.8.6", "2.8.7"] DIFFERENT files: 2.8.6->2.8.7: * Changed: CHANGELOG.md --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/CHANGELOG.md 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/CHANGELOG.md 2024-06-24 02:55:00.360152043 +0000 @@ -0,0 +1,5 @@ +# Addressable 2.8.7 +- Allow `public_suffix` 6 ([#535]) + +[#535]: https://github.com/sporkmonger/addressable/pull/535 + Gemfile --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/Gemfile 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/Gemfile 2024-06-24 02:55:00.360152043 +0000 @@ -7,0 +8 @@ + gem 'bigdecimal' if RUBY_VERSION > '2.4' Rakefile --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/Rakefile 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/Rakefile 2024-06-24 02:55:00.360152043 +0000 @@ -37,3 +36,0 @@ -WINDOWS = (RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/) rescue false -SUDO = WINDOWS ? '' : ('sudo' unless ENV['SUDOLESS']) - addressable.gemspec --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/addressable.gemspec 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/addressable.gemspec 2024-06-24 02:55:00.360152043 +0000 @@ -2 +2 @@ -# stub: addressable 2.8.6 ruby lib +# stub: addressable 2.8.7 ruby lib @@ -6 +6 @@ - s.version = "2.8.6".freeze + s.version = "2.8.7".freeze @@ -9 +9 @@ - s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.6" } if s.respond_to? :metadata= + s.metadata = { "changelog_uri" => "https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md#v2.8.7" } if s.respond_to? :metadata= @@ -12 +12 @@ - s.date = "2023-12-09" + s.date = "2024-06-21" @@ -21 +21 @@ - s.rubygems_version = "3.4.22".freeze + s.rubygems_version = "3.5.11".freeze @@ -26 +26 @@ - s.add_runtime_dependency(%q.freeze, [">= 2.0.2".freeze, "< 6.0".freeze]) + s.add_runtime_dependency(%q.freeze, [">= 2.0.2".freeze, "< 7.0".freeze]) lib/addressable/template.rb --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/lib/addressable/template.rb 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/lib/addressable/template.rb 2024-06-24 02:55:00.364152033 +0000 @@ -160 +160 @@ - # If provided, an array of values will be returend with the given + # If provided, an array of values will be returned with the given lib/addressable/uri.rb --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/lib/addressable/uri.rb 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/lib/addressable/uri.rb 2024-06-24 02:55:00.364152033 +0000 @@ -1542 +1542 @@ - # String#split(delimeter, -1) uses the more strict splitting behavior + # String#split(delimiter, -1) uses the more strict splitting behavior lib/addressable/version.rb --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/lib/addressable/version.rb 2024-06-24 02:55:00.356152054 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/lib/addressable/version.rb 2024-06-24 02:55:00.364152033 +0000 @@ -26 +26 @@ - TINY = 6 + TINY = 7 tasks/gem.rake --- /tmp/d20240624-1914-zsfy5a/addressable-2.8.6/tasks/gem.rake 2024-06-24 02:55:00.360152043 +0000 +++ /tmp/d20240624-1914-zsfy5a/addressable-2.8.7/tasks/gem.rake 2024-06-24 02:55:00.364152033 +0000 @@ -24 +24 @@ - s.add_runtime_dependency "public_suffix", ">= 2.0.2", "< 6.0" + s.add_runtime_dependency "public_suffix", ">= 2.0.2", "< 7.0" @@ -59 +59 @@ - sh "#{SUDO} gem install --local pkg/#{GEM_SPEC.full_name}" + sh "gem install --local ./pkg/#{GEM_SPEC.full_name}.gem" @@ -68 +68 @@ - "#{SUDO} gem uninstall --version '#{PKG_VERSION}' " + + "gem uninstall --version '#{PKG_VERSION}' " + ````
github-actions[bot] commented 3 months ago

gem compare public_suffix 5.0.5 6.0.0

````ruby Compared versions: ["5.0.5", "6.0.0"] DIFFERENT date: 5.0.5: 2024-04-02 00:00:00 UTC 6.0.0: 2024-06-17 00:00:00 UTC DIFFERENT metadata: 5.0.5: {"bug_tracker_uri"=>"https://github.com/weppos/publicsuffix-ruby/issues", "changelog_uri"=>"https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md", "documentation_uri"=>"https://rubydoc.info/gems/public_suffix/5.0.5", "homepage_uri"=>"https://simonecarletti.com/code/publicsuffix-ruby", "source_code_uri"=>"https://github.com/weppos/publicsuffix-ruby/tree/v5.0.5"} 6.0.0: {"bug_tracker_uri"=>"https://github.com/weppos/publicsuffix-ruby/issues", "changelog_uri"=>"https://github.com/weppos/publicsuffix-ruby/blob/master/CHANGELOG.md", "documentation_uri"=>"https://rubydoc.info/gems/public_suffix/6.0.0", "homepage_uri"=>"https://simonecarletti.com/code/publicsuffix-ruby", "source_code_uri"=>"https://github.com/weppos/publicsuffix-ruby/tree/v6.0.0"} DIFFERENT required_ruby_version: 5.0.5: >= 2.6 6.0.0: >= 3.0 DIFFERENT rubygems_version: 5.0.5: 3.5.3 6.0.0: 3.5.11 DIFFERENT version: 5.0.5: 5.0.5 6.0.0: 6.0.0 DIFFERENT files: 5.0.5->6.0.0: * Deleted: 2.0-Upgrade.md * Changed: CHANGELOG.md +28/-1 README.md +1/-3 SECURITY.md +1/-2 data/list.txt +586/-395 lib/public_suffix/rule.rb +1/-1 lib/public_suffix/version.rb +1/-1 ````
github-actions[bot] commented 3 months ago

gem compare --diff public_suffix 5.0.5 6.0.0

````ruby Compared versions: ["5.0.5", "6.0.0"] DIFFERENT files: 5.0.5->6.0.0: * Deleted: 2.0-Upgrade.md * Changed: CHANGELOG.md --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/CHANGELOG.md 2024-06-24 02:55:06.352136159 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/CHANGELOG.md 2024-06-24 02:55:06.356136150 +0000 @@ -4,0 +5,24 @@ + +## 6.0.0 + +Same as 5.1.0. Re-releasing as a major version change due to a major ruby version requirement change. + +### Changed + +- Updated definitions. +- Minimum Ruby version is 3.0 + + +## 5.1.1 + +No significant changes. Releasing a mini version to address 5.1.0 release with major ruby requirement change (GH-315). + + +## 5.1.0 + +### Changed + +- Updated definitions. +- Minimum Ruby version is 3.0 + + @@ -10,0 +35 @@ + @@ -17,0 +43 @@ + @@ -23,0 +50 @@ + @@ -29,0 +57 @@ + @@ -42 +69,0 @@ - README.md --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/README.md 2024-06-24 02:55:06.352136159 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/README.md 2024-06-24 02:55:06.356136150 +0000 @@ -19 +19 @@ -PublicSuffix requires **Ruby >= 2.6**. For an older versions of Ruby use a previous release. +PublicSuffix requires **Ruby >= 3.0**. For an older versions of Ruby use a previous release. @@ -35,2 +34,0 @@ - -If you are upgrading to 2.0, see [2.0-Upgrade.md](2.0-Upgrade.md). SECURITY.md --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/SECURITY.md 2024-06-24 02:55:06.352136159 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/SECURITY.md 2024-06-24 02:55:06.356136150 +0000 @@ -7,2 +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. +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. data/list.txt --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/data/list.txt 2024-06-24 02:55:06.352136159 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/data/list.txt 2024-06-24 02:55:06.356136150 +0000 @@ -678 +677,0 @@ - @@ -6713 +6712 @@ -// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-03-28T15:13:37Z +// List of new gTLDs imported from https://www.icann.org/resources/registries/gtlds/v2/gtlds.json on 2024-06-13T15:15:16Z @@ -6899 +6898 @@ -// aol : Oath Inc. +// aol : Yahoo Inc. @@ -8979 +8978 @@ -// love : Merchant Law Group LLP +// love : Waterford Limited @@ -9231,4 +9229,0 @@ -// natura : NATURA COSMÉTICOS S.A. -// https://www.iana.org/domains/root/db/natura.html -natura - @@ -11123 +11118 @@ -// yahoo : Oath Inc. +// yahoo : Yahoo Inc. @@ -11202,0 +11198,4 @@ +// AAA workspace : https://aaa.vodka +// Submitted by Kirill Rezraf +aaa.vodka + @@ -11349 +11348 @@ -// Reference: 7bee1013-f456-47df-bfe8-03c78d946d61 +// Reference: 09588633-91fe-49d8-b4e7-ec36496d11f3 @@ -11354,0 +11354 @@ +auth.ap-south-2.amazoncognito.com @@ -11357,0 +11358 @@ +auth.ap-southeast-4.amazoncognito.com @@ -11359,0 +11361 @@ +auth.eu-central-2.amazoncognito.com @@ -11361,0 +11364 @@ +auth.eu-south-2.amazoncognito.com @@ -11365,0 +11369 @@ +auth.me-central-1.amazoncognito.com @@ -11380,0 +11385 @@ +*.compute.amazonaws.com.cn @@ -11383 +11387,0 @@ -*.compute.amazonaws.com.cn @@ -11388 +11392 @@ -// Reference: 597f3f8e-9283-4e48-8e32-7ee25a1ff6ab +// Reference: 82f43f9f-bbb8-400e-8349-854f5a62f20d @@ -11412,0 +11417,3 @@ +emrappui-prod.ap-south-2.amazonaws.com +emrnotebooks-prod.ap-south-2.amazonaws.com +emrstudio-prod.ap-south-2.amazonaws.com @@ -11421,0 +11429,3 @@ +emrappui-prod.ap-southeast-4.amazonaws.com +emrnotebooks-prod.ap-southeast-4.amazonaws.com +emrstudio-prod.ap-southeast-4.amazonaws.com @@ -11424,0 +11435,3 @@ +emrappui-prod.ca-west-1.amazonaws.com +emrnotebooks-prod.ca-west-1.amazonaws.com +emrstudio-prod.ca-west-1.amazonaws.com @@ -11427,0 +11441,3 @@ +emrappui-prod.eu-central-2.amazonaws.com +emrnotebooks-prod.eu-central-2.amazonaws.com +emrstudio-prod.eu-central-2.amazonaws.com @@ -11433,0 +11450,3 @@ +emrappui-prod.eu-south-2.amazonaws.com +emrnotebooks-prod.eu-south-2.amazonaws.com +emrstudio-prod.eu-south-2.amazonaws.com @@ -11442,0 +11462,3 @@ +emrappui-prod.il-central-1.amazonaws.com +emrnotebooks-prod.il-central-1.amazonaws.com +emrstudio-prod.il-central-1.amazonaws.com @@ -11473 +11495 @@ -// Reference: 4ab55e6f-90c0-4a8d-b6a0-52ca5dbb1c2e +// Reference: 87f24ece-a77e-40e8-bb4a-f6b74fe9f975 @@ -11475,0 +11498,2 @@ +*.af-south-1.airflow.amazonaws.com +*.ap-east-1.airflow.amazonaws.com @@ -11483,0 +11508 @@ +*.eu-south-1.airflow.amazonaws.com @@ -11486,0 +11512 @@ +*.me-south-1.airflow.amazonaws.com @@ -11489,0 +11516 @@ +*.us-west-1.airflow.amazonaws.com @@ -11782,0 +11810,16 @@ +// Amazon SageMaker Ground Truth +// Submitted by AWS Security +// Reference: 98dbfde4-7802-48c3-8751-b60f204e0d9c +labeling.ap-northeast-1.sagemaker.aws +labeling.ap-northeast-2.sagemaker.aws +labeling.ap-south-1.sagemaker.aws +labeling.ap-southeast-1.sagemaker.aws +labeling.ap-southeast-2.sagemaker.aws +labeling.ca-central-1.sagemaker.aws +labeling.eu-central-1.sagemaker.aws +labeling.eu-west-1.sagemaker.aws +labeling.eu-west-2.sagemaker.aws +labeling.us-east-1.sagemaker.aws +labeling.us-east-2.sagemaker.aws +labeling.us-west-2.sagemaker.aws + @@ -11785 +11828 @@ -// Reference: ce8ae0b1-0070-496d-be88-37c31837af9d +// Reference: b5ea56df-669e-43cc-9537-14aa172f5dfc @@ -11821,0 +11865 @@ +notebook-fips.us-west-1.sagemaker.aws @@ -11829 +11873 @@ -// Reference: 057ee397-6bf8-4f20-b807-d7bc145ac980 +// Reference: 69c723d9-6e1a-4bff-a203-48eecd203183 @@ -11842,0 +11887 @@ +studio.eu-south-2.sagemaker.aws @@ -11953,0 +11999,5 @@ +// AWS Directory Service +// Submitted by AWS Security +// Reference: a13203e8-42dc-4045-a0d2-2ee67bed1068 +awsapps.com + @@ -12078,0 +12129 @@ +myfritz.link @@ -12145,0 +12197,4 @@ +// University of Bielsko-Biala regional domain: http://dns.bielsko.pl/ +// Submitted by Marcin +bielsko.pl + @@ -12192 +12247,2 @@ -// Submitted by Dusan Radovanovic +// Submitted by Dusan Radovanovic +shop.brendly.hr @@ -12230 +12286 @@ -ae.org +za.bz @@ -12233,2 +12288,0 @@ -com.de -com.se @@ -12237,3 +12290,0 @@ -gb.net -hu.net -jp.net @@ -12244 +12294,0 @@ -se.net @@ -12246 +12295,0 @@ -uk.net @@ -12248 +12296,0 @@ -za.bz @@ -12249,0 +12298,8 @@ +com.de +gb.net +hu.net +jp.net +se.net +uk.net +ae.org +com.se @@ -12270 +12325,0 @@ -in.net @@ -12271,0 +12327 @@ +in.net @@ -12308,0 +12365,2 @@ +cleverapps.cc +*.services.clever-cloud.com @@ -12309,0 +12368 @@ +cleverapps.tech @@ -12340 +12398,0 @@ -cloudcontrolled.com @@ -12341,0 +12400 @@ +cloudcontrolled.com @@ -12354,0 +12414,11 @@ +cdn.cloudflareanycast.net +cdn.cloudflarecn.net +cdn.cloudflareglobal.net +cloudflare.net +cdn.cloudflare.net + +// cloudscale.ch AG : https://www.cloudscale.ch/ +// Submitted by Gaudenz Steinlin +cust.cloudscale.ch +objects.lpg.cloudscale.ch +objects.rma.cloudscale.ch @@ -12373,2 +12443,2 @@ -c.cdn77.org -cdn77-ssl.net +cdn77-storage.com +rsc.contentproxy9.cz @@ -12375,0 +12446,2 @@ +cdn77-ssl.net +c.cdn77.org @@ -12380 +12452 @@ -// Submitted by Aleksander Hristov +// Submitted by Aleksander Hristov & Boyan Peychev @@ -12381,0 +12454 @@ +cloudns.be @@ -12383 +12455,0 @@ -cloudns.club @@ -12384,0 +12457,5 @@ +cloudns.ch +cloudns.cl +cloudns.club +dnsabr.com +cloudns.cx @@ -12387,0 +12465,3 @@ +dns-cloud.net +dns-dynamic.net +cloudns.nz @@ -12388,0 +12469 @@ +cloudns.ph @@ -12400,0 +12482,5 @@ +// CodeSandbox B.V. : https://codesandbox.io +// Submitted by Ives van Hoorne +csb.app +preview.csb.app + @@ -12426 +12511,0 @@ -dynamisches-dns.de @@ -12427,0 +12513 @@ +dynamisches-dns.de @@ -12480,0 +12567 @@ +platform0.app @@ -12483 +12569,0 @@ -platform0.app @@ -12518,0 +12605 @@ +darklang.io @@ -12611,0 +12699,20 @@ +dyndns.biz +for-better.biz +for-more.biz +for-some.biz +for-the.biz +selfip.biz +webhop.biz +ftpaccess.cc +game-server.cc +myphotos.cc +scrapping.cc +blogdns.com +cechire.com +dnsalias.com +dnsdojo.com +doesntexist.com +dontexist.com +doomdns.com +dyn-o-saur.com +dynalias.com @@ -12626,41 +12732,0 @@ -dyndns.biz -dyndns.info -dyndns.org -dyndns.tv -at-band-camp.net -ath.cx -barrel-of-knowledge.info -barrell-of-knowledge.info -better-than.tv -blogdns.com -blogdns.net -blogdns.org -blogsite.org -boldlygoingnowhere.org -broke-it.net -buyshouses.net -cechire.com -dnsalias.com -dnsalias.net -dnsalias.org -dnsdojo.com -dnsdojo.net -dnsdojo.org -does-it.net -doesntexist.com -doesntexist.org -dontexist.com -dontexist.net -dontexist.org -doomdns.com -doomdns.org -dvrdns.org -dyn-o-saur.com -dynalias.com -dynalias.net -dynalias.org -dynathome.net -dyndns.ws -endofinternet.net -endofinternet.org -endoftheinternet.org @@ -12671,7 +12736,0 @@ -for-better.biz -for-more.biz -for-our.info -for-some.biz -for-the.biz -forgot.her.name -forgot.his.name @@ -12681 +12739,0 @@ -from-az.net @@ -12683 +12740,0 @@ -from-co.net @@ -12696 +12752,0 @@ -from-la.net @@ -12699 +12754,0 @@ -from-me.org @@ -12712 +12766,0 @@ -from-ny.net @@ -12730,4 +12783,0 @@ -ftpaccess.cc -fuettertdasnetz.de -game-host.org -game-server.cc @@ -12735,2 +12784,0 @@ -gets-it.net -go.dyndns.org @@ -12738,5 +12785,0 @@ -gotdns.org -groks-the.info -groks-this.info -ham-radio-op.net -here-for-more.info @@ -12744,6 +12786,0 @@ -hobby-site.org -home.dyndns.org -homedns.org -homeftp.net -homeftp.org -homeip.net @@ -12751,2 +12787,0 @@ -homelinux.net -homelinux.org @@ -12754,2 +12788,0 @@ -homeunix.net -homeunix.org @@ -12757 +12789,0 @@ -in-the-band.net @@ -12761 +12792,0 @@ -is-a-bruinsfan.org @@ -12763 +12793,0 @@ -is-a-candidate.org @@ -12765 +12794,0 @@ -is-a-celticsfan.org @@ -12767,2 +12795,0 @@ -is-a-chef.net -is-a-chef.org @@ -12777,2 +12803,0 @@ -is-a-geek.net -is-a-geek.org @@ -12783 +12807,0 @@ -is-a-knight.org @@ -12788 +12811,0 @@ -is-a-linux-user.org @@ -12794 +12816,0 @@ -is-a-patsfan.org @@ -12801 +12822,0 @@ -is-a-soxfan.org @@ -12813 +12833,0 @@ -is-by.us @@ -12815 +12834,0 @@ -is-found.org @@ -12822 +12840,0 @@ -is-lost.org @@ -12824 +12841,0 @@ -is-saved.org @@ -12827,5 +12843,0 @@ -is-very-bad.org -is-very-evil.org -is-very-good.org -is-very-nice.org -is-very-sweet.org @@ -12834,2 +12845,0 @@ -isa-geek.net -isa-geek.org @@ -12837,0 +12848,14 @@ +likes-pie.com +likescandy.com +neat-url.com +saves-the-whales.com +selfip.com +sells-for-less.com +sells-for-u.com +servebbs.com +simple-url.com +space-to-rent.com +teaches-yoga.com +writesthisblog.com +ath.cx +fuettertdasnetz.de @@ -12840,4 +12863,0 @@ -kicks-ass.net -kicks-ass.org -knowsitall.info -land-4-sale.us @@ -12846,2 +12866,48 @@ -likes-pie.com -likescandy.com +traeumtgerade.de +barrel-of-knowledge.info +barrell-of-knowledge.info +dyndns.info +for-our.info +groks-the.info +groks-this.info +here-for-more.info +knowsitall.info +selfip.info +webhop.info +forgot.her.name +forgot.his.name +at-band-camp.net +blogdns.net +broke-it.net +buyshouses.net +dnsalias.net +dnsdojo.net +does-it.net +dontexist.net +dynalias.net +dynathome.net +endofinternet.net +from-az.net +from-co.net +from-la.net +from-ny.net +gets-it.net +ham-radio-op.net +homeftp.net +homeip.net +homelinux.net +homeunix.net +in-the-band.net +is-a-chef.net +is-a-geek.net +isa-geek.net +kicks-ass.net +office-on-the.net +podzone.net +scrapper-site.net +selfip.net +sells-it.net +servebbs.net +serveftp.net +thruhere.net +webhop.net @@ -12849,0 +12916,43 @@ +shacknet.nu +blogdns.org +blogsite.org +boldlygoingnowhere.org +dnsalias.org +dnsdojo.org +doesntexist.org +dontexist.org +doomdns.org +dvrdns.org +dynalias.org +dyndns.org +go.dyndns.org +home.dyndns.org +endofinternet.org +endoftheinternet.org +from-me.org +game-host.org +gotdns.org +hobby-site.org +homedns.org +homeftp.org +homelinux.org +homeunix.org +is-a-bruinsfan.org +is-a-candidate.org +is-a-celticsfan.org +is-a-chef.org +is-a-geek.org +is-a-knight.org +is-a-linux-user.org +is-a-patsfan.org +is-a-soxfan.org +is-found.org +is-lost.org +is-saved.org +is-very-bad.org +is-very-evil.org +is-very-good.org +is-very-nice.org +is-very-sweet.org +isa-geek.org +kicks-ass.org @@ -12851,6 +12959,0 @@ -mypets.ws -myphotos.cc -neat-url.com -office-on-the.net -on-the-web.tv -podzone.net @@ -12859,7 +12961,0 @@ -saves-the-whales.com -scrapper-site.net -scrapping.cc -selfip.biz -selfip.com -selfip.info -selfip.net @@ -12867,3 +12962,0 @@ -sells-for-less.com -sells-for-u.com -sells-it.net @@ -12871,2 +12963,0 @@ -servebbs.com -servebbs.net @@ -12874 +12964,0 @@ -serveftp.net @@ -12877,3 +12966,0 @@ -shacknet.nu -simple-url.com -space-to-rent.com @@ -12881,7 +12967,0 @@ -stuff-4-sale.us -teaches-yoga.com -thruhere.net -traeumtgerade.de -webhop.biz -webhop.info -webhop.net @@ -12888,0 +12969,3 @@ +better-than.tv +dyndns.tv +on-the-web.tv @@ -12890 +12973,5 @@ -writesthisblog.com +is-by.us +land-4-sale.us +stuff-4-sale.us +dyndns.ws +mypets.ws @@ -12897 +12983,0 @@ -dyndns1.de @@ -12898,0 +12985 @@ +dyndns1.de @@ -12906 +12992,0 @@ -definima.net @@ -12907,0 +12994 @@ +definima.net @@ -12916,0 +13004,4 @@ +// DigitalPlat : https://www.digitalplat.org/ +// Submitted by Edward Hsing +us.kg + @@ -12957,0 +13049,16 @@ +// eDirect Corp. : https://hosting.url.com.tw/ +// Submitted by C.S. chang +twmail.cc +twmail.net +twmail.org +mymailer.com.tw +url.tw + +// Electromagnetic Field : https://www.emfcamp.org +// Submitted by +at.emf.camp + +// Elefunc, Inc. : https://elefunc.com +// Submitted by Cetin Sert +rt.ht + @@ -12968 +13075 @@ -// Submitted by Thomas Cottier +// Submitted by Enalean Security Team @@ -13060,7 +13167,9 @@ -// eDirect Corp. : https://hosting.url.com.tw/ -// Submitted by C.S. chang -twmail.cc -twmail.net -twmail.org -mymailer.com.tw -url.tw +// Evervault : https://evervault.com +// Submitted by Hannah Neary +relay.evervault.app +relay.evervault.dev + +// Expo : https://expo.dev/ +// Submitted by James Ide +expo.app +staging.expo.app @@ -13158,2 +13266,0 @@ -fastlylb.net -map.fastlylb.net @@ -13166,0 +13274,2 @@ +fastlylb.net +map.fastlylb.net @@ -13236 +13344,0 @@ -edgeapp.net @@ -13237,0 +13346 @@ +edgeapp.net @@ -13249 +13358,2 @@ -// Submitted by Koen Rouwhorst +// Submitted by Koen Rouwhorst +framer.ai @@ -13289,0 +13400,18 @@ +// Future Versatile Group. :https://www.fvg-on.net/ +// T.Kabu +daemon.asia +dix.asia +mydns.bz +0am.jp +0g0.jp +0j0.jp +0t0.jp +mydns.jp +pgw.jp +wjg.jp +keyword-on.net +live-on.net +server-on.net +mydns.tw +mydns.vc + @@ -13306,0 +13435,2 @@ +campaign.gov.uk +service.gov.uk @@ -13314,2 +13443,0 @@ -campaign.gov.uk -service.gov.uk @@ -13333,3 +13461,5 @@ -// Ghost Foundation : https://ghost.org -// Submitted by Matt Hanley -ghost.io +// Getlocalcert: https://www.getlocalcert.net +// Submitted by Robert Alexander +localcert.net +localhostcert.net +corpnet.work @@ -13501,18 +13631 @@ -// Submitted by Eduardo Vela -*.run.app -web.app -*.0emm.com -appspot.com -*.r.appspot.com -codespot.com -googleapis.com -googlecode.com -pagespeedmobilizer.com -publishproxy.com -withgoogle.com -withyoutube.com -*.gateway.dev -cloud.goog -translate.goog -*.usercontent.goog -cloudfunctions.net +// Submitted by Shannon McCabe @@ -13521,0 +13635,6 @@ +*.hosted.app +*.run.app +web.app +blogspot.com.ar +blogspot.co.at +blogspot.com.au @@ -13525,0 +13645,2 @@ +blogspot.com.br +blogspot.com.by @@ -13530,12 +13650,0 @@ -blogspot.co.at -blogspot.co.id -blogspot.co.il -blogspot.co.ke -blogspot.co.nz -blogspot.co.uk -blogspot.co.za -blogspot.com -blogspot.com.ar -blogspot.com.au -blogspot.com.br -blogspot.com.by @@ -13543,8 +13652,11 @@ -blogspot.com.cy -blogspot.com.ee -blogspot.com.eg -blogspot.com.es -blogspot.com.mt -blogspot.com.ng -blogspot.com.tr -blogspot.com.uy +*.0emm.com +appspot.com +*.r.appspot.com +blogspot.com +codespot.com +googleapis.com +googlecode.com +pagespeedmobilizer.com +publishproxy.com +withgoogle.com +withyoutube.com @@ -13551,0 +13664 @@ +blogspot.com.cy @@ -13553,0 +13667 @@ +*.gateway.dev @@ -13554,0 +13669,3 @@ +blogspot.com.ee +blogspot.com.eg +blogspot.com.es @@ -13556,0 +13674,3 @@ +cloud.goog +translate.goog +*.usercontent.goog @@ -13560,0 +13681 @@ +blogspot.co.id @@ -13561,0 +13683 @@ +blogspot.co.il @@ -13565,0 +13688 @@ +blogspot.co.ke @@ -13572,0 +13696 @@ +blogspot.com.mt @@ -13574,0 +13699,2 @@ +cloudfunctions.net +blogspot.com.ng @@ -13576,0 +13703 @@ +blogspot.co.nz @@ -13589,0 +13717 @@ +blogspot.com.tr @@ -13591,0 +13720,2 @@ +blogspot.co.uk +blogspot.com.uy @@ -13592,0 +13723 @@ +blogspot.co.za @@ -13601,0 +13733,4 @@ +// GrayJay Web Solutions Inc. : https://grayjaysports.ca +// Submitted by Matt Yamkowy +grayjayleagues.com + @@ -13621 +13755,0 @@ -hs.zone @@ -13622,0 +13757 @@ +hs.zone @@ -13635,0 +13771,9 @@ +// Helio Networks : https://heliohost.org +// Submitted by Ben Frede +helioho.st +heliohost.us + +// HeiyuSpace: https://lazycat.cloud +// Submitted by Xia Bin +heiyu.space + @@ -13649 +13792,0 @@ -ravendb.me @@ -13690,0 +13834,4 @@ +// Hypernode B.V. : https://www.hypernode.com/ +// Submitted by Cipriano Groenendal +hypernode.io + @@ -13711 +13857,0 @@ -impertrixcdn.com @@ -13712,0 +13859 @@ +impertrixcdn.com @@ -13729,2 +13875,0 @@ -in-dsl.net -in-dsl.org @@ -13731,0 +13877 @@ +in-dsl.net @@ -13732,0 +13879 @@ +in-dsl.org @@ -13788,0 +13936,4 @@ +// is-a.dev : https://www.is-a.dev +// Submitted by William Harrison +is-a.dev + @@ -13900,0 +14052,5 @@ +// JouwWeb B.V. : https://www.jouwweb.nl +// Submitted by Camilo Sperberg +webadorsite.com +jouwweb.site + @@ -13903 +14058,0 @@ -*.triton.zone @@ -13904,0 +14060 @@ +*.triton.zone @@ -13946 +14101,0 @@ -kuleuven.cloud @@ -13947,0 +14103 @@ +kuleuven.cloud @@ -13955 +14110,0 @@ -krellian.net @@ -13956,0 +14112 @@ +krellian.net @@ -13973,0 +14130,4 @@ +// Libre IT Ltd : https://libre.nz +// Submitted by Tomas Maggio +runcontainers.dev + @@ -13984,4 +14143,0 @@ -// Lightmaker Property Manager, Inc. : https://app.lmpm.com/ -// Submitted by Greg Holland -app.lmpm.com - @@ -13990 +14145,0 @@ -linkyard.cloud @@ -13991,0 +14147 @@ +linkyard.cloud @@ -14046,2 +14202 @@ -barsy.co.uk -barsyonline.co.uk +barsy.club @@ -14050 +14204,0 @@ -barsy.club @@ -14051,0 +14206 @@ +barsy.dev @@ -14052,0 +14208 @@ +barsy.gr @@ -14057,0 +14214 @@ +barsyonline.menu @@ -14064,0 +14222 @@ +barsy.rs @@ -14065,0 +14224 @@ +barsyonline.shop @@ -14066,0 +14226 @@ +barsy.store @@ -14068,0 +14229,2 @@ +barsy.co.uk +barsyonline.co.uk @@ -14099 +14260,0 @@ -mcpre.ru @@ -14100,0 +14262 @@ +mcpre.ru @@ -14148 +14309,0 @@ -cloudapp.azure.com @@ -14149,0 +14311 @@ +azure-mobile.net @@ -14152,2 +14313,0 @@ -azurewebsites.net -azure-mobile.net @@ -14166,0 +14327 @@ +azurewebsites.net @@ -14205 +14365,0 @@ -customer.mythic-beasts.com @@ -14206,0 +14367 @@ +customer.mythic-beasts.com @@ -14233,0 +14395,4 @@ +// NGO.US Registry : https://nic.ngo.us +// Submitted by Alstra Solutions Ltd. Networking Team +ngo.us + @@ -14255 +14420 @@ -// Submitted by Nicholas Ford +// Submitted by Nicholas Ford @@ -14256,0 +14422 @@ +nimsite.uk @@ -14282,0 +14449,4 @@ +// Notion Labs, Inc : https://www.notion.so/ +// Submitted by Jess Yao +notion.site + @@ -14317,0 +14488,7 @@ +mmafan.biz +myftp.biz +no-ip.biz +no-ip.ca +fantasyleague.cc +gotdns.ch +3utilities.com @@ -14319,2 +14495,0 @@ -brasilia.me -cable-modem.org @@ -14322,2 +14496,0 @@ -collegefan.org -couchpotatofries.org @@ -14325 +14498 @@ -ddns.me +ddnsking.com @@ -14327 +14499,0 @@ -dnsfor.me @@ -14329 +14500,0 @@ -dvrcam.info @@ -14331,2 +14501,0 @@ -eating-organic.net -fantasyleague.cc @@ -14334 +14502,0 @@ -golffan.us @@ -14338,5 +14505,0 @@ -hopto.me -ilovecollege.info -loginto.me -mlbfan.org -mmafan.biz @@ -14344,4 +14506,0 @@ -mydissent.net -myeffect.net -mymediapc.net -mypsx.net @@ -14349,2 +14508 @@ -mysecuritycamera.net -mysecuritycamera.org +myvnc.com @@ -14352,6 +14509,0 @@ -nflfan.org -nhlfan.net -no-ip.ca -no-ip.co.uk -no-ip.net -noip.us @@ -14359 +14510,0 @@ -pgafan.net @@ -14361,2 +14511,0 @@ -pointto.us -privatizehealthinsurance.net @@ -14364 +14512,0 @@ -read-books.org @@ -14365,0 +14514,2 @@ +servebeer.com +servecounterstrike.com @@ -14366,0 +14517,4 @@ +serveftp.com +servegame.com +servehalflife.com +servehttp.com @@ -14367,0 +14522,2 @@ +serveirc.com +servemp3.com @@ -14368,0 +14525,2 @@ +servepics.com +servequake.com @@ -14371 +14528,0 @@ -ufcfan.org @@ -14374,10 +14531,2 @@ -3utilities.com -bounceme.net -ddns.net -ddnsking.com -gotdns.ch -hopto.org -myftp.biz -myftp.org -myvnc.com -no-ip.biz +dvrcam.info +ilovecollege.info @@ -14385 +14534,5 @@ -no-ip.org +brasilia.me +ddns.me +dnsfor.me +hopto.me +loginto.me @@ -14386,0 +14540,13 @@ +webhop.me +bounceme.net +ddns.net +eating-organic.net +mydissent.net +myeffect.net +mymediapc.net +mypsx.net +mysecuritycamera.net +nhlfan.net +no-ip.net +pgafan.net +privatizehealthinsurance.net @@ -14388 +14553,0 @@ -servebeer.com @@ -14390,6 +14554,0 @@ -servecounterstrike.com -serveftp.com -servegame.com -servehalflife.com -servehttp.com -serveirc.com @@ -14397,3 +14555,0 @@ -servemp3.com -servepics.com -servequake.com @@ -14401 +14557,11 @@ -webhop.me +cable-modem.org +collegefan.org +couchpotatofries.org +hopto.org +mlbfan.org +myftp.org +mysecuritycamera.org +nflfan.org +no-ip.org +read-books.org +ufcfan.org @@ -14402,0 +14569,4 @@ +no-ip.co.uk +golffan.us +noip.us +pointto.us @@ -14415,0 +14586,4 @@ +// O3O.Foundation : https://o3o.foundation/ +// Submitted by the prvcy.page Registry Team +prvcy.page + @@ -14417,0 +14592 @@ +observablehq.cloud @@ -14438,9 +14612,0 @@ -123hjemmeside.dk -123hjemmeside.no -123homepage.it -123kotisivu.fi -123minsida.se -123miweb.es -123paginaweb.pt -123sait.ru -123siteweb.fr @@ -14448 +14613,0 @@ -123webseite.de @@ -14449,0 +14615 @@ +simplesite.com.br @@ -14450,0 +14617,8 @@ +simplesite.com +123webseite.de +123hjemmeside.dk +123miweb.es +123kotisivu.fi +123siteweb.fr +simplesite.gr +123homepage.it @@ -14452,0 +14627 @@ +123hjemmeside.no @@ -14454,3 +14628,0 @@ -simplesite.com -simplesite.com.br -simplesite.gr @@ -14457,0 +14630,2 @@ +123paginaweb.pt +123minsida.se @@ -14462,0 +14637,7 @@ +// Open Domains : https://open-domains.net +// Submitted by William Harrison +is-cool.dev +is-not-a.dev +localplayer.dev +is-local.org + @@ -14482,0 +14664,5 @@ +// OsSav Technology Ltd. : https://ossav.com/ +// TLD Nic: http://nic.can.re - TLD Whois Server: whois.can.re +// Submitted by OsSav Technology Ltd. +can.re + @@ -14495 +14680,0 @@ -*.webpaas.ovh.net @@ -14496,0 +14682 @@ +*.webpaas.ovh.net @@ -14533,4 +14719,6 @@ -bar0.net -bar1.net -bar2.net -rdv.to +*.xmit.co +xmit.dev +madethis.site +srv.us +gh.srv.us +gl.srv.us @@ -14548 +14735,0 @@ -pantheonsite.io @@ -14549,0 +14737 @@ +pantheonsite.io @@ -14584,0 +14773 @@ +pleskns.com @@ -14587 +14775,0 @@ -pleskns.com @@ -14624,4 +14811,0 @@ -// privacytools.io : https://www.privacytools.io/ -// Submitted by Jonah Aragon -prvcy.page - @@ -14694,2 +14878,2 @@ -// Submitted by Nick Chang -dev-myqnapcloud.com +// Submitted by Nick Chang +myqnapcloud.cn @@ -14696,0 +14881,3 @@ +dev-myqnapcloud.com +mycloudnas.com +mynascloud.com @@ -14719 +14905,0 @@ -*.on-k3s.io @@ -14720,0 +14907 @@ +*.on-k3s.io @@ -14733 +14919,0 @@ -app.render.com @@ -14734,0 +14921 @@ +app.render.com @@ -14879 +15065,0 @@ -logoip.de @@ -14880,0 +15067 @@ +logoip.de @@ -14925,0 +15113,4 @@ +// Scrypted : https://scrypted.app +// Submitted by Koushik Dutta +client.scrypted.io + @@ -14964,0 +15156,4 @@ +// Sheezy.Art : https://sheezy.art +// Submitted by Nyoom +sheezy.games + @@ -15035,3 +15230,3 @@ -// Submitted by Faith Olapade -snowflake.app -privatelink.snowflake.app +// Submitted by Sam Haar +*.snowflake.app +*.privatelink.snowflake.app @@ -15048,0 +15244,10 @@ +// SparrowHost : https://sparrowhost.in/ +// Submitted by Anant Pandey +ind.mom + +// StackBlitz : https://stackblitz.com +// Submitted by Dominic Elm +w-corp-staticblitz.com +w-credentialless-staticblitz.com +w-staticblitz.com + @@ -15063 +15267,0 @@ -musician.io @@ -15064,0 +15269 @@ +musician.io @@ -15076,0 +15282,5 @@ +// Strapi : https://strapi.io/ +// Submitted by Florent Baldino +strapiapp.com +media.strapiapp.com + @@ -15176 +15385,0 @@ -*.s5y.io @@ -15177,0 +15387 @@ +*.s5y.io @@ -15199 +15408,0 @@ -vpnplus.to @@ -15200,0 +15410 @@ +vpnplus.to @@ -15204,2 +15413,0 @@ -tabitorder.co.il -mytabit.co.il @@ -15206,0 +15415,2 @@ +mytabit.co.il +tabitorder.co.il @@ -15246,0 +15457 @@ +reservd.dev.thingdust.io @@ -15247,0 +15459 @@ +reservd.disrec.thingdust.io @@ -15250,2 +15461,0 @@ -reservd.dev.thingdust.io -reservd.disrec.thingdust.io @@ -15313,2 +15522,0 @@ -diskstation.eu -diskstation.org @@ -15324,0 +15533,2 @@ +diskstation.eu +diskstation.org @@ -15336 +15545,0 @@ -uber.space @@ -15337,0 +15547 @@ +uber.space @@ -15342,2 +15551,0 @@ -hk.org -ltd.hk @@ -15344,0 +15553,2 @@ +ltd.hk +hk.org @@ -15349,0 +15560,4 @@ +// Unison Computing, PBC : https://unison.cloud +// Submitted by Simon Højberg +unison-services.cloud + @@ -15361 +15574,0 @@ -virtualuser.de @@ -15362,0 +15576 @@ +virtualuser.de @@ -15376,0 +15591,5 @@ +// Val Town, Inc : https://val.town/ +// Submitted by Tom MacWright +express.val.run +web.val.run + @@ -15399,41 +15617,0 @@ -// Voxel.sh DNS : https://voxel.sh/dns/ -// Submitted by Mia Rehlinger -neko.am -nyaa.am -be.ax -cat.ax -es.ax -eu.ax -gg.ax -mc.ax -us.ax -xy.ax -nl.ci -xx.gl -app.gp -blog.gt -de.gt -to.gt -be.gy -cc.hn -io.kg -jp.kg -tv.kg -uk.kg -us.kg -de.ls -at.md -de.md -jp.md -to.md -indie.porn -vxl.sh -ch.tc -me.tc -we.tc -nyan.to -at.vg -blog.vu -dev.vu -me.vu - @@ -15463,2 +15640,0 @@ -reserve-online.net -reserve-online.com @@ -15466,0 +15643,6 @@ +reserve-online.com +reserve-online.net + +// WebWaddle Ltd: https://webwaddle.com/ +// Submitted by Merlin Glander +*.wadl.top @@ -15477,0 +15660,4 @@ +// Whatbox Inc. : https://whatbox.ca/ +// Submitted by Anthony Ryan +box.ca + @@ -15484 +15669,0 @@ -wmflabs.org @@ -15486,0 +15672 @@ +wmflabs.org @@ -15492,0 +15679,8 @@ +// Wix.com, Inc. : https://www.wix.com +// Submitted by Shahar Talmi / Alon Kochba +wixsite.com +wixstudio.com +editorx.io +wixstudio.io +wix.run + @@ -15518,7 +15711,0 @@ -// Wix.com, Inc. : https://www.wix.com -// Submitted by Shahar Talmi -wixsite.com -editorx.io -wixstudio.io -wix.run - @@ -15578,0 +15766,4 @@ + +// Zeabur : https://zeabur.com/ +// Submitted by Zeabur Team +zeabur.app lib/public_suffix/rule.rb --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/lib/public_suffix/rule.rb 2024-06-24 02:55:06.356136150 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/lib/public_suffix/rule.rb 2024-06-24 02:55:06.360136140 +0000 @@ -233 +233 @@ - super(value: value, length: length, private: private) + super lib/public_suffix/version.rb --- /tmp/d20240624-1988-ht49ef/public_suffix-5.0.5/lib/public_suffix/version.rb 2024-06-24 02:55:06.356136150 +0000 +++ /tmp/d20240624-1988-ht49ef/public_suffix-6.0.0/lib/public_suffix/version.rb 2024-06-24 02:55:06.360136140 +0000 @@ -12 +12 @@ - VERSION = "5.0.5" + VERSION = "6.0.0" ````