-
Notifications
You must be signed in to change notification settings - Fork 3
Bump Skosmos to v3 #294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
FelixFrizzy
wants to merge
6
commits into
development
Choose a base branch
from
skosmos-v3
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bump Skosmos to v3 #294
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e762059
Bump tmp from 0.2.1 to 0.2.5 in /evoks/theme/static_src
dependabot[bot] d6234be
Merge pull request #290 from kit-data-manager/dependabot/npm_and_yarn…
FelixFrizzy 2eaf360
Bump eazy-logger from 4.0.1 to 4.1.0 in /evoks/theme/static_src
dependabot[bot] 01b65df
Merge pull request #292 from kit-data-manager/development
FelixFrizzy 6fdaedf
Merge pull request #291 from kit-data-manager/dependabot/npm_and_yarn…
FelixFrizzy bfa3124
Update Skosmos version to v3.0 in docker-compose
FelixFrizzy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: kit-data-manager/EVOKS
Length of output: 671
🌐 Web query:
Skosmos v3.0 release breaking changes migration💡 Result:
Skosmos v3.0 (released Dec 10, 2025) — breaking changes & migration checklist
1) Runtime/build prerequisites
2) Configuration (
config.ttl) breaking changesSkosmos 3 is still configured via
config.ttl(copy fromconfig.ttl.dist). [3]Renamed properties (update your
config.ttl):skosmos:uiHoneypotEnabled→skosmos:feedbackHoneypotEnabled[4]skosmos:uiHoneypotTime→skosmos:feedbackHoneypotTime[4](These new names are also reflected in the Skosmos 3 configuration docs.) [3]
3) Plugin configuration breaking changes
Skosmos 3 simplifies plugin enablement:
skosmos:globalPluginson the globalskosmos:Configuration. [5]skosmos:vocabularyPluginson eachskosmos:Vocabulary. [5]Removed/obsolete plugin mechanisms from Skosmos 2 (must be removed from configs):
skosmos:hasParamPluginandskosmos:hasPluginare removed in Skosmos 3. [5]skosmos:useParamPluginand standaloneskosmos:usePluginare dropped; configuration is now only viaskosmos:globalPluginsandskosmos:vocabularyPlugins. [4]4) Translations workflow changed
If you share your current
config.ttl(especially plugin bits), I can point out the exact lines to change for a clean Skosmos 2 → 3.0 migration.🌐 Web query:
Skosmos v3.0 configuration file format changes💡 Result:
Skosmos v3.0 keeps configuration in a single Turtle (RDF) file named
config.ttl, organized as: (1) global configuration + (2) vocabulary-specific configuration (vocabularies are declared as RDF resources in the same file). Global settings are given as properties on an instance ofskosmos:Configuration, and each vocabulary is askosmos:Vocabularyinstance (avoid:Dataset). [1]What did change in the “configuration format / layout” going into Skosmos 3 is mainly the cleanup/overhaul of legacy configuration and customization mechanisms (called out as “Skosmos 3 configuration overhaul” in the 3.0-beta.1 release notes). [2] In particular:
view/*.incTwig-snippets (e.g.,about.inc,footer.inc,left.inc,right.inc) [3] to Skosmos 3’scustom-templates/mechanism, where you drop.twigtemplates into predefined slot directories (and can override built-in templates by copying them fromsrc/view/). [4]config.ttlusing properties likeskosmos:globalPluginsandskosmos:vocabularyPlugins. [1]Sources:
[1] Skosmos wiki: “Configuration” (Skosmos 3,
config.ttl,skosmos:Configuration,skosmos:Vocabulary) (github-wiki-see.page)[2] Skosmos 3.0-beta.1 release notes (“Skosmos 3 configuration overhaul”) (github.com)
[3] Skosmos wiki: “Configuration for Skosmos 2” (
about.inc,footer.inc, etc.) (github.com)[4] Skosmos wiki: “Custom templates” (Skosmos 3
custom-templates/*.twigslots + overrides) (github-wiki-see.page)Citations:
🏁 Script executed:
Repository: kit-data-manager/EVOKS
Length of output: 367
🏁 Script executed:
Repository: kit-data-manager/EVOKS
Length of output: 1366
Update config.ttl for Skosmos v3.0 breaking changes.
The v3.0 dockerfile path is valid, but this major version bump includes breaking changes to
config.ttlthat must be addressed:Property renames (if present in your config files):
skosmos:uiHoneypotEnabled→skosmos:feedbackHoneypotEnabledskosmos:uiHoneypotTime→skosmos:feedbackHoneypotTimePlugin configuration overhaul (if using plugins):
skosmos:hasParamPlugin,skosmos:hasPlugin,skosmos:useParamPlugin,skosmos:usePluginskosmos:globalPlugins(on global Configuration) andskosmos:vocabularyPlugins(per Vocabulary)UI customization (if you've customized the interface):
about.inc,footer.inc, etc.) tocustom-templates/*.twigmechanismReview and update
./skosmos-dev/config.ttland./skosmos-live/config.ttlaccordingly before deploying.Also applies to: 199-200
🤖 Prompt for AI Agents