al_folio_upgrade 1.0.1 → 1.0.2
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 +4 -0
- data/README.md +12 -3
- data/lib/al_folio_upgrade/cli.rb +8 -0
- data/lib/al_folio_upgrade/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: 311c5c378bf84cb75344dad471da0f2638381cf02bbc3fa0df7efb2334d4d2dc
|
|
4
|
+
data.tar.gz: 3a105b308d61ea92afee0d7c2cc3c5dfe98a0a1038bb2bf1aa58f3c45eb30ce0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ece6ab6b41a0afcf7d92a85e73407708451df2e3914031a39518d11c13e45df25625b5bc47fbc93a609920efb7ff9dd543adc29994b2a932770d844c60a80a96
|
|
7
|
+
data.tar.gz: b90842fe6f7b7a6ef987a725cf06c7df0885991407b832cf0fbbcd9a8df4ebd5ee3a8b62df69257b2ce110609fb333fae264cda54fb1c078de010866c49c6979
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.2 - 2026-05-24
|
|
4
|
+
|
|
5
|
+
- Expanded upgrade audit coverage for legacy local plugins and runtime assets that are now owned by v1 feature gems.
|
|
6
|
+
|
|
3
7
|
## 1.0.1 - 2026-02-17
|
|
4
8
|
|
|
5
9
|
- Added ownership-aware checks for plugin-owned local runtime assets (icons/search paths).
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# al-folio-upgrade
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`al_folio_upgrade` is the upgrade CLI for `al-folio` v1.x.
|
|
4
4
|
|
|
5
5
|
## Commands
|
|
6
6
|
|
|
@@ -15,5 +15,14 @@ Upgrade CLI for al-folio v1.x.
|
|
|
15
15
|
- Legacy Bootstrap/jQuery markers
|
|
16
16
|
- Distill remote-loader policy
|
|
17
17
|
- Local override drift when `theme: al_folio_core` is enabled
|
|
18
|
-
- Plugin-owned local asset drift (for example search
|
|
18
|
+
- Plugin-owned local asset drift (for example copied search, icon, Distill, citation, and external-post runtime files)
|
|
19
19
|
- Migration manifest availability from `al_folio_core`
|
|
20
|
+
|
|
21
|
+
## Ecosystem context
|
|
22
|
+
|
|
23
|
+
- Starter execution/docs live in `al-folio`.
|
|
24
|
+
- Upgrade policy/audit behavior is owned by this plugin.
|
|
25
|
+
|
|
26
|
+
## Contributing
|
|
27
|
+
|
|
28
|
+
Audit/apply/report logic updates should be proposed in this repository.
|
data/lib/al_folio_upgrade/cli.rb
CHANGED
|
@@ -60,6 +60,14 @@ module AlFolioUpgrade
|
|
|
60
60
|
].freeze
|
|
61
61
|
|
|
62
62
|
PLUGIN_OWNED_LOCAL_PATHS = {
|
|
63
|
+
"_plugins/external-posts.rb" => "al_ext_posts",
|
|
64
|
+
"_plugins/google-scholar-citations.rb" => "al_citations",
|
|
65
|
+
"_plugins/inspirehep-citations.rb" => "al_citations",
|
|
66
|
+
"_plugins/hide-custom-bibtex.rb" => "al_folio_core",
|
|
67
|
+
"_plugins/details.rb" => "al_folio_core",
|
|
68
|
+
"_plugins/file-exists.rb" => "al_folio_core",
|
|
69
|
+
"_plugins/remove-accents.rb" => "al_folio_core",
|
|
70
|
+
"assets/js/distillpub/**/*" => "al_folio_distill",
|
|
63
71
|
"assets/js/search/**/*" => "al_search",
|
|
64
72
|
"assets/webfonts/**/*" => "al_icons",
|
|
65
73
|
"assets/fonts/academicons.*" => "al_icons",
|