cocina_display 2.7.0 → 2.8.0
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/config/marc_countries.yml +1 -1
- data/lib/cocina_display/concerns/structural.rb +2 -2
- data/lib/cocina_display/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: 3df5706e3f8104dd1cc652c4ee19ea21236218847f9bf2e32ab5491d65a3dad2
|
|
4
|
+
data.tar.gz: 86c08d24675be82192a0dd0785a1e8b81d4fd39e9204ee9cedf73692d0e6c6f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9458cdb077aa6afc8e8296d7a4a5b645be98547c627fbef38912d6ff9ca3e640ee32ed80bb57c438d6b6adaf1a1ece6a09a22b62cfbfda8bcef8a1063eaddf1c
|
|
7
|
+
data.tar.gz: 00fcafcf934cfeafd181884b6577a22de4422b9d9f3c1627476513911fe9a8e4fd9120a2a4f26b81ceada07c1e481985b1953745034b11e7c96e4b78f906dd02
|
data/config/marc_countries.yml
CHANGED
|
@@ -218,7 +218,7 @@ nl: "New Caledonia"
|
|
|
218
218
|
nm: "Northern Mariana Islands" # discontinued
|
|
219
219
|
nmu: "New Mexico"
|
|
220
220
|
nn: "Vanuatu"
|
|
221
|
-
no: "Norway"
|
|
221
|
+
"no": "Norway" # "no" is a reserved word in YAML, so it must be quoted
|
|
222
222
|
np: "Nepal"
|
|
223
223
|
nq: "Nicaragua"
|
|
224
224
|
nr: "Nigeria"
|
|
@@ -22,8 +22,8 @@ module CocinaDisplay
|
|
|
22
22
|
# Traverses nested FileSet structure to return a flattened array.
|
|
23
23
|
# Optionally filter by filename or MIME type regex, or by role.
|
|
24
24
|
# Filters are combined with AND logic (all must match).
|
|
25
|
-
# @param filename [
|
|
26
|
-
# @param mime_type [
|
|
25
|
+
# @param filename [Regexp, nil] Regular expression to match against filenames.
|
|
26
|
+
# @param mime_type [Regexp, nil] Regular expression to match against MIME types.
|
|
27
27
|
# @param use [String, nil] Usage type to match against (e.g., "thumbnail").
|
|
28
28
|
# @return [Array<CocinaDisplay::Structural::File>]
|
|
29
29
|
# @example
|