| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Assume that if an instance level cluster already exists, then the
KubernetesService was not being used, but allow the admin to re-enable
it if required
|
|
|
|
|
| |
The migration uses active record model stubs so that field encryption
can be more easily used.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Storing this key in secrets.yml was a bad idea,
it would require users using HA setups to manually
replicate secrets across nodes during update,
it also needed support from omnibus package
* Revert "Generate Let's Encrypt private key"
This reverts commit 444959bfa0b79e827a2a1a7a314acac19390f976.
* Add Let's Encrypt private key to settings
as encrypted attribute
* Generate Let's Encrypt private key
in database migration
|
| |
|
| |
|
|\
| |
| |
| |
| | |
Remove duplicate definition of DOWNTIME
See merge request gitlab-org/gitlab-ce!28294
|
| |
| |
| |
| |
| |
| |
| |
| | |
This silences the warning:
20190301081611_migrate_project_migrate_sidekiq_queue.rb:8:
warning: already initialized constant
MigrateProjectMigrateSidekiqQueue::DOWNTIME
|
| |
| |
| |
| | |
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
|\ \
| | |
| | |
| | |
| | | |
CE backport of "Configure the number of ES shards and replicas"
See merge request gitlab-org/gitlab-ce!28329
|
| |/ |
|
|/
|
|
|
|
|
|
| |
```
StandardError: An error has occurred, all later migrations canceled:
Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'system = true AND note LIKE '\_%\_'' at line 1: UPDATE notes SET note = trim(both '_' from note) WHERE system = true AND note LIKE '\_%\_'
```
|
|\
| |
| |
| |
| | |
CE backport of merge request blocks - backend MVC
See merge request gitlab-org/gitlab-ce!27323
|
| | |
|
| |
| |
| |
| |
| |
| | |
Udpated user_edit_profile_spec with time preferences
Minor update form fields
|
| |
| |
| |
| |
| |
| | |
Issues and merge requests imported from GitHub are having state_id
set to null. This fixes the GitHub project importer and schedule
migrations to fix state_id.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Add env_var and file as supported types for CI variables. Variables of
type file expose to users existing gitlab-runner behaviour - save
variable value into a temp file and set the path to this file in an ENV
var named after the variable key.
Resolves https://gitlab.com/gitlab-org/gitlab-ce/issues/46806.
|
| |
| |
| |
| |
| | |
This database table and AR model is going to be used for
the merge train feature.
|
|/ |
|
|\
| |
| |
| |
| |
| |
| | |
Resolve "Drop "projects"."ci_id" column"
Closes #27777
See merge request gitlab-org/gitlab-ce!27623
|
| |
| |
| |
| |
| |
| | |
And remove Gitlab::Ci::Trace#deprecated_path as it relies on ci_id
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
|
| |
| |
| |
| |
| | |
This new field will allow to keep track of the storage used by the
packages features, it provides also aggregation at namespace level.
|
|\ \
| |/
|/|
| |
| | |
[CE] Remove deprecated usage of `attribute_changed?`
See merge request gitlab-org/gitlab-ce!27577
|
| |
| |
| |
| | |
Prepares us for upgrade to Rails 5.2
|
|/
|
|
| |
We add the option and expose the parameter for frontend work
|
|
|
|
|
| |
Store Let's Encrypt account email in application settings
Also add explicit terms of service consent
|
|
|
|
|
| |
This enables sending a chat message to Slack or Mattermost
upon a successful, failed, or canceled deployment
|
|
|
|
|
|
| |
This new table will be used to store the external_dashboard_url which
allows users to add a link to their external dashboards (ex Grafana)
to the Metrics dashboard.
|
|\
| |
| |
| |
| |
| |
| | |
'ce-11199-add-a-rake-task-to-seed-insights-data-for-a-given-project' into 'master'
Provide a new gitlab:seed:issues task
See merge request gitlab-org/gitlab-ce!27454
|
| |
| |
| |
| | |
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|\ \
| | |
| | |
| | |
| | | |
Upgrade Rails to 5.1
See merge request gitlab-org/gitlab-ce!27480
|
| |/
| |
| |
| | |
Model.new.attributes now also returns encrypted attributes.
|
|\ \
| |/
|/|
| |
| | |
Add auto_ssl_enabled to pages domains
See merge request gitlab-org/gitlab-ce!27304
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Change the schema of common_metrics.yml
Closes #60383
See merge request gitlab-org/gitlab-ce!27283
|
| |/
| |
| |
| |
| | |
- Change it to the new dashboard syntax described here:
https://gitlab.com/gitlab-org/gitlab-ce/issues/60383.
|
|/ |
|
|\
| |
| |
| |
| |
| |
| | |
Revert "Remove HipChat integration from GitLab"
Closes #60042
See merge request gitlab-org/gitlab-ce!27172
|
| | |
|
| |
| |
| |
| | |
This reverts commit a5378665a1dc0b9c8dc3a4fa279a0eb78aac5aac.
|
|/
|
|
|
|
|
|
|
|
| |
It could happen that there's a cached (in Redis) ApplicationSetting
record, and calling
`Gitlab::CurrentSettings.current_application_settings` only returns it
instead of creating a new DB record, which makes the
`ApplicationSetting.current_without_cache.update!` call fail.
Signed-off-by: Rémy Coutable <remy@rymai.me>
|
|
|
|
|
|
|
| |
Set pages_domain.remove_at when disabling it
Add specs for marking pages domain for removal
Notify user that domain is being removed
Add documentation
|
|
|
|
| |
spec/features/groups/group_page_with_external_authorization_service_spec to EE
|
|\
| |
| |
| |
| | |
[Backport] Support multiple assignees for merge requests
See merge request gitlab-org/gitlab-ce!27089
|
| |
| |
| |
| |
| | |
Backports https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/10161
(code out of ee/ folder).
|
| | |
|
|/
|
|
|
| |
For those who upgraded to a version that included the previous
backport implementation with migration 20190311132500.
|
| |
|
|\
| |
| |
| |
| |
| |
| | |
Clean up `noteable_id` for notes on commits
Closes #58612
See merge request gitlab-org/gitlab-ce!26104
|
| |
| |
| |
| |
| |
| |
| | |
This was incorrectly set by a bug in:
https://gitlab.com/gitlab-org/gitlab-ce/issues/54924
Also adds a `batch_size` option to `update_column_in_batches`
|