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
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2020-02-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-11-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2019-04-05Fix real-time updates for projects that contain a reserved wordStan Hu
Projects that included reserved words (e.g. test-create) would fail to generate a proper ETag key because of the name. To fix this, we add forward slashes to match the exact name so that /test-create doesn't get matched, but /create does. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/60113
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-12Revert to passing the path when matching key to the routerZ.J. van de Weg
This was edited to the request, but this won't work if the data is not available at the time of setting the key for the first time.
2017-06-07Fix incorrect ETag cache key when relative instance URL is usedAdam Niedzielski
2017-06-02Merge remote-tracking branch 'origin/master' into zj-job-view-goes-real-timeKamil Trzcinski
2017-05-31Initial implementation for real time job viewZ.J. van de Weg
Added the needed keys and paths to a new entity, BuildDetailsEntity. Not renaming BuildEntity to BuildBasicEntity on explicit request. Most code now has test coverage, but not all. This will be added on later commits on this branch. Resolves gitlab-org/gitlab-ce#31397
2017-05-25Merge branch 'master' into zj-realtime-env-listZ.J. van de Weg
2017-05-24Test etag caching router and incorporate reviewZ.J. van de Weg
2017-05-22Add Etag caching for Pipeline#Show actionZ.J. van de Weg
Due to a typo this was not actually the case. Now that is fixed and performance should improve because of this.
2017-05-22Use etag caching for environments JSONZ.J. van de Weg
For the index view, the environments can now be requested every 15 seconds. Any transition state of a projects environments will trigger a cache invalidation action. Fixes gitlab-org/gitlab-ce#31701
2017-05-13Rename all references to rendered_title to realtime_changesLuke "Jared" Bennett
2017-04-10Test all enabled routes in ETag caching middleware and fix pipeline routesAdam Niedzielski
Extract route matching logic to Gitlab::EtagCaching::Router. Fix pipeline routes: 1. "project_pipelines" has to come after "commit_pipelines" and "merge_request_pipelines" because it is more generic 2. "commit_pipelines": "\s" (any whitespace character) => "\S" (any non-whitespace character).
2017-04-07In case of Etag cache hit, the body should be emptyToon Claes
2017-04-06Include endpoint in metrics for ETag caching middlewareAdam Niedzielski
2017-04-03Introduce "polling_interval_multiplier" as application settingAdam Niedzielski
Implement module for setting "Poll-Interval" response header. Return 429 in ETag caching middleware when polling is disabled.
2017-03-01Add middleware for ETag caching with RedisAdam Niedzielski