validates_hostname 2.0.0 → 2.0.30

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6651611a1d3ae3384586746c26493e22375bee2c0f113cc8c48c86357b4fc5ba
4
- data.tar.gz: '062741916c49420ea4c6837911d42c8c359d4dbb6407d8a4cf287714132efd2c'
3
+ metadata.gz: bde79c4676282a1321d665e890548a76800f3b7a50a4b96f3b19bc717c9cfbac
4
+ data.tar.gz: d3367994379f139d403b0da4d73e8354bb5514a4eacc94969c2f3df142a91749
5
5
  SHA512:
6
- metadata.gz: bfcb29a9a7c09bfcbbe5cc3d5f77bff624dada6afc390231a319f76e6ff00526544fec53b228ff7ca9f58e26277fbd798872eae594faa9ec6df4eb8d152f6caf
7
- data.tar.gz: f5f59f302cac79e116a5967d81e28debac146122aa4c212cd40eab2f93c6d3904ea684624011b8069c608e7bba05ec277ca0da1d6e3b749a138c244b1c372d50
6
+ metadata.gz: 499f56cbb7324d88bdf2317a2d053223e9bf568cf782a0fe437d29686f1cd16835719390b45eb4996b017f8bc8616332a8cc0cccf49aa42efea47a5ad0e65940
7
+ data.tar.gz: b1549fcb53efc04f93feb156eb0879dbfe74127cf499bb14538bcc137ccd26a18d5da66746e96f1c347bbb39d503a4c58c828a87ae7e4e3cb28f442973245bec
@@ -56,4 +56,4 @@ jobs:
56
56
  git tag "v${new_version}"
57
57
 
58
58
  # Push the commit and the tag, triggering the release workflow
59
- git push origin main --follow-tags
59
+ git push origin main --tags
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Changelog
2
+
3
+ - 2.0.30 [2026-04-17] - fix i18n loading
4
+ - 2.0.3 [2025-10-16] - allow to run with activemodel 8
1
5
  - 2.0.0 [2025-09-22] - new major release - decouple from ActiveRecord and modernize for ActiveModel
2
6
  - 1.0.13 [2022-10-14] - allow for conditional validation, controlled with model method
3
7
  - 1.0.11 [2020-08-18] - fixes for ruby 2.7
data/data/tlds.txt CHANGED
@@ -1,4 +1,4 @@
1
- # Version 2025100600, Last Updated Mon Oct 6 07:07:01 2025 UTC
1
+ # Version 2026041001, Last Updated Sat Apr 11 07:07:01 2026 UTC
2
2
  AAA
3
3
  AARP
4
4
  ABB
@@ -344,7 +344,6 @@ DOWNLOAD
344
344
  DRIVE
345
345
  DTV
346
346
  DUBAI
347
- DUNLOP
348
347
  DUPONT
349
348
  DURBAN
350
349
  DVAG
@@ -487,7 +486,6 @@ GODADDY
487
486
  GOLD
488
487
  GOLDPOINT
489
488
  GOLF
490
- GOO
491
489
  GOODYEAR
492
490
  GOOG
493
491
  GOOGLE
@@ -1251,7 +1249,6 @@ WINDOWS
1251
1249
  WINE
1252
1250
  WINNERS
1253
1251
  WME
1254
- WOLTERSKLUWER
1255
1252
  WOODSIDE
1256
1253
  WORK
1257
1254
  WORKS
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ValidatesHostname
4
- VERSION = '2.0.1'
4
+ VERSION = '2.0.30'
5
5
  end
@@ -4,7 +4,7 @@
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'validates_hostname'
7
- s.version = '2.0.0'
7
+ s.version = '2.0.30'
8
8
  s.required_ruby_version = '>= 3.0.0'
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
@@ -18,6 +18,6 @@ Gem::Specification.new do |s|
18
18
  s.licenses = ['MIT']
19
19
  s.summary = 'Checks for valid hostnames'
20
20
 
21
- s.add_dependency('activemodel', ['>= 6.0', '< 8'])
21
+ s.add_dependency('activemodel', ['>= 6.0', '< 9'])
22
22
  s.metadata['rubygems_mfa_required'] = 'true'
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: validates_hostname
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kim Nøgaard
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '6.0'
19
19
  - - "<"
20
20
  - !ruby/object:Gem::Version
21
- version: '8'
21
+ version: '9'
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '6.0'
29
29
  - - "<"
30
30
  - !ruby/object:Gem::Version
31
- version: '8'
31
+ version: '9'
32
32
  description: Extension to ActiveModel for validating hostnames
33
33
  email: jasen@jasen.dk
34
34
  executables: []
@@ -51,11 +51,11 @@ files:
51
51
  - LICENSE
52
52
  - README.md
53
53
  - Rakefile
54
- - config/locales/de.yaml
55
- - config/locales/en.yaml
56
- - config/locales/es.yaml
57
- - config/locales/fr.yaml
58
- - config/locales/zh.yaml
54
+ - config/locales/de.yml
55
+ - config/locales/en.yml
56
+ - config/locales/es.yml
57
+ - config/locales/fr.yml
58
+ - config/locales/zh.yml
59
59
  - data/tlds.txt
60
60
  - lib/validates_hostname.rb
61
61
  - lib/validates_hostname/version.rb
File without changes
File without changes
File without changes
File without changes
File without changes