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
path: root/db
AgeCommit message (Collapse)Author
2016-01-14Seed db on development with artifacts metadata fixtureGrzegorz Bizon
2016-01-14Add artifacts metadata uploader filedGrzegorz Bizon
Artifacts metadata field will be used to store a filename of gzipped file containing metadata definition for given artifacts archive.
2016-01-14Seed db with CI build artifacts using a zip archiveGrzegorz Bizon
2016-01-14Remove artifacts metadata column from databaseGrzegorz Bizon
2016-01-14Improve CI builds seederGrzegorz Bizon
2016-01-14Add database seed for build artifactsGrzegorz Bizon
2016-01-14Improve CI builds fixturesGrzegorz Bizon
2016-01-14Add initial fixtures for CI buildsGrzegorz Bizon
2016-01-14Add artifacts metadata field to `ci_builds`Grzegorz Bizon
2016-01-13Remove alert_type attribute from BroadcastMessageRobert Speicher
2016-01-13Make the metrics sampler interval configurableYorick Peterse
2016-01-07Added an index on milestones.titleYorick Peterse
Certain pages (e.g. the group wide issues page) filter miletones by their title. Without an index this will result in a sequence scan on a large dataset increasing the total loading time of a page.
2016-01-06Remove InfluxDB username/passwordYorick Peterse
InfluxDB over UDP doesn't use authentication, thus there's no need for these settings.
2016-01-05markdown fixesAndriy Dyadyura
2016-01-04remove public field from namespace and refactoringValery Sizov
2015-12-29Write to InfluxDB directly via UDPYorick Peterse
This removes the need for Sidekiq and any overhead/problems introduced by TCP. There are a few things to take into account: 1. When writing data to InfluxDB you may still get an error if the server becomes unavailable during the write. Because of this we're catching all exceptions and just ignore them (for now). 2. Writing via UDP apparently requires the timestamp to be in nanoseconds. Without this data either isn't written properly. 3. Due to the restrictions on UDP buffer sizes we're writing metrics one by one, instead of writing all of them at once.
2015-12-28reCAPTCHA is configurable through Admin Settings, no reload needed.Gabriel Mazetto
2015-12-28Move InfluxDB settings to ApplicationSettingYorick Peterse
2015-12-25Grace period support for TFAGabriel Mazetto
2015-12-25WIP require two factor authenticationGabriel Mazetto
2015-12-24Merge branch 'emoji-picker-fix' into 'master' Valery Sizov
Emoji picker: better alias handling related to https://gitlab.com/gitlab-org/gitlab-ce/issues/3576 See merge request !2198
2015-12-24Emoji picker: better alias handlingValery Sizov
2015-12-23Make migrations reversibleKamil Trzcinski
2015-12-21Merge branch 'add_email_unlock' into 'master' Robert Speicher
Allow account unlock via email We see a lot of users get confused about what it means when your account gets locked. Many try to reset their password and are still faced with a lockout. With this change, users receive an email that allows them to unlock their account immediately. The previous behavior where the account is auto-unlocked after a time also still works. See merge request !2049
2015-12-18Backport JIRA serviceDrew Blessing
2015-12-17Fix ci_projects migration by using the value only from latest row [ci skip]Kamil Trzcinski
This is needed, because for some projects we have duplicate ci_projects. This was introduced by lack of DB uniqueness on ci_projects.gitlab_id.
2015-12-15Allow account unlock via emailDrew Blessing
2015-12-14Merge branch 'master' into ci/persist-registration-tokenGrzegorz Bizon
* master: Move CI admin builds and runners specs to correct directory Fix 500 when viewing specific runners on runners page Fix Ci::Project migration not migrating columns that cannot be NULL Fix MySQL migration of CI emails Minor fix in flow 'Merge when build succeeds'
2015-12-14Fix Ci::Project migration not migrating columns that cannot be NULL [ci skip]Kamil Trzcinski
2015-12-14Merge branch 'master' into ci/persist-registration-tokenGrzegorz Bizon
* master: (66 commits) Fix runners admin view Fix migrations Rename mention of gitlab-git-http-server to gitlab-workhorse Bump Redis requirement to 2.8 for Sidekiq 4 requirements Fix wording on runner setup page add details on how to change saml button label Fix tests Move awards back to gray panel and few improvements to sidebar Few UI improvements to new sidebar implementation Fix tests for new issuable sidebar Update changelog Implement new sidebar for merge request page Make edit link on issuable sidebar works Redesign issue page for new sidebar Move awards css to separate file Implement issuable sidebar partial Update CHANGELOG Clarify cache behavior Run builds from projects with enabled CI Use Gitlab::Git instead of Ci::Git ... Conflicts: db/schema.rb
2015-12-14Fix MySQL migration of CI emails [ci skip]Kamil Trzcinski
2015-12-14Merge branch 'ci-project-migrate' into 'master' Kamil TrzciƄski
Ci Project migrate - This doesn't migrate: allow_git_fetch, coverage_regex, timeout. Since this are project configuration settings I would propose to migrate them to `.gitlab-ci.yml`. - This requires offline migrations. - It simplifies database models making all CI objects to be attached to: Project. - It removes Ci::Project, but makes /ci/projects working by adding method: Project.find_by_ci_id for backward compatibility (badges, triggers). - We should add default `timeout` to Application Settings. - It misses specs. - It is based on ci-services-migrate for now. - It removes CI events. - It removes administrator CI projects overview. - It removes CI application settings. In 8.4 or 8.5 we can remove redundant tables and columns. See merge request !1987
2015-12-14Fix migrations [ci skip]Kamil Trzcinski
2015-12-11Rename columns and rename migrationsKamil Trzcinski
2015-12-11Add runners tokenKamil Trzcinski
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-12-11Enhance migrate CI emailsKamil Trzcinski
2015-12-11Add `runners_registration_token` to ApplicationSettingsGrzegorz Bizon
2015-12-10Migrate SlackService and HipChat serviceKamil Trzcinski
2015-12-10Migrate CI WebHooks and Emails to new tablesKamil Trzcinski
2015-12-10Migrate CI::Services and CI::WebHooks to Services and WebHooksKamil Trzcinski
2015-12-09Merge branch 'fix-migrations' into 'master' Dmitriy Zaporozhets
Fix migrations for postgres on test environment Make `be rake db:migrate:reset RAILS_ENV=test` work Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !2002
2015-12-09Use up and downDouwe Maan
2015-12-07Fix migrations for postgres on test environmentDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-12-07Fix schemaZeger-Jan van de Weg
2015-12-07Merge branch 'master' into merge-if-greenZeger-Jan van de Weg
2015-12-05Notify user if they cannot create projectsAndrew Tomaka
2015-11-25Rails update to 4.2.4Valery Sizov
2015-11-23Refactor MergeWhenBuildSucceedsService and incorporate feedbackZeger-Jan van de Weg
2015-11-20Merge branch 'emoji_votes' into 'master' Dmitriy Zaporozhets
Award Emoji This it first iteration of award emoji feature. We have plan to extend emoji picker by the next release. For now, you can add award by clicking to the emoji picker or posting a regular comment with emoji like ":+1:" and any other. You can post not only emoji that listed in the emoji picker. See merge request !1825