You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GitLens uses legacy project routes for GitLab:
- `${projectURL}/branches`
- `${projectURL}/tree/${branch}`
- `${projectURL}/commit/${sha}`
- `${projectURL}/compare/${base}${notation}${compare}`
- `${projectURL}/blob/${ref}/${fileName}`
These routes are all deprecated and scheduled for removal. See these references:
- https://docs.gitlab.com/ee/development/routing.html#project-routes
- https://gitlab.com/gitlab-org/gitlab/-/issues/118849
- https://gitlab.com/gitlab-org/gitlab/-/issues/28848
This change replaces them with the following scoped routes:
- `${projectURL}/-/branches`
- `${projectURL}/-/tree/${branch}`
- `${projectURL}/-/commit/${sha}`
- `${projectURL}/-/compare/${base}${notation}${compare}`
- `${projectURL}/-/blob/${ref}/${fileName}`
GitLens uses legacy project routes for GitLab:
${projectURL}/branches
${projectURL}/tree/${branch}
${projectURL}/commit/${sha}
${projectURL}/compare/${base}${notation}${compare}
${projectURL}/blob/${ref}/${fileName}
This routes are all deprecated and scheduled for removal. See these references:
They should be replaced with the following:
${projectURL}/-/branches
${projectURL}/-/tree/${branch}
${projectURL}/-/commit/${sha}
${projectURL}/-/compare/${base}${notation}${compare}
${projectURL}/-/blob/${ref}/${fileName}
Version info:
v12.0.7
The text was updated successfully, but these errors were encountered: