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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0f1f57798bdd12f9abe18fb1addd4d6ed4126bd9dd6511f85f65db979a8f09f
4
- data.tar.gz: 11c90330d5e8d3aa1135acd2ec8b830ccdc84bfecfdab608a5104e73cc5cf46f
3
+ metadata.gz: 78d4c5b5bfa5fdebf9bf09a55173557109e4e55ca1fdd6458a065157d5d3a380
4
+ data.tar.gz: cdd36c405854936c9281c0c181194c12765956d36b2ff91a20520f308c4a1a71
5
5
  SHA512:
6
- metadata.gz: cc7aefa18cbf98cb6cf85de656e2b61bbc4c9ef42ba40f381113b3c7ec22be420ea04fa8cc8d7ae1ed30871bc95ce8a14117ae6d600a97b78c16857b2bf05fd2
7
- data.tar.gz: 3f82d2eda0d9758364947ae6642f1d92b0db82589884a83a42f3ac08ae30cd59b85c0b60dc1b712595e2950cc97e8c1adb266445cdaea54725b195bd3ec17d1a
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(*args)
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(*args)
68
+ british_driving_licence(*)
69
69
  end
70
70
  end
71
71
 
data/lib/faker/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Faker # :nodoc:
4
- VERSION = '3.6.1'
4
+ VERSION = '3.7.1'
5
5
  end
@@ -278,8 +278,6 @@ class PositionalGenerator
278
278
  # [2]
279
279
  # ]
280
280
  def build_stack(graph)
281
- require 'set'
282
-
283
281
  terminals = graph.filter_map { |(from, to)| to.nil? && from }
284
282
  stack = [terminals]
285
283
  seen = Set.new(terminals)
@@ -139,7 +139,6 @@ en:
139
139
  - The Proper Study
140
140
  - Quo Vadis
141
141
  - Recalled to Life
142
- - Recalled to Life
143
142
  - Ring of Bright Water
144
143
  - The Road Less Traveled
145
144
  - A Scanner Darkly
@@ -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.6.1
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.1'
625
+ version: '3.2'
626
626
  required_rubygems_version: !ruby/object:Gem::Requirement
627
627
  requirements:
628
628
  - - ">="