- 04 Jan, 2019 31 commits
-
-
Shinya Maeda authored
-
Shinya Maeda authored
Fix coding style Improve coding style Decouple UPDATE and DELETE operations of asset links Rename links_attributes to assets:links Rename exposed param and updated spec
-
Shinya Maeda authored
Fix spec for mysql unique validation failure
-
Shinya Maeda authored
Releases::Source and Releases::Link are covered by tests
-
Shinya Maeda authored
-
Shinya Maeda authored
- Add Releases::Links model - Expose it in release API - Add integration tests
-
Achilleas Pipinellis authored
Deprecate Auto Deploy's quick start guide Closes #55853 See merge request gitlab-org/gitlab-ce!24096
-
Yorick Peterse authored
Green pipeline for feature freeze PROCESS See merge request gitlab-org/gitlab-ce!23809
-
Yorick Peterse authored
Specific CI indexes to avoid statement timeout. Closes #50763 See merge request gitlab-org/gitlab-ce!23188
-
Kushal Pandya authored
Create shared gl-modal-vuex component and module See merge request gitlab-org/gitlab-ce!24140
-
Kushal Pandya authored
Resolve "Add "Submit feedback" in-product feedback link" Closes #43623 See merge request gitlab-org/gitlab-ce!23547
-
Kamil Trzciński authored
Make RBAC enabled by default for new clusters Closes #53696 See merge request gitlab-org/gitlab-ce!24119
-
Kushal Pandya authored
Made user_popovers_spec more stable See merge request gitlab-org/gitlab-ce!24145
-
Kamil Trzciński authored
Bring back reverted Gold Trial MR (CE backport) See merge request gitlab-org/gitlab-ce!23621
-
Kamil Trzciński authored
Use cheap operation for `Ci::Pipeline#all_merge_requests` Closes #54907 See merge request gitlab-org/gitlab-ce!24115
-
Kamil Trzciński authored
Add a comment on `Ci::Pipeline#git_ref` about merge request ref Closes #54908 See merge request gitlab-org/gitlab-ce!24114
-
Dylan Griffith authored
Many changes were also made to tests that expected this to default to false.
-
Douwe Maan authored
Only validate project visibility when it has changed Closes #55881 See merge request gitlab-org/gitlab-ce!24142
-
Kamil Trzciński authored
Merge branch '49056-configure-auto-devops-deployed-applications-with-secrets-that-aren-t-committed-to-the-repo' into 'master' Configure Auto DevOps deployed applications with secrets from prefixed CI variables See merge request gitlab-org/gitlab-ce!23719
-
Achilleas Pipinellis authored
Installation/Update guides for 11.7 See merge request gitlab-org/gitlab-ce!24109
-
Tim Zallmann authored
-
Sean McGivern authored
Remove redundant counts in snippets search Closes #44353 See merge request gitlab-org/gitlab-ce!23952
-
Sean McGivern authored
Support new issue creation by email without subaddressing Closes #29951 See merge request gitlab-org/gitlab-ce!23523
-
Sean McGivern authored
[CE] Don't run checks for changed refs when specific changes are unknown See merge request gitlab-org/gitlab-ce!23990
-
Stan Hu authored
On GitLab.com, there are hundreds of projects that have visibility levels that are inconsistent with the fork or group settings. Most likely, this happened during a GitLab project import because the validation was bypassed. Attempting to migrate these projects to hashed storage fails even though the migration doesn't touch the visibility settings. Skipping the visibility validation allows the migration to go through. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55881
-
Brandon Labuschagne authored
-
Evan Read authored
Documentation: Make correction to URL, from https://about.gitab.com/handbook/documentation/... See merge request gitlab-org/gitlab-ce!24137
-
Paul Slaughter authored
**Why?** It is significantly easier to manage the visibility of the modal in Vuex. The module contains the state and mutations to manage this. The component wraps GlModal and syncs the visibility with the module.
-
https://about.gitab.com/handbook/documentation/carla authored
Make correction to URL, from https://about.gitab.com/handbook/documentation/ to https://about.gitlab.com/handbook/documentation/ (I searched to see if this is a duplicate of an existing fix, didn't find one)
-
Evan Read authored
Update `include` parameter usage description See merge request gitlab-org/gitlab-ce!24118
-
Douglas Barbosa Alexandre authored
Fix clone URL not showing if protocol is HTTPS Closes #55896 See merge request gitlab-org/gitlab-ce!24131
-
- 03 Jan, 2019 9 commits
-
-
Fatih Acet authored
Resolve "Add markdown editing buttons to the file editor" Closes #27861 See merge request gitlab-org/gitlab-ce!23480
-
Kamil Trzciński authored
Add Knative metrics to Prometheus See merge request gitlab-org/gitlab-ce!23972
-
Stan Hu authored
GitLab 11.6.2 fixed the case for HTTP. However, HTTPS still did not work because the protocol returned to `http_enabled?` was the actual protocol in use (e.g. `https` instead of `http`). Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/55896
-
Thong Kuah authored
We assert that a K8S_SECRET_* variable is ingestible by our Rack application Re-use project and cluster resources in Auto DevOps QA
-
Thong Kuah authored
Add hint about adding variables for Auto DevOps application variables and link to More information
-
Thong Kuah authored
- DRY up setting deploy name - DRY up application_secret_name
-
Thong Kuah authored
-
Thong Kuah authored
Use --from-env-file with bash process substitution We still need bash as process substition (`<()`) is not available in sh
-
Thong Kuah authored
ie. fix below quoting issue: ``` kubectl create secret -n project-with-autodevops-900057eb1ce34399-77 \ generic production-secret \ '--from-literal=OPTIONAL_MESSAGE=You' can see this secret \ -o yaml --dry-run ``` With fix, it should be generating: ``` kubectl create secret -n project-with-autodevops-900057eb1ce34399-77 \ generic production-secret \ --from-literal 'OPTIONAL_MESSAGE=You can see this secret' \ -o yaml --dry-run ``` Call via bash -c, instead of assuming bash The shell is /bin/sh, so we cannot asssume bash. Hence we use `bash -c` bash is installed for deploy jobs in a prior step
-