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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd88cb1402a827eabf6aa0071e3acdc3d5fcca076ded19ce25f1e5429cec47c9
4
- data.tar.gz: 750cf28549ed799b5db297429c150bf6c4d3e2bb960d89b4ac2c751de2657aa1
3
+ metadata.gz: 311c5c378bf84cb75344dad471da0f2638381cf02bbc3fa0df7efb2334d4d2dc
4
+ data.tar.gz: 3a105b308d61ea92afee0d7c2cc3c5dfe98a0a1038bb2bf1aa58f3c45eb30ce0
5
5
  SHA512:
6
- metadata.gz: fce9205106f25d2844fcb7a6088bc5f9679f6535a09456ebfa3bbc987c0cbf5cfce9865335b27a4b3e99b69c53616a248f321efa7504ce9c101c93aeba9c88eb
7
- data.tar.gz: d71f687b9bd95392a617ab21f945d45d32470f3a43336b266b77ae4396ff7d1c641f43ee348c92581eec7f966d6a9af0376c26178051f694be148acc2fb3cf60
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
- # Al-Folio Upgrade
1
+ # al-folio-upgrade
2
2
 
3
- Upgrade CLI for al-folio v1.x.
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/icon runtime files copied into starter paths)
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.
@@ -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",
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AlFolioUpgrade
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: al_folio_upgrade
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - al-folio maintainers