Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-23Upgrade Rails to 5.1.6.1Jasper Maes
Model.new.attributes now also returns encrypted attributes.
2019-04-22Merge branch 'update-gitlab-runner-helm-chart-to-0-4-0' into 'master'James Lopez
Update GitLab Runner Helm Chart to 0.4.0/11.10.0 See merge request gitlab-org/gitlab-ce!27508
2019-04-20Fix wrong use of ActiveRecord in PoolRepositoryJacob Vosmaer
2019-04-19Extract ProjectStatistics updates into a concernAlessio Caiazza
Refactor existing tests as a shared example
2019-04-19Update GitLab Runner Helm Chart to 0.4.0Steve Azzopardi
2019-04-19Merge branch '39858-add-group-owned-info-to-projects-api' into 'master'Douwe Maan
Return group information on Project endpoint Closes #39858 See merge request gitlab-org/gitlab-ce!27427
2019-04-19Adds namespace information to project endpointMayra Cabrera
- Namespace now return avatar_url and web_url - NamespaceBasic entity was modified to include avatar_url and web_url, information is fetched differently depending if the Namespace is a user or a group Includes documentation changes Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39858
2019-04-17Bump version of knative from 0.3 -> 0.5Chris Baumbauer
2019-04-16Merge branch 'mc/feature/custom-metrics-ce' into 'master'Kamil Trzciński
Backport metrics report type See merge request gitlab-org/gitlab-ce!26798
2019-04-16Merge branch 'rewind-iid-on-pipelines' into 'master'Sean McGivern
Rewind iid on pipelines Closes #59362 See merge request gitlab-org/gitlab-ce!26490
2019-04-16Backport changes from EEMatija Čupić
This backports the changes from https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10452
2019-04-16Rewind IID on Ci::PipelinesKamil Trzciński
If no pipeline is created we currently have IID gap. This is due to fact that we generate IID not on save, but rather ahead of time. This results, us, losing IIDs.
2019-04-12Don't render artifact download links on the project tags page for builds ↵drew cimino
with expired artifacts
2019-04-12Fix grouping wiki pages by directoryIgor
If a page has the same name as a directory the WikiPage#group_by_directory method can have a wrong behaviour This commit fixes it
2019-04-10Add frozen_string_literal to HipChat filesSean McGivern
2019-04-10Fix UrlBlocker specSean McGivern
The newer version of HTTParty we now use will try harder to get a valid URL out of a relative one. Unfortunately, when there's no room (as was the case in this spec), the relative URL begins with `//`, which is actually a protocol-relative URL, not a simple path. Adding a room - which will always be the case in 'real life' - fixes this.
2019-04-10Revert "Remove HipChat integration from GitLab"Sean McGivern
This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac.
2019-04-10Revert "Merge branch 'sh-optimize-projects-api' into 'master'"Stan Hu
This reverts merge request !26481
2019-04-09Move Contribution Analytics related spec in ↵Imre Farkas
spec/features/groups/group_page_with_external_authorization_service_spec to EE
2019-04-09Merge branch 'osw-multi-assignees-merge-requests' into 'master'Nick Thomas
[Backport] Support multiple assignees for merge requests See merge request gitlab-org/gitlab-ce!27089
2019-04-09Set release name when adding release notes to an existing tagJason Goodman
Also set the release sha and author
2019-04-09[CE] Support multiple assignees for merge requestsOswaldo Ferreira
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161 (code out of ee/ folder).
2019-04-08Merge branch 'instance-configuration-artifact-size' into 'master'Rémy Coutable
Display maximum artifact size from runtime config See merge request gitlab-org/gitlab-ce!26784
2019-04-06Add Knative metrics to PrometheusChris Baumbauer
2019-04-05Add part of needed codeGosia 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
2019-04-05Revert "Merge branch 'if-57131-external_auth_to_ce' into 'master'"Andreas Brandl
This reverts merge request !26823
2019-04-05Move Contribution Analytics related spec in ↵Imre Farkas
spec/features/groups/group_page_with_external_authorization_service_spec to EE
2019-04-05Merge branch '57493-add-limit-to-user-name' into 'master'Andreas Brandl
Add a length limit of 128 char to the user name field See merge request gitlab-org/gitlab-ce!26146
2019-04-05Merge branch 'fix-merge-request-relations-with-pipeline-on-mwps' into 'master'Kamil Trzciński
Fix MWPS doesn't work for merge request pipelines See merge request gitlab-org/gitlab-ce!26906
2019-04-05Autocorrect with RSpec/ExampleWording copThong Kuah
- rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
2019-04-05Merge branch '59162-fix-review-apps-initial-seeding' into 'master'Dmitriy Zaporozhets
Fix race condition in ApplicationSettingImplementation.create_from_defaults Closes #59162 See merge request gitlab-org/gitlab-ce!26319
2019-04-05Add limit of 128 characters to users nameBrandon Labuschagne
Truncate existing users names which exceed 128 characters Include test for truncating users names
2019-04-05Fix merge requst relationships with pipeline in MWPSServiceShinya Maeda
MWPSService currently uses the old pipeline lookup method. It searches related merge requests with pipeline.ref, however, this doesn't work for attached/detached merge request pipelines.
2019-04-04Merge branch 'drop-usage-of-leagcy-artifacts' into 'master'Kamil Trzciński
Drop legacy artifacts usage as there are no leftovers See merge request gitlab-org/gitlab-ce!24294
2019-04-04Renamed terminal_specification to channel_specificationFrancisco Javier López
We're moving from using terminology related to terminals when we refer to Websockets connections in Workhorse. It's more appropiate a concept like channel.
2019-04-04Allow reactive caching to be used in servicesReuben Pereira
Add support for defining a reactive_cache_worker_finder function that will be used by the reactive_caching_worker to generate/initialize the calling object. This allows reactive caching to work with Services where the object cannot be obtained from DB but a new object can be initialized.
2019-04-04Allow to sort wiki pages by date and titleIgor
- Add controls for sorting by title and date - Execute Gitaly call which now accepts sorting params for wikis
2019-04-04Add cr remarksGosia Ksionek
Chnage method used in model to make it more efficient database-wise Add additional spec
2019-04-04Fixed test specsOswaldo Ferreira
- added suggestions to mock data - fixed props to be not required
2019-04-04Drop legacy artifacts usageShinya Maeda
Legacy artifacts have been correctly migrated to new place - ci_job_artifacts. Now it's time to remove the related code, but before that we should ensure it doesn't break anything by using feature flag.
2019-04-04Fix race cond. in ApplicationSettingImplementation.create_from_defaultsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-04-04Merge branch 'support-time-windows-api' into 'master'James Lopez
Support time window parameters in additional metrics endpoint See merge request gitlab-org/gitlab-ce!26228
2019-04-03Display maximum artifact size from runtime configBastian Blank
The maximum artifact size was moved into runtime config some time ago. Update the instance configuration code to read this value.
2019-04-03Merge branch '55268-exclude-system-notes-from-commits-in-mr' into 'master'Rémy Coutable
Do not show system notes on commits in the MR page Closes #55268 See merge request gitlab-org/gitlab-ce!26396
2019-04-03Specify time window for additional metrics apisyasonik
Adds support for start and end parameters in the #additional_metrics endpoint of the EnvironmentsController. start and end are meant to be unix timestamps, per the Prometheus API (as the consumer of this endpoint will eventually be transitioned to a prometheus endpoint). This functionality is behind the :metrics_time_window feature flag for development.
2019-04-02Merge branch 'ce-reduce-diff-in-spec-models' into 'master'Lin Jen-Shin
[CE] Reduce diff with EE in `spec/models` See merge request gitlab-org/gitlab-ce!26847
2019-04-02Do not show system notes on commits in the MR pageHeinrich Lee Yu
2019-04-02Stop calling UnlinkRepositoryFromObjectPool RPCJacob Vosmaer
Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/59777. In earlier iterations of our implementation of Git object deduplication we thought we would be making extensive use of Git remotes in pool repositories in the future, and that we should manage these remotes carefully from the start. We now expect we only care about one remote, namely the source project. The other remotes are there only for forensic purposes. Before this MR we tried to also remove pool remotes when member projects got deleted, with the UnlinkRepositoryFromObjectPool RPC. This is fragile when there are race conditions (see https://gitlab.com/gitlab-org/gitaly/issues/1568#note_153955926). We have spent some time making this RPC less fragile in https://gitlab.com/gitlab-org/gitaly/merge_requests/1151 but looking at this problem again, I think we should just stop calling it.
2019-04-02Merge branch 'expose-mr-pipeline-parameters-for-merge-widget-ce' into 'master'Kamil Trzciński
Backport: Expose merge request pipeline parameters for MR widget See merge request gitlab-org/gitlab-ce!26826
2019-04-02Backport splitting approval changes from CEIgor
Author and committers approvals are split in EE This commit provides backports for those changes This reverts commit 886f00bcba23d67e2c86591c2eb5359ef457a2f9.