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
2017-11-17Add request throttlesMichael Kozono
2017-10-10Merge branch 'master' into bvl-group-treesBob Van Landuyt
2017-10-06Create idea of read-only databaseToon Claes
In GitLab EE, a GitLab instance can be read-only (e.g. when it's a Geo secondary node). But in GitLab CE it also might be useful to have the "read-only" idea around. So port it back to GitLab CE. Also having the principle of read-only in GitLab CE would hopefully lead to less errors introduced, doing write operations when there aren't allowed for read-only calls. Closes gitlab-org/gitlab-ce#37534.
2017-10-04Add a `WithPagination` concern to reuse across serializersBob Van Landuyt
2017-10-04Load only the currently needed JS locale fileTim Zallmann
2017-09-25Move new nav into main CSS folderAnnabel Dunstone Gray
2017-09-10Expand filtered parameters to include `token`Stan Hu
Now that we are logging API requests in `api_json.log`, we see that the runner token was not filtered properly.
2017-08-31Filter additional secrets from Rails logsStan Hu
Upon inspection of logs, there were a number of fields not filtered. For example: * authenticity_token: CSRF token * rss_token: Used for RSS feeds * secret: Used with Projects::UploadController Rails provides a way to match regexps, so we now filter: * Any parameter ending with `_token` * Any parameter containing `password` * Any parameter containing `secret`
2017-08-08Re-enable SqlInjection and CommandInjectionBrian Neel
2017-08-07Support references to group milestonesSean McGivern
Group milestones can only be referred to by name, not IID. They also do not support cross-project references.
2017-08-04Backport to CE for:Lin Jen-Shin
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/2483
2017-07-11Support multiple Redis instances based on queue typePaul Charlton
2017-07-07Merge branch 'feature/user-datetime-search-api-mysql' into 'master'Douwe Maan
Add creation time filters to user search API for admins Closes #29507 See merge request !12682
2017-07-07move CreatedAtFilter to concerns folderJames Lopez
2017-07-07Include new URL helpers retroactively into includers of Gitlab::RoutingDouwe Maan
2017-07-07Merge branch 'fix-routes-in-production-mode' into 'master'Douwe Maan
Fix shorter route helpers in production environment Closes #34741 See merge request !12675
2017-07-06Improve & fix the performance bar UI and behaviorRémy Coutable
2017-07-06Fix shorter route helpers in production environmentSean McGivern
I don't know exactly when Rails picks each module to use, but this seems to be used by `app` in the console (for instance, `app.project_path` would fail before, but works now).
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-28Resolve "Navigation - Move contextual navigation to sidebar"Annabel Dunstone Gray
2017-06-21Top navigation redesignPhil Hughes
Start of the new navigation by redesigning just the top navigation menu. This is only shown when a cookie is set. Part of #32794
2017-06-09Fix vendor/peek.js so that it can be bundled with WebpackRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-09Small adjustmentsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-09New performance bar that can be enabled with the `p b` shortcutRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-24add rss_token attribute to user modelAlexis Reigel
2017-05-15Add test.js and test.css to disable animations during testing and include ↵Luke "Jared" Bennett
these in _head when testing
2017-05-09Remove CI/CD models directory from `eager_load_paths`Grzegorz Bizon
CI/CD models are already located inside `CI` module, thus usual Rails autoloading principles apply. See https://github.com/rails/rails/issues/28854 for more details.
2017-05-04Disable FastGettext from translating AR attrs.Ruben Davila
It isn't working fine when using POROs in forms like WikiPage, the following error is being raised: undefined method `abstract_class?' for Object:Class
2017-04-04adds git terminal prompt env var to application rbTiago Botelho
2017-03-16Restore unicode-file-name images for legacy img emojisEric Eastwood
2017-03-13Move `ResolveDiscussions` into `concerns/issues` folderBob Van Landuyt
2017-03-07move u2f library to webpackMike Greiling
2017-03-06Use native unicode emojisEric Eastwood
- gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
2017-03-06Merge branch 'remove-vendored-raphael-library' into 'master' Filipa Lacerda
Refactor network graph bundle to ES module syntax See merge request !9696
2017-03-06Remove unecessary calls to limit_user!, UniqueIps Middleware, and address MR ↵Pawel Chojnacki
review - cleanup formating in haml - clarify time window is in seconds - cleanup straneous chunks in db/schema - rename count_uniqe_ips to update_and_return_ips_count - other
2017-03-06Allow limiting logging in users from too many different IPs.Pawel Chojnacki
2017-03-05remove manually vendored raphael library in favor of node moduleMike Greiling
2017-03-04merge cropper library into profile_bundleMike Greiling
2017-03-02CORS: Whitelist pagination headersRobert Schilling
2017-02-02add rack middleware to proxy webpack dev serverMike Greiling
2017-01-10precompile webpack assets when testingMike Greiling
2017-01-10migrate all javascript asset bundles and require syntaxMike Greiling
2017-01-06add webpack, webpack-rails, and webpack-dev-server along with a simple hello ↵Mike Greiling
world test Add the following line to GDK Procfile to play with it: webpack: exec support/exec-cd gitlab npm run dev-server
2016-12-22Add KaTeX fonts to assets paths and precompileHiroyuki Sato
2016-12-21Remove unneeded bundle refs.Bryce Johnson
2016-12-21Backport moving MR widget CI JS out of script tag.Bryce Johnson
2016-12-19Add xterm.js 2.1.0 and a wrapper class to the asset pipelineNick Thomas
2016-12-15Merge branch 'rs-filter-params' into 'security' Rémy Coutable
Filter `incoming_email_token` and `runners_token` parameters Closes https://dev.gitlab.org/gitlab/gitlabhq/issues/2676 See merge request !2045
2016-12-15Merge branch 'katex-math' into 'master' Sean McGivern
Render math in Asciidoc and Markdown with KaTeX using code blocks Closes #13690 and #13180 See merge request !8003
2016-12-14Render math in Asciidoc and Markdown with KaTeX using code blocksMunken