graphiti 1.5.1 → 1.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/graphiti/adapters/abstract.rb +1 -1
- data/lib/graphiti/adapters/active_record.rb +2 -0
- data/lib/graphiti/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c25ef983bb86cc817c3356590667bcfe2065ea195b6004a0803f9ce771c4288
|
4
|
+
data.tar.gz: 9215c114b5d98645104bb56fb8b554ce7cb9def5ce4902deca3a3680cfec7c83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2cebcf9995f633281f34a511e86ea11eb0bf72423839fbe0f0796ab65ad3e3d67e29880c55987cb2f3e0d8027e19a0b0ea070cd518a29320b3031bca51a5c50
|
7
|
+
data.tar.gz: 579ed54aa1cc674244431c2e52f1f24e7e832923de473329c7f0286c9be2982185d60357743f248f8ac831414a7151138a0eb85106af05441788a88628ca6839
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
graphiti changelog
|
2
2
|
|
3
|
+
## [1.5.2](https://github.com/graphiti-api/graphiti/compare/v1.5.1...v1.5.2) (2024-03-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Bug Fixes
|
7
|
+
|
8
|
+
* Enum should allow the conventionally case-sensitive operators ([#434](https://github.com/graphiti-api/graphiti/issues/434)) ([56d34fd](https://github.com/graphiti-api/graphiti/commit/56d34fd4801bc32c13d64aca880b82b717b2ab81))
|
9
|
+
|
3
10
|
## [1.5.1](https://github.com/graphiti-api/graphiti/compare/v1.5.0...v1.5.1) (2024-03-18)
|
4
11
|
|
5
12
|
|
@@ -26,6 +26,7 @@ module Graphiti
|
|
26
26
|
alias_method :filter_boolean_eq, :filter_eq
|
27
27
|
alias_method :filter_uuid_eq, :filter_eq
|
28
28
|
alias_method :filter_enum_eq, :filter_eq
|
29
|
+
alias_method :filter_enum_eql, :filter_eq
|
29
30
|
|
30
31
|
def filter_not_eq(scope, attribute, value)
|
31
32
|
scope.where.not(attribute => value)
|
@@ -37,6 +38,7 @@ module Graphiti
|
|
37
38
|
alias_method :filter_boolean_not_eq, :filter_not_eq
|
38
39
|
alias_method :filter_uuid_not_eq, :filter_not_eq
|
39
40
|
alias_method :filter_enum_not_eq, :filter_not_eq
|
41
|
+
alias_method :filter_enum_not_eql, :filter_not_eq
|
40
42
|
|
41
43
|
def filter_string_eq(scope, attribute, value, is_not: false)
|
42
44
|
column = column_for(scope, attribute)
|
data/lib/graphiti/version.rb
CHANGED