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-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
2016-12-09Merge branch 'rs-filter-authentication_token' into 'security' Douwe Maan
Add authentication_token to filter_parameters list See merge request !2041
2016-11-16Includes page specific JSFilipa Lacerda
2016-10-28Create cycle analytics bundlePhil Hughes
This prevents VueJS being included in application.js & therefore included on everypage
2016-10-21Re-organize queues to use for SidekiqYorick Peterse
Dumping too many jobs in the same queue (e.g. the "default" queue) is a dangerous setup. Jobs that take a long time to process can effectively block any other work from being performed given there are enough of these jobs. Furthermore it becomes harder to monitor the jobs as a single queue could contain jobs for different workers. In such a setup the only reliable way of getting counts per job is to iterate over all jobs in a queue, which is a rather time consuming process. By using separate queues for various workers we have better control over throughput, we can add weight to queues, and we can monitor queues better. Some workers still use the same queue whenever their work is related. For example, the various CI pipeline workers use the same "pipeline" queue. This commit includes a Rails migration that moves Sidekiq jobs from the old queues to the new ones. This migration also takes care of doing the inverse if ever needed. This does require downtime as otherwise new jobs could be scheduled in the old queues after this migration completes. This commit also includes an RSpec test that blacklists the use of the "default" queue and ensures cron workers use the "cronjob" queue. Fixes gitlab-org/gitlab-ce#23370
2016-10-20Create protected branches bundleAlfredo Sumaran
2016-10-13Refactor JS codeAlfredo Sumaran
- Use a store base object to manage application state. - Add a service to handle ajax requests. - Load code only when needed
2016-10-06Merge commit 'dev/security' into 'master'Rémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>