Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [v3.8.0](https://github.com/faker-ruby/faker/tree/v3.8.0) (2026-04-16)

* Add Lazy loading config by @stefannibrasil and @thdaraujo in https://github.com/faker-ruby/faker/pull/3244

### Enabling lazy load

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.

Lazy loading the generators is disabled by default. To enable it, choose one of the configuration options below:

#### 1 - Set lazy load as a Faker Config

`Faker::Config.lazy_loading = true`

#### 2 - Set lazy load as an environment variable

`FAKER_LAZY_LOAD = 1`

We hope you get to see the improvement by enabling it. Please file a bug report for any issues!

Thanks to @jeremyevans for the mentoring, and to @thdaraujo for pairing and code reviews.

**Full Changelog**: https://github.com/faker-ruby/faker/compare/v3.7.1...v3.8.0

-----------------------

## [v3.7.1](https://github.com/faker-ruby/faker/tree/v3.7.1) (2026-04-14)

Thanks to all contributors!
Expand All @@ -26,6 +52,8 @@ Thanks to all contributors!

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

--------------------------------

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

It's almost Spring time in the Northern hemisphere 🌸
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
faker (3.7.1)
faker (3.8.0)
i18n (>= 1.8.11, < 2)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/faker/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Faker # :nodoc:
VERSION = '3.7.1'
VERSION = '3.8.0'
end