diff --git a/README.md b/README.md index a5cfec8..2b6a913 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to GitLab is a web-based Git-repository manager providing wiki, issue-tracking and CI/CD pipeline features, using an open-source license, developed by GitLab Inc. -**Shipped version:** 12.5.4 +**Shipped version:** 12.6.0 ## Screenshots diff --git a/conf/gitlab.rb b/conf/gitlab.rb index b18ed0e..d4fc9fa 100644 --- a/conf/gitlab.rb +++ b/conf/gitlab.rb @@ -124,6 +124,7 @@ external_url '__GENERATED_EXTERNAL_URL__' # gitlab_rails['ci_archive_traces_cron_worker_cron'] = "17 * * * *" # gitlab_rails['repository_check_worker_cron'] = "20 * * * *" # gitlab_rails['admin_email_worker_cron'] = "0 0 * * 0" +# gitlab_rails['personal_access_tokens_expiring_worker_cron'] = "0 1 * * *" # gitlab_rails['repository_archive_cache_worker_cron'] = "0 * * * *" # gitlab_rails['pages_domain_verification_cron_worker'] = "*/15 * * * *" # gitlab_rails['pages_domain_ssl_renewal_cron_worker'] = "*/10 * * * *" @@ -209,11 +210,13 @@ external_url '__GENERATED_EXTERNAL_URL__' # gitlab_rails['incoming_email_ssl'] = true # gitlab_rails['incoming_email_start_tls'] = false -#### Incoming Mailbox Settings +#### Incoming Mailbox Settings (via `mail_room`) ####! The mailbox where incoming mail will end up. Usually "inbox". # gitlab_rails['incoming_email_mailbox_name'] = "inbox" ####! The IDLE command timeout. # gitlab_rails['incoming_email_idle_timeout'] = 60 +####! The file name for internal `mail_room`JSON logfile +# gitlab_rails['incoming_email_log_file'] = "/var/log/gitlab/mailroom/mail_room_json.log" ### Job Artifacts # gitlab_rails['artifacts_enabled'] = true @@ -505,6 +508,13 @@ gitlab_rails['gitlab_shell_ssh_port'] = __SSH_PORT__ # 'bantime' => 3600 # } +# Prioritize the Admin Area protected paths throttle settings over the +# deprecated Omnibus-managed protected paths throttle. This allows you to keep +# gitlab_rails['rack_attack_git_basic_auth'] enabled to run the Git and +# container registry failed authentication ban. +# See https://gitlab.com/gitlab-org/gitlab/issues/37093 +# gitlab_rails['rack_attack_admin_area_protected_paths_enabled'] = true + ###! **We do not recommend changing these directories.** # gitlab_rails['dir'] = "/var/opt/gitlab/gitlab-rails" # gitlab_rails['log_directory'] = "/var/log/gitlab/gitlab-rails" @@ -1636,6 +1646,7 @@ nginx['listen_https'] = false # postgres_exporter['env'] = { # 'SSL_CERT_DIR' => "/opt/gitlab/embedded/ssl/certs/" # } +# postgres_exporter['sslmode'] = nil ################################################################################ ## Prometheus PgBouncer exporter (EE only) @@ -1810,16 +1821,39 @@ grafana['enable'] = false # praefect['prometheus_listen_addr'] = "localhost:9652" # praefect['logging_level'] = "warn" # praefect['logging_format'] = "json" -# praefect['storage_nodes'] = { -# 'praefect' => { -# 'address' => 'tcp://12:23:56:78', -# 'token' => 'abc123' +# praefect['virtual_storages'] = { +# 'default' => { +# 'praefect-internal-0' => { +# 'address' => 'tcp://10.23.56.78:8075', +# 'token' => 'abc123' +# }, +# 'praefect-internal-1' => { +# 'address' => 'tcp://10.76.23.31:8075', +# 'token' => 'xyz456' +# } # }, -# 'praefect-2' => { -# 'address' => 'tcp://praefect2.internal', -# 'token' => 'xyz456' +# 'alternative' => { +# 'praefect-internal-2' => { +# 'address' => 'tcp://10.34.1.16:8075', +# 'token' => 'abc321' +# }, +# 'praefect-internal-3' => { +# 'address' => 'tcp://10.23.18.6:8075', +# 'token' => 'xyz890' +# } # } # } +# praefect['sentry_dsn'] = "https://:@sentry.io/" +# praefect['sentry_environment'] = "production" +# praefect['database_host'] = 'postgres.internal' +# praefect['database_port'] = 5432 +# praefect['database_user'] = 'praefect' +# praefect['database_password'] = 'secret' +# praefect['database_dbname'] = 'praefect_production' +# praefect['database_sslmode'] = 'disable' +# praefect['database_sslcert'] = '/path/to/client-cert' +# praefect['database_sslkey'] = '/path/to/client-key' +# praefect['database_sslrootcert'] = '/path/to/rootcert' ################################################################################ # Storage check diff --git a/manifest.json b/manifest.json index fb39da6..03e1b38 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "name": "Gitlab", "id": "gitlab", "packaging_format": 1, - "version": "12.5.4~ynh1", + "version": "12.6.0~ynh1", "description": { "en": "GitLab is a Git-repository manager.", "fr": "GitLab est un gestionnaire de dépôts Git." diff --git a/scripts/upgrade.d/upgrade.last.sh b/scripts/upgrade.d/upgrade.last.sh index e49ecd0..c14e169 100644 --- a/scripts/upgrade.d/upgrade.last.sh +++ b/scripts/upgrade.d/upgrade.last.sh @@ -1,8 +1,8 @@ -gitlab_version="12.5.4" +gitlab_version="12.6.0" -gitlab_x86_64_source_sha256="f4322459222f65558d345ff048028e91fb21b40fd318eb702737103aa2b09c18" +gitlab_x86_64_source_sha256="bedb43836d6f901ae72afec8aa0e94ac4ea99a70f9e652002eaf2f6289682dd3" -gitlab_arm_source_sha256="382890913a38f942f060c604248b3337e6c1da7ee59fb32737617963fb8ce5d4" +gitlab_arm_source_sha256="2a2f4725a6231f416d7a804897ee96ecdcbce621e51e6092e8d95afcf58958b1" gitlab_filename="gitlab-ce-${gitlab_version}.deb"