pg_eventstore 1.13.0 → 1.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8ddfb0310abc9f9b78b20c0f8c6466ad2ae585ce66fd7ecae7a94bd6fe179a6
|
4
|
+
data.tar.gz: 2e06fa6f70db70b61f867d33a02eb8c13b50937f6c5afc7cf29f670f8759a9af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f31f6c07073da1a1f460cf65ec55056e1bc7ab28c72f69361cf2c77219ea529324eba85aebbd94cffecbcf3d0354c73b43ca9c3441a7dae39fbc91df8bce792f
|
7
|
+
data.tar.gz: 8b60ce11b14e5832d53f732690043c55662d5007a919d7a734199a55b4f07be7f1faa1ee13163dda12cac4e7772d6f7a12d57966a07ea021dd00b6cfee80a549
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
## [1.13.1]
|
4
|
+
|
5
|
+
- Do not modify public methods arguments
|
6
|
+
|
3
7
|
## [1.13.0]
|
4
8
|
|
5
9
|
- Introduce automatic subscriptions recovery from connection errors. This way if a subscription process loses the connection to the database - it will be trying to reconnect until the connection is restored.
|
@@ -82,7 +82,7 @@ module PgEventstore
|
|
82
82
|
# @return [Array<String>]
|
83
83
|
def extract_event_types_filter(options)
|
84
84
|
options in { filter: { event_types: Array => event_types } }
|
85
|
-
event_types&.select
|
85
|
+
event_types = event_types&.select do
|
86
86
|
_1.is_a?(String)
|
87
87
|
end
|
88
88
|
event_types || []
|
@@ -13,7 +13,7 @@ module PgEventstore
|
|
13
13
|
# @return [Array<String>]
|
14
14
|
def extract_event_types_filter(options)
|
15
15
|
options in { filter: { event_types: Array => event_types } }
|
16
|
-
event_types&.select
|
16
|
+
event_types = event_types&.select do
|
17
17
|
_1.is_a?(String)
|
18
18
|
end
|
19
19
|
event_types || []
|