Skip to content

Commit e48d35f

Browse files
bump faker to v3.8.0 (#3245)
1 parent 7193b32 commit e48d35f

3 files changed

Lines changed: 30 additions & 2 deletions

File tree

CHANGELOG.md

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

3+
## [v3.8.0](https://github.com/faker-ruby/faker/tree/v3.8.0) (2026-04-16)
4+
5+
* Add Lazy loading config by @stefannibrasil and @thdaraujo in https://github.com/faker-ruby/faker/pull/3244
6+
7+
### Enabling lazy load
8+
9+
This version introduces lazy loading. It means users will only pay for what they use. Faker [loads 2x faster](https://github.com/faker-ruby/faker/blob/main/experiments/lazy_load.md) when it's enabled.
10+
11+
Lazy loading the generators is disabled by default. To enable it, choose one of the configuration options below:
12+
13+
#### 1 - Set lazy load as a Faker Config
14+
15+
`Faker::Config.lazy_loading = true`
16+
17+
#### 2 - Set lazy load as an environment variable
18+
19+
`FAKER_LAZY_LOAD = 1`
20+
21+
We hope you get to see the improvement by enabling it. Please file a bug report for any issues!
22+
23+
Thanks to @jeremyevans for the mentoring, and to @thdaraujo for pairing and code reviews.
24+
25+
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.7.1...v3.8.0
26+
27+
-----------------------
28+
329
## [v3.7.1](https://github.com/faker-ruby/faker/tree/v3.7.1) (2026-04-14)
430

531
Thanks to all contributors!
@@ -26,6 +52,8 @@ Thanks to all contributors!
2652

2753
**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.6.1...v3.7.1
2854

55+
--------------------------------
56+
2957
## [v3.6.1](https://github.com/faker-ruby/faker/tree/v3.6.1) (2026-03-04)
3058

3159
It's almost Spring time in the Northern hemisphere 🌸

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.7.1)
4+
faker (3.8.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.7.1'
4+
VERSION = '3.8.0'
55
end

0 commit comments

Comments
 (0)