-
Notifications
You must be signed in to change notification settings - Fork 1
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
Routing release #113
Comments
By re-adding
See https://github.com/xp-forge/web?tab=readme-ov-file#internal-redirects |
With the last commit, we can now definitely roll #112 into 4.2.0. |
👉 Decided to release dispatching as separate 4.2.0-RELEASE |
With PR #111 and #112, we have the following options for the next release:
Both into 4.2.0
Merge both pull requests into a feature release. There are theoretical small breaks in the routing PR, e.g. with
/{id}
which previously matched a path containing curly braces and the characters id, and now serves as a placeholder. The deprecatedweb.Routing
would be removed in 5.0.0, which could be released pretty much right after.Dispatch into 4.2.0, routing into 4.3.0
Create a feature release with dispatching and defer routing until the next feature release. This would allow to separate effects of these two features should it be necessary.
Dispatch into 4.2.0, routing into 5.0.0
Create a feature release with dispatching but defer routing until the next major release. This will allow xp-forge/frontend#48 to retain support for 4.X in contrast to the next option. To keep a transition period, the deprecated
web.Routing
would not be removed until 6.0.0.Both into 5.0.0
Due to the small (but existant!) BC breaks roll both as a major release. As above, the deprecated
web.Routing
would not be removed until 6.0.0.The text was updated successfully, but these errors were encountered: