eco-helpers 2.0.27 → 2.0.28
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 +4 -4
- data/CHANGELOG.md +9 -1
- data/lib/eco/api/common/people/person_entry_attribute_mapper.rb +1 -1
- data/lib/eco/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: b80eb47cf2adf3301ae87dd42a54c1317f864733af3d1cce071d8c326b4309b6
|
4
|
+
data.tar.gz: f72f9feeca70b9b9c159ad9efc48c379104c3e6ddde433b571b65f08ec0b5f07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc7717f2ac13b00d5b91607f45dc1c0965336ab1ff4e7792785f35425f361e05b98d60f727f65117ae0002867c5be401041cd65b9448c01c73d0fd50306d2218
|
7
|
+
data.tar.gz: 2605aadb300be3ae8b48770fab89ccbb39395f8d7239c66d7dd6dda8649c2f27f55b3e9ca912150e19a290e46b359e1909de7c2214277fc4bb6a510e9edb7415
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## [2.0.
|
4
|
+
## [2.0.28] - 2021-07-08
|
5
5
|
|
6
6
|
### Added
|
7
7
|
|
8
|
+
### Changed
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
- `Eco::API::Common::People::PersonEntryAttributeMapper#details_attrs`
|
12
|
+
* What a mess this was doing to the `csv` export :/
|
13
|
+
|
14
|
+
## [2.0.27] - 2021-07-05
|
15
|
+
|
8
16
|
### Changed
|
9
17
|
- Parent class `Eco::API::UseCases::DefaultCases::ToCsvCase` shouldn't know header maps necessary for `Eco::API::UseCases::DefaultCases::ToCsvDetailedCase`
|
10
18
|
* Moved related header maps to `ToCsvDetailedCase`
|
@@ -77,7 +77,7 @@ module Eco
|
|
77
77
|
|
78
78
|
# @return [Array<String>] schema details attributes that are present in the person entry.
|
79
79
|
def details_attrs(data = nil)
|
80
|
-
return @details_attrs unless data || !@
|
80
|
+
return @details_attrs unless data || !@details_attrs
|
81
81
|
@person_parser.target_attrs_details(internal_attrs(data)).tap do |details_attrs|
|
82
82
|
@details_attrs ||= details_attrs
|
83
83
|
end
|
data/lib/eco/version.rb
CHANGED