Content Collections: remove data
and body
from custom slug()
#5921
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.
Changes
data
andbody
from the customslug()
configuration optionWhy remove this?
Allowing access to the parsed Zod schema introduces a bottleneck when looking up entries by slug. Today, this function is slower than we'd like it to be, since it needs to look through all items in a collection to give you the right one. By allowing access to the data object, it is more difficult (though not impossible) to make this function more performant in a non-breaking way.
We recognize the usefulness of looking up entries by custom
data
attributes. However, for the most performant and futureproof story in Astro 2.0, removing this to revisit in a future minor feels like the best path.Testing
Update tests expecting
data
Docs
TODO: docs updates