docs: fix plugin reference links in Application Properties#15606
Merged
jamesfredley merged 1 commit into7.0.xfrom Apr 26, 2026
Merged
docs: fix plugin reference links in Application Properties#15606jamesfredley merged 1 commit into7.0.xfrom
jamesfredley merged 1 commit into7.0.xfrom
Conversation
Update the Spring Security and Asset Pipeline reference links rendered at the bottom of the Application Properties page so they point at the sections that exist in the upstream documentation: - Spring Security: combined guide moved to /snapshot/guide/index.html with anchor #configuration-properties (was 404 at /snapshot/core-plugin/ guide/index.html#_configuration_properties). - Asset Pipeline: deep-link to the #configuration-properties section instead of the page root. Assisted-by: claude-code:claude-opus-4
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the dynamically generated “Plugin References” links on the Application Properties reference page so they point to the correct upstream documentation anchors (fixing 404s / non-anchored landings).
Changes:
- Update Spring Security Core plugin reference URL to the new combined guide path and correct
#configuration-propertiesanchor. - Update Asset Pipeline plugin reference URL to deep-link to
#configuration-properties.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Fix the two broken plugin reference links rendered at the bottom of the Application Properties reference page, under "Plugin References". Both links currently 404 / land on a page without the expected anchor.
These links are emitted dynamically by
generateConfigReferenceingrails-doc/build.gradle(added in #15426). This PR updates the twowriter.writeLinecalls only - no other behavior change.Spring Security Core
https://apache.github.io/grails-spring-security/snapshot/core-plugin/guide/index.html#_configuration_properties(404 - the per-plugincore-plugin/path no longer exists)https://apache.github.io/grails-spring-security/snapshot/guide/index.html#configuration-properties(combined Spring Security plugin reference, section 4.22)Asset Pipeline
https://wondrify.github.io/asset-pipeline/(lands at the top of the guide)https://wondrify.github.io/asset-pipeline/#configuration-properties(deep-links to the Configuration Properties section)I verified both anchors exist in the rendered upstream HTML.
Contributor Checklist
Issue and Scope
7.0.x(patch branch, doc-only fix - no API or behavior change).Code Quality
Licensing and Attribution
grails-doc/build.gradleis unchanged.Documentation