1. 24.04.2019 1 коммит
  2. 19.04.2019 2 коммита
  3. 18.04.2019 1 коммит
  4. 17.04.2019 3 коммита
  5. 16.04.2019 4 коммита
  6. 15.04.2019 2 коммита
  7. 11.04.2019 2 коммита
  8. 10.04.2019 4 коммита
  9. 09.04.2019 5 коммитов
    • Vladimir Shushlin's avatar
      Mark unverified pages domains for removal
      · d69d2901
      Vladimir Shushlin создал
      Set pages_domain.remove_at when disabling it
      Add specs for marking pages domain for removal
      Notify user that domain is being removed
      Add documentation
      d69d2901
    • Marcel Amirault's avatar
      Docs: Add examples for linking to header IDs
      · 81545819
      Marcel Amirault создал
      81545819
    • Marcel Amirault's avatar
      Docs: Fix anchors related to issues
      · f581e72d
      Marcel Amirault создал
      f581e72d
    • Luke Duncalfe's avatar
      Support merge on pipeline success w/ push options
      · 68f189ad
      Luke Duncalfe создал
      MergeRequests::PushOptionsHandlerService has been updated to allow
      creating and updating merge requests with the
      `merge_when_pipeline_succeeds` set using git push options.
      
      To create a new merge request and set it to merge when the pipeline
      succeeds:
      
        git push -u origin -o merge_request.create \
          -o merge_request.merge_when_pipeline_succeeds
      
      To update an existing merge request and set it to merge when the
      pipeline succeeds:
      
        git push -u origin -o merge_request.merge_when_pipeline_succeeds
      
      Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/53198
      68f189ad
    • Luke Duncalfe's avatar
      Support merge request create with push options
      · aa352a95
      Luke Duncalfe создал
      To create a new merge request:
      
        git push -u origin -o merge_request.create
      
      To create a new merge request setting target branch:
      
        git push -u origin -o merge_request.create \
          -o merge_request.target=123
      
      To update an existing merge request with a new target branch:
      
        git push -u origin -o merge_request.target=123
      
      A new Gitlab::PushOptions class handles parsing and validating the push
      options array. This can be the start of the standard of GitLab accepting
      push options that follow namespacing rules. Rules are discussed in issue
      https://gitlab.com/gitlab-org/gitlab-ce/issues/43263.
      
      E.g. these push options:
      
        -o merge_request.create -o merge_request.target=123
      
      Become parsed as:
      
        {
          merge_request: {
            create: true,
            target: '123',
          }
        }
      
      And are fetched with the class via:
      
        push_options.get(:merge_request)
        push_options.get(:merge_request, :create)
        push_options.get(:merge_request, :target)
      
      A new MergeRequests::PushOptionsHandlerService takes the `merge_request`
      namespaced push options and handles creating and updating
      merge requests.
      
      Any errors encountered are passed to the existing `output` Hash in
      Api::Internal's `post_receive` endpoint, and passed to gitlab-shell
      where they're output to the user.
      
      Issue https://gitlab.com/gitlab-org/gitlab-ce/issues/43263
      aa352a95
  10. 08.04.2019 4 коммита
  11. 06.04.2019 1 коммит
  12. 05.04.2019 2 коммита
    • Gosia Ksionek's avatar
      Add part of needed code
      · 64858317
      Gosia Ksionek создал
      Add columns to store project creation settings
      
      Add project creation level column in groups
       and default project creation column in application settings
      
      Remove obsolete line from schema
      
      Update migration with project_creation_level column existence check
      
      Rename migrations to avoid conflicts
      
      Update migration methods
      
      Update migration method
      64858317
    • Grzegorz Bizon's avatar
      Copy-edit new serverless documentation
      · 20edd05d
      Grzegorz Bizon создал
      20edd05d
  13. 04.04.2019 3 коммита
  14. 03.04.2019 6 коммитов