All Versions
19
Latest Version
Avg Release Cycle
72 days
Latest Release
769 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v1.1.0 Changes
November 02, 2017 -
v1.0.4 Changes
October 12, 2017- ๐
Fixed
: Fix arity bug inrespond_to?
#3
- ๐
-
v1.0.3 Changes
September 18, 2017- ๐
Fixed
: auto syncing performance up to 30x times compared to v1.0.2. RubyForwardable
withdef_delegators
is too slow. - ๐
Fixed
: GraphQL performance up to 3x times by disabling auto syncing in favor of syncing with graphql-rubylazy_resolve
. Added
: more benchmarks.
- ๐
-
v1.0.2 Changes
September 14, 2017Added
:BatchLoader#inspect
method because of Pry, which swallows errors.
-
v1.0.1 Changes
September 03, 2017- ๐
Fixed
: loadingBatchLoader
by requiringSet
.
- ๐
-
v1.0.0 Changes
August 21, 2017- ๐
Removed
:BatchLoader.sync!
andBatchLoader#sync
. Now syncing is done implicitly when you call any method on the lazy object.
def load_user(user_id) BatchLoader.for(user_id).batch { ... } end
- ๐
-
v0.3.0 Changes
August 03, 2017Added
:BatchLoader::Executor.clear_current
to clear cache manually.- โ
Added
: tests and description how to use with GraphQL.
-
v0.2.0 Changes
August 02, 2017Added
:cache: false
option to disable caching for resolved values.Added
:BatchLoader::Middleware
to clear cache between Rack requests.- โ
Added
: more docs and tests.
-
v0.1.0 Changes
July 31, 2017Added
: initial functional version.