1. 02 Aug, 2018 30 commits
  2. 01 Aug, 2018 10 commits
    • Thong Kuah's avatar
      Lock helm charts to the VERSION already specified for each application. · 0cd76190
      Thong Kuah authored
      Fix up VERSION for each of the applications
      * There is no 0.0.1 helm version for jupyterhub. Use the latest version instead
      * `:nginx` is not a valid chart version. Lock the ingress application GitLab installs to the latest chart version.
      * Use the latest gitlab-runner chart to prevent GitLab installing older versions when users have been installing the lastest version
      
      Always install from the VERSION and not the database `version` column.
      This should fix cases like https://gitlab.com/gitlab-org/gitlab-ee/issues/6795 in
      the instances where an install command failed previously, which locked the version
      in the database to an older version.
      
      Also, ensure that the version column is updated to the version we are
      installing.
      
      Add specs to show how previously failed appplications will be handled when the helm installation is run again
      
      Add changelog entry
      0cd76190
    • Stan Hu's avatar
      Rework performance section to allow for string freezing · 0c14042a
      Stan Hu authored
      Relates to #47424
      0c14042a
    • Nick Thomas's avatar
      Merge branch 'zj-repository-languages' into 'master' · 9812e5dd
      Nick Thomas authored
      Add repository languages for projects
      
      Closes #23931, #34671, #48647, and #47301
      
      See merge request gitlab-org/gitlab-ce!19480
      9812e5dd
    • Clement Ho's avatar
      Merge branch 'backstage/avatar-helper-vanilla-js' into 'master' · 92e079ed
      Clement Ho authored
      Add vanilla JS avatar_helper and update existing avatar helpers
      
      See merge request gitlab-org/gitlab-ce!20886
      92e079ed
    • Paul Slaughter's avatar
    • Filipa Lacerda's avatar
      Automatically expand runner's settings block when linking to the runner's... · d60f7d0d
      Filipa Lacerda authored
      Automatically expand runner's settings block when linking to the runner's settings page by using page anchor on the link
      d60f7d0d
    • Clement Ho's avatar
      Merge branch '5488_license_management_backport_css' into 'master' · c1fc33d5
      Clement Ho authored
      Backport CSS changes from gitlab-ee!6638
      
      See merge request gitlab-org/gitlab-ce!20961
      c1fc33d5
    • Robert Speicher's avatar
      Merge branch '49837-fix-changelog' into 'master' · ab08f998
      Robert Speicher authored
      Resolve "Clean up changelog for 11.1.3 and 11.1.4"
      
      Closes #49837
      
      [ci skip]
      
      See merge request gitlab-org/gitlab-ce!20962
      ab08f998
    • Tim Zallmann's avatar
      Merge branch 'winh-raise-karma-timeout' into 'master' · 426b0797
      Tim Zallmann authored
      Raise timeout for Karma tests to 2 seconds
      
      See merge request gitlab-org/gitlab-ce!20963
      426b0797
    • Zeger-Jan van de Weg's avatar
      Add repository languages for projects · 79a5d768
      Zeger-Jan van de Weg authored
      Our friends at GitHub show the programming languages for a long time,
      and inspired by that this commit means to create about the same
      functionality.
      
      Language detection is done through Linguist, as before, where the
      difference is that we cache the result in the database. Also, Gitaly can
      incrementaly scan a repository. This is done through a shell out, which
      creates overhead of about 3s each run. For now this won't be improved.
      
      Scans are triggered by pushed to the default branch, usually `master`.
      However, one exception to this rule the charts page. If we're requesting
      this expensive data anyway, we just cache it in the database.
      
      Edge cases where there is no repository, or its empty are caught in the
      Repository model. This makes use of Redis caching, which is probably
      already loaded.
      
      The added model is called RepositoryLanguage, which will make it harder
      if/when GitLab supports multiple repositories per project. However, for
      now I think this shouldn't be a concern. Also, Language could be
      confused with the i18n languages and felt like the current name was
      suiteable too.
      
      Design of the Project#Show page is done with help from @dimitrieh. This
      change is not visible to the end user unless detections are done.
      79a5d768