faker 3.6.1 → 3.7.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/CHANGELOG.md +26 -0
- data/lib/faker/default/driving_licence.rb +2 -2
- data/lib/faker/version.rb +1 -1
- data/lib/helpers/positional_generator.rb +0 -2
- data/lib/locales/en/book.yml +0 -1
- data/lib/locales/en/football.yml +9 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 78d4c5b5bfa5fdebf9bf09a55173557109e4e55ca1fdd6458a065157d5d3a380
|
|
4
|
+
data.tar.gz: cdd36c405854936c9281c0c181194c12765956d36b2ff91a20520f308c4a1a71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c09170d534ec923fd18fca0c4d21e6f1c76c85f9fe83b7d98b3e8695263c3f446ff6f0576e52b0f99b7ac75381b2c7585b80b9a29d9bb29200465267fbfe7337
|
|
7
|
+
data.tar.gz: e2cdc970656cc8abddc2bacf5219262be2fd4ae4a22dcaaf3279028fb7d67fa0f4b5db149f63ca72337e4022a50a51c38074960a390beb69ec05cf62860cc2e2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v3.7.1](https://github.com/faker-ruby/faker/tree/v3.7.1) (2026-04-14)
|
|
4
|
+
|
|
5
|
+
Thanks to all contributors!
|
|
6
|
+
|
|
7
|
+
### Drops support for Ruby 3.1
|
|
8
|
+
|
|
9
|
+
* Drop support for Ruby EOL 3.1 by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3240
|
|
10
|
+
|
|
11
|
+
### What's changed
|
|
12
|
+
|
|
13
|
+
* Remove json_schema and public-suffix versions constraint by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3224
|
|
14
|
+
* Added additional football teams by @John222 in https://github.com/faker-ruby/faker/pull/3231
|
|
15
|
+
* Remove duplicate 'Recalled to Life' book title by @gkrimer in https://github.com/faker-ruby/faker/pull/3238
|
|
16
|
+
|
|
17
|
+
### Update development dependencies
|
|
18
|
+
|
|
19
|
+
* Bump yard from 0.9.38 to 0.9.40 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3237
|
|
20
|
+
* Bump timecop from 0.9.10 to 0.9.11 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3236
|
|
21
|
+
* Bump rubocop from 1.85.1 to 1.86.1 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3235
|
|
22
|
+
|
|
23
|
+
### New Contributors
|
|
24
|
+
* @John222 made their first contribution in https://github.com/faker-ruby/faker/pull/3231
|
|
25
|
+
* @gkrimer made their first contribution in https://github.com/faker-ruby/faker/pull/3238
|
|
26
|
+
|
|
27
|
+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.6.1...v3.7.1
|
|
28
|
+
|
|
3
29
|
## [v3.6.1](https://github.com/faker-ruby/faker/tree/v3.6.1) (2026-03-04)
|
|
4
30
|
|
|
5
31
|
It's almost Spring time in the Northern hemisphere 🌸
|
|
@@ -61,11 +61,11 @@ module Faker
|
|
|
61
61
|
# Faker::DrivingLicence.uk_driving_licence #=> "70702548"
|
|
62
62
|
#
|
|
63
63
|
# @faker.version 1.9.2
|
|
64
|
-
def uk_driving_licence(*
|
|
64
|
+
def uk_driving_licence(*)
|
|
65
65
|
if Faker::Config.random.rand < NI_CHANCE
|
|
66
66
|
northern_irish_driving_licence
|
|
67
67
|
else
|
|
68
|
-
british_driving_licence(*
|
|
68
|
+
british_driving_licence(*)
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
data/lib/faker/version.rb
CHANGED
data/lib/locales/en/book.yml
CHANGED
data/lib/locales/en/football.yml
CHANGED
|
@@ -23,6 +23,15 @@ en:
|
|
|
23
23
|
- PSV Eindhoven
|
|
24
24
|
- LA Galaxy
|
|
25
25
|
- Paris Saint Germain
|
|
26
|
+
- FC Porto
|
|
27
|
+
- Manchester City
|
|
28
|
+
- Sporting
|
|
29
|
+
- Atalanta
|
|
30
|
+
- Villareal
|
|
31
|
+
- Lyon
|
|
32
|
+
- AS Monaco
|
|
33
|
+
- Bayer 04 Leverkusen
|
|
34
|
+
- Aston Villa
|
|
26
35
|
players:
|
|
27
36
|
- Lionel Messi
|
|
28
37
|
- Gerard Pique
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: faker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Benjamin Curtis
|
|
@@ -622,7 +622,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
622
622
|
requirements:
|
|
623
623
|
- - ">="
|
|
624
624
|
- !ruby/object:Gem::Version
|
|
625
|
-
version: '3.
|
|
625
|
+
version: '3.2'
|
|
626
626
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
627
627
|
requirements:
|
|
628
628
|
- - ">="
|