event_store_client 1.0.13 → 1.0.14

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57143fadf4edbe242994d58b20ee1906472888433d59a61b22119f748d4fd94f
4
- data.tar.gz: 43761489120aa019bb542f090a32926594c37229e46d7d5add8ac8db64819604
3
+ metadata.gz: 7da2b7bfb5455d011c17277a246f91231b07f15e3f9f26e8eaf2ef9463766923
4
+ data.tar.gz: 6b51fe26c54af786c356498d92e32d8cfcd285e88bc07834a3d5435ad8085e34
5
5
  SHA512:
6
- metadata.gz: 84672b1909682062f70885ada88894ec259e554fad518be53b17460ac118a748f02f30f3ea9c5c4dab36969cd2309f009b3f367b480dcb800852af5f58c4aeec
7
- data.tar.gz: c6f2bc12b9aa55a84d4788c50c76f470ec1504ccef4a1721a5862f4978ffd0c0820df05a3fbe878d6abb1c5085153a7c01b5fb4eddbfafde3d0c823485904c16
6
+ metadata.gz: fe14bb406356e188524047376771c3a65bcea7d2d52015688fe331d891bc4e14e1bdecc5b0640189d317688f52ee77b47e601df89a9c06954231bbde9d4e376e
7
+ data.tar.gz: 2722c3ee42665207dc28811e0bdd8351a17e8f51c1b025f9b3620d8edeb5a14a0675fe7a77c37f778d41c2ee04de5c8ed1d0450c8003e17f2501998e74652680
@@ -9,6 +9,8 @@ module EventStoreClient
9
9
  stats = options[:stats] || true
10
10
  start = options[:start] || 0
11
11
  retries = options[:retries] || 5
12
+ max_checkpoint_count = options[:max_checkpoint_count] || 0
13
+ min_checkpoint_count = options[:min_checkpoint_count] || 0
12
14
 
13
15
  connection.call(
14
16
  :put,
@@ -17,6 +19,8 @@ module EventStoreClient
17
19
  extraStatistics: stats,
18
20
  startFrom: start,
19
21
  maxRetryCount: retries,
22
+ maxCheckPointCount: max_checkpoint_count,
23
+ minCheckPointCount: min_checkpoint_count,
20
24
  resolveLinkTos: true
21
25
  },
22
26
  headers: {
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EventStoreClient
4
- VERSION = '1.0.13'
4
+ VERSION = '1.0.14'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: event_store_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.13
4
+ version: 1.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sebastian Wilgosz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-27 00:00:00.000000000 Z
11
+ date: 2021-05-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-configurable
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
244
  - !ruby/object:Gem::Version
245
245
  version: '0'
246
246
  requirements: []
247
- rubygems_version: 3.0.6
247
+ rubygems_version: 3.0.4
248
248
  signing_key:
249
249
  specification_version: 4
250
250
  summary: Ruby integration for https://eventstore.org