stable

Clone or download

Read-only

Rename full_url column/variable

In order to be consistent with what have been done with gitlab_repository_id, we rename the variable full_url to gitlab_repository_url. This produces consistent variables naming and will ease reading. No functional changes. Furthermore, it updates a previous forgeupgrade that conflicts with another one (index is put on a column that has been renamed). Part of story #17182: reference tuleap artifacts in gitlab merge requests Change-Id: I462320d7662780441ec35985fdbd0664c768e0a4

Modified Files

Name
M plugins/git/scripts/repositories/src/components/GitRepository.test.js +5 −5 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitRepository.vue +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitlabModal/CreateGitlabLinkModal/ListRepositoriesModal.test.js +5 −2 Go to diff View file
M plugins/git/scripts/repositories/src/components/GitlabModal/CreateGitlabLinkModal/ListRepositoriesModal.vue +2 −2 Go to diff View file
M plugins/git/scripts/repositories/src/gitlab/gitlab-checker.test.ts +3 −3 Go to diff View file
M plugins/git/scripts/repositories/src/gitlab/gitlab-checker.ts +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/gitlab/gitlab-repository-formatter.test.ts +4 −4 Go to diff View file
M plugins/git/scripts/repositories/src/gitlab/gitlab-repository-formatter.ts +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/getters.test.js +1 −1 Go to diff View file
M plugins/git/scripts/repositories/src/store/mutations.test.js +5 −5 Go to diff View file
M plugins/git/scripts/repositories/src/type.ts +2 −2 Go to diff View file
M plugins/gitlab/db/install.sql +2 −2 Go to diff View file
M plugins/gitlab/db/mysql/2021/202101151907_add_commit_id_index.php +1 −1 Go to diff View file
A plugins/gitlab/db/mysql/2021/202101181830_rename_full_url.php +47 −0 Go to diff View file
M plugins/gitlab/include/REST/v1/BotApiTokenUpdater.php +1 −1 Go to diff View file
M plugins/gitlab/include/REST/v1/ConcealedBotApiTokenPatchRepresentation.php +7 −4 Go to diff View file
M plugins/gitlab/include/REST/v1/GitlabProjectResource.php +1 −1 Go to diff View file
M plugins/gitlab/include/REST/v1/GitlabRepositoryBotApiTokenPatchRepresentation.php +1 −1 Go to diff View file
M plugins/gitlab/include/REST/v1/GitlabRepositoryRepresentation.php +8 −8 Go to diff View file
M plugins/gitlab/include/REST/v1/GitlabRepositoryResource.php +3 −3 Go to diff View file
M plugins/gitlab/include/Reference/Commit/GitlabCommitReference.php +1 −1 Go to diff View file
M plugins/gitlab/include/Reference/MergeRequest/GitlabMergeRequestReference.php +1 −1 Go to diff View file
M plugins/gitlab/include/Repository/GitlabRepository.php +11 −11 Go to diff View file
M plugins/gitlab/include/Repository/GitlabRepositoryDao.php +8 −8 Go to diff View file
M plugins/gitlab/include/Repository/GitlabRepositoryFactory.php +2 −2 Go to diff View file
M plugins/gitlab/tests/rest/DatabaseInitialization.php +1 −1 Go to diff View file
M plugins/gitlab/tests/rest/Gitlab/ProjectTest.php +1 −1 Go to diff View file
M plugins/gitlab/tests/unit/Repository/GitlabRepositoryFactoryTest.php +2 −2 Go to diff View file