Skip to content
  1. May 04, 2018
  2. Apr 25, 2018
  3. Mar 08, 2018
  4. Mar 05, 2018
  5. Jan 06, 2018
  6. Nov 28, 2017
    • Sean McGivern's avatar
      Remove serialised diff and commit columns · 4ebbfe5d
      Sean McGivern authored
      The st_commits and st_diffs columns on merge_request_diffs historically held the
      YAML-serialised data for a merge request diff, in a variety of formats.
      
      Since 9.5, these have been migrated in the background to two new tables:
      merge_request_diff_commits and merge_request_diff_files. That has the advantage
      that we can actually query the data (for instance, to find out how many commits
      we've stored), and that it can't be in a variety of formats, but must match the
      new schema.
      
      This is the final step of that journey, where we drop those columns and remove
      all references to them. This is a breaking change to the importer, because we
      can no longer import diffs created in the old format, and we cannot guarantee
      the export will be in the new format unless it was generated after this commit.
      4ebbfe5d
  7. Sep 07, 2017
  8. Aug 23, 2017
  9. Aug 15, 2017
    • Z.J. van de Weg's avatar
      Add two more project templates · 63914067
      Z.J. van de Weg authored
      Related to !13108. Mostly this is just running the rake task and
      changing the task a bit to catch cases like the project already existing
      or so. The rake task moves archives to the vendor/project_template
      directory, which are checked in too.
      63914067
  10. Aug 14, 2017
  11. Jul 28, 2017
    • Z.J. van de Weg's avatar
      Allow projects to be started from a template · 1d3815f8
      Z.J. van de Weg authored
      Started implementation for the first iteration of
      gitlab-org/gitlab-ce#32420. This will allow users to select a template
      to start with, instead of an empty repository in the project just
      created.
      
      Internally this is basically a small extension of the ImportExport
      GitLab projects we already support. We just import a certain import
      tar archive. This commits includes the first one: Ruby on Rails. In the
      future more will be added.
      1d3815f8