Skip to content

Commit 2258715

Browse files
Bump faker to v3.6.0 (#3193)
1 parent 3e92702 commit 2258715

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
# Changelog
22

3+
## [v3.6.0](https://github.com/faker-ruby/faker/tree/v3.6.0) (2026-01-21)
4+
5+
First release of the new year!
6+
7+
This version comes with some performance improvements (speeds faker load time by 17%!) and removal of deprecated generators.
8+
9+
It also drops support to Ruby's EOL `3.0`. The minimum supported Ruby version is `3.1`.
10+
11+
### Drops support for Ruby 3.0
12+
13+
* Drop support for Ruby EOL 3.0 by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3167
14+
15+
### Removes deprecated generators
16+
17+
* `Faker::Twitter` and `Faker::BossaNova` have been removed. Please use the new generators `Faker::X` and `Faker::Music::BossaNova` and check the new docs for more details in https://github.com/faker-ruby/faker/pull/3190
18+
19+
### Improvements and bug fixes
20+
21+
* Autoload OpenSSL by @stefannibrasil and @thdaraujo in https://github.com/faker-ruby/faker/pull/3188 - this speeds faker load time by 17%!
22+
* Fix typos in README.md by @CarlosCalgaro in https://github.com/faker-ruby/faker/pull/3156
23+
* fix: badly anchored regexes by @thdaraujo in https://github.com/faker-ruby/faker/pull/3181
24+
* Benchmark revamp + run benchmark as part of CI by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3176
25+
* Add reformat locales rake task by @thdaraujo in https://github.com/faker-ruby/faker/pull/3061
26+
* Add option to trigger GH workflows manually by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3187
27+
28+
### Update development dependencies
29+
30+
* Bump bundler version by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3165
31+
* Add GitHub actions to dependabot workflow by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3168
32+
* Bump pry from 0.15.2 to 0.16.0 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3175
33+
* Bump i18n from 1.14.7 to 1.14.8 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3174
34+
* Bump yard from 0.9.37 to 0.9.38 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3173
35+
* Bump actions/checkout from 3 to 6 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3170
36+
* Bump test-unit from 3.7.1 to 3.7.7 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3172
37+
* Bump github/codeql-action from 2 to 4 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3169
38+
* Bump rubocop from 1.81.7 to 1.82.1 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3171
39+
* Bump minitest from 5.26.1 to 5.27.0 by @dependabot[bot] in https://github.com/faker-ruby/faker/pull/3177
40+
* Bump 'rdoc' dependency, handle 'erb' version constraint with Ruby 3.1 and improve CI bundle cache by @stefannibrasil in https://github.com/faker-ruby/faker/pull/3185
41+
42+
### New Contributors
43+
* @CarlosCalgaro made their first contribution in https://github.com/faker-ruby/faker/pull/3156
44+
45+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.5.3...v3.6.0
46+
47+
---------------------------------
48+
349
## [v3.5.3](https://github.com/faker-ruby/faker/tree/v3.5.3) (2025-12-02)
450

551
Wishing you a cozy and calm Holiday season ☃️

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
faker (3.5.3)
4+
faker (3.6.0)
55
i18n (>= 1.8.11, < 2)
66

77
GEM

lib/faker/version.rb

Lines changed: 1 addition & 1 deletion
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.5.3'
4+
VERSION = '3.6.0'
55
end

0 commit comments

Comments
 (0)