ecoportal-api-graphql 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -3
- data/lib/ecoportal/api/graphql/fragment.rb +1 -1
- data/lib/ecoportal/api/graphql_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: 7c0e5dcda795491dd4687054d51f9b3888f707f320ed079742c54cbde74464ad
|
4
|
+
data.tar.gz: ab434f8f1f410692b0ac8f4a3cd549293045e17e469b2b09a14c1fbe85123f06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3d127b631c0c567cd7831d5e1cda50f5474e1d4c262716e000aa324045b2fc228452ed2d968b620b9b58c43000b4526af5d2916e525b81af2c12999e23a00bd
|
7
|
+
data.tar.gz: 5c86f610a220829e975bef5ff3e459801247a7cda07368dafc2fc2278b81aed8f2535b187b6ee8682d61bc15bfb23ea84c048dac6df48c219d6f4ccb5fff84bd
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,10 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## [0.1.
|
4
|
+
## [0.1.7] - 2022-09-xx
|
5
5
|
|
6
6
|
### Added
|
7
|
-
|
8
7
|
### Changed
|
9
|
-
|
10
8
|
### Fixed
|
11
9
|
|
12
10
|
### ToDo
|
@@ -16,6 +14,11 @@ All notable changes to this project will be documented in this file.
|
|
16
14
|
- Analyse how to "DSL" currentOrganization.action.activities
|
17
15
|
- review `path` tracking
|
18
16
|
|
17
|
+
## [0.1.6] - 2022-09-19
|
18
|
+
|
19
|
+
### Fixed
|
20
|
+
- Call to **private** method `remove_const` in `Ecoportal::API::GraphQL::Fragment#define`
|
21
|
+
|
19
22
|
## [0.1.5] - 2022-09-19
|
20
23
|
|
21
24
|
### Added
|
@@ -27,7 +27,7 @@ module Ecoportal
|
|
27
27
|
end
|
28
28
|
|
29
29
|
def define(sym, heredoc, namespace: ::Fragment)
|
30
|
-
namespace.remove_const
|
30
|
+
namespace.send(:remove_const, sym) if namespace.const?(sym)
|
31
31
|
client.parse(heredoc).tap do |fragment|
|
32
32
|
namespace.const_set(sym, fragment)
|
33
33
|
::Fragment.const_set(sym, fragment) unless namespace == ::Fragment
|