Skip to content

Commit 46130d9

Browse files
Merge pull request #3017 from faker-ruby/bump-to-v-3.5.1
Bump faker to 3.5.1
2 parents 0aa5963 + 656f96f commit 46130d9

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-2
lines changed

CHANGELOG.md

+57
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
11
# Changelog
22

3+
## [v3.5.1](https://github.com/faker-ruby/faker/tree/v3.5.1) (2024-10-18)
4+
5+
Happy October! 🎃
6+
7+
This version **drops support for Ruby < 3.0**. We only support one EOL Ruby version at a time. Please upgrade to Ruby 3.0 to update to this and future versions of faker-ruby.
8+
9+
Besides that, this version removes deprecated generators, fixes some bugs, and adds a Security Policy.
10+
11+
Thanks to all contributors!
12+
13+
## Breaking Changes
14+
* Drop support for Ruby 2.7 by @tatheerf02 in https://github.com/faker-ruby/faker/pull/3006
15+
* Removes deprecated generators by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3014
16+
17+
The following deprecated generators are being removed. Please use the new generators:
18+
19+
20+
| Deprecated | New |
21+
| -------- | ------- |
22+
| Faker::TvShows::TheFreshPrinceOfBelAir.celebrity | Faker::TvShows::TheFreshPrinceOfBelAir.actor |
23+
| Faker::TvShows::Buffy.celebrity | Faker::TvShows::Buffy.actor |
24+
| Faker::TvShows::DrWho.villian | Faker::TvShows::DrWho.villain |
25+
| Faker::Games::HeroesOfTheStorm.class | Faker::Games::HeroesOfTheStorm.class_name |
26+
| Faker::JapaneseMedia::FmaBrotherhood | Faker::JapaneseMedia::FullmetalAlchemistBrotherhood |
27+
| Faker::Show | Faker::Theater |
28+
| Faker::Australia | Faker::Locations::Australia |
29+
| Faker::IDNumber | Faker::IdNumber |
30+
31+
### Improvements & Bug fixes
32+
* Fix typos by @tagliala in https://github.com/faker-ruby/faker/pull/2982
33+
* Fix benchmark:all_methods task by excluding Faker::Deprecator module from benchmark target by @amatsuda in https://github.com/faker-ruby/faker/pull/2988
34+
* Add Brazilian Portuguese translations for `Faker::Subscription` by @murichristopher in https://github.com/faker-ruby/faker/pull/2960
35+
* Deprecator improvements by @stefannibrasil in https://github.com/faker-ruby/faker/pull/2997
36+
* Faker::Alphanumeric.alphanumeric determinism fix by @admtnnr in https://github.com/faker-ruby/faker/pull/2996
37+
* Remove CodeClimate badges by @tagliala in https://github.com/faker-ruby/faker/pull/3003
38+
* Update Company.logo example url by @dirschn in https://github.com/faker-ruby/faker/pull/3007
39+
* fix(music.band): removes leading whitespace by @JeremasPosta in https://github.com/faker-ruby/faker/pull/3015
40+
* Create SECURITY.md by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3016
41+
42+
### Update local dependencies
43+
* Bump i18n from 1.14.5 to 1.14.6 by @dependabot in https://github.com/faker-ruby/faker/pull/3005
44+
* Bump minitest from 5.24.1 to 5.25.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2991
45+
* Bump rubocop-minitest from 0.35.1 to 0.36.0 by @dependabot in https://github.com/faker-ruby/faker/pull/2999
46+
* Bump yard from 0.9.36 to 0.9.37 by @dependabot in https://github.com/faker-ruby/faker/pull/3000
47+
* Bump rubocop from 1.65.1 to 1.66.1 by @dependabot in https://github.com/faker-ruby/faker/pull/3001
48+
49+
## New Contributors
50+
* @murichristopher made their first contribution in https://github.com/faker-ruby/faker/pull/2960
51+
* @admtnnr made their first contribution in https://github.com/faker-ruby/faker/pull/2996
52+
* @dirschn made their first contribution in https://github.com/faker-ruby/faker/pull/3007
53+
* @tatheerf02 made their first contribution in https://github.com/faker-ruby/faker/pull/3006
54+
* @JeremasPosta made their first contribution in https://github.com/faker-ruby/faker/pull/3015
55+
56+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.4.2...v3.5.1
57+
58+
--------------------------------------
59+
360
## [v3.4.2](https://github.com/faker-ruby/faker/tree/v3.4.2) (2024-07-16)
461

562
Happy July with a new faker-ruby release.

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
faker (3.4.2)
4+
faker (3.5.1)
55
i18n (>= 1.8.11, < 2)
66

77
GEM

lib/faker/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Faker # :nodoc:
4-
VERSION = '3.4.2'
4+
VERSION = '3.5.1'
55
end

0 commit comments

Comments
 (0)