Skip to content
Snippets Groups Projects
Commit ae50a43c authored by GitLab Bot's avatar GitLab Bot
Browse files

Add latest changes from gitlab-org/gitlab@master

parent eca3cd3a
No related branches found
No related tags found
No related merge requests found
1.11.0
1.12.0
Loading
Loading
@@ -42,7 +42,6 @@ module Ci
has_one :deployment, as: :deployable, class_name: 'Deployment'
has_many :trace_sections, class_name: 'Ci::BuildTraceSection'
has_many :trace_chunks, class_name: 'Ci::BuildTraceChunk', foreign_key: :build_id
has_many :needs, class_name: 'Ci::BuildNeed', foreign_key: :build_id, inverse_of: :build
 
has_many :job_artifacts, class_name: 'Ci::JobArtifact', foreign_key: :job_id, dependent: :destroy, inverse_of: :job # rubocop:disable Cop/ActiveRecordDependent
has_many :job_variables, class_name: 'Ci::JobVariable', foreign_key: :job_id
Loading
Loading
@@ -56,7 +55,6 @@ module Ci
 
accepts_nested_attributes_for :runner_session
accepts_nested_attributes_for :job_variables
accepts_nested_attributes_for :needs
 
delegate :url, to: :runner_session, prefix: true, allow_nil: true
delegate :terminal_specification, to: :runner_session, allow_nil: true
Loading
Loading
Loading
Loading
@@ -8,6 +8,14 @@ module Ci
#
#
module Processable
extend ActiveSupport::Concern
included do
has_many :needs, class_name: 'Ci::BuildNeed', foreign_key: :build_id, inverse_of: :build
accepts_nested_attributes_for :needs
end
def schedulable?
raise NotImplementedError
end
Loading
Loading
Loading
Loading
@@ -24,6 +24,8 @@ class PagesDomain < ApplicationRecord
validate :validate_matching_key, if: ->(domain) { domain.certificate.present? || domain.key.present? }
validate :validate_intermediates, if: ->(domain) { domain.certificate.present? && domain.certificate_changed? }
 
default_value_for(:auto_ssl_enabled, allow_nil: false) { ::Gitlab::LetsEncrypt.enabled? }
attr_encrypted :key,
mode: :per_attribute_iv_and_salt,
insecure_mode: true,
Loading
Loading
Loading
Loading
@@ -37,7 +37,8 @@
%button.btn.js-settings-toggle{ type: 'button' }
= expanded ? _('Collapse') : _('Expand')
%p
= _("Register and see your runners for this project.")
= _("Runners are processes that pick up and execute jobs for GitLab. Here you can register and see your Runners for this project.")
= link_to s_('More information'), help_page_path('ci/runners/README')
.settings-content
= render 'projects/runners/index'
 
Loading
Loading
.light.prepend-top-default
%p
= _("A 'Runner' is a process which runs a job. You can set up as many Runners as you need.")
= _("You can set up as many Runners as you need to run your jobs.")
%br
= _('Runners can be placed on separate users, servers, and even on your local machine.')
 
Loading
Loading
---
title: Update Runners Settings Text + Link to Docs
merge_request: 18534
author:
type: changed
---
title: Upgrade pages to 1.12.0
merge_request: 20217
author:
type: added
Loading
Loading
@@ -14082,9 +14082,6 @@ msgstr ""
msgid "Register and see your runners for this group."
msgstr ""
 
msgid "Register and see your runners for this project."
msgstr ""
msgid "Register for GitLab"
msgstr ""
 
Loading
Loading
@@ -14720,6 +14717,9 @@ msgstr ""
msgid "Runners activated for this project"
msgstr ""
 
msgid "Runners are processes that pick up and execute jobs for GitLab. Here you can register and see your Runners for this project."
msgstr ""
msgid "Runners can be placed on separate users, servers, and even on your local machine."
msgstr ""
 
Loading
Loading
@@ -19722,6 +19722,9 @@ msgstr ""
msgid "You can see your chat accounts."
msgstr ""
 
msgid "You can set up as many Runners as you need to run your jobs."
msgstr ""
msgid "You can set up jobs to only use Runners with specific tags. Separate tags with commas."
msgstr ""
 
Loading
Loading
Loading
Loading
@@ -23,6 +23,18 @@ describe "Pages with Let's Encrypt", :https_pages_enabled do
end
end
 
it "creates new domain with Let's Encrypt enabled by default" do
visit new_project_pages_domain_path(project)
fill_in 'Domain', with: 'my.test.domain.com'
expect(find("#pages_domain_auto_ssl_enabled", visible: false).value).to eq 'true'
click_button 'Create New Domain'
expect(page).to have_content('my.test.domain.com')
expect(PagesDomain.find_by_domain('my.test.domain.com').auto_ssl_enabled).to eq(true)
end
context 'when the auto SSL management is initially disabled' do
let(:domain) do
create(:pages_domain, auto_ssl_enabled: false, project: project)
Loading
Loading
@@ -96,7 +108,7 @@ describe "Pages with Let's Encrypt", :https_pages_enabled do
end
 
context 'when certificate is provided by user' do
let(:domain) { create(:pages_domain, project: project) }
let(:domain) { create(:pages_domain, project: project, auto_ssl_enabled: false) }
 
it 'user sees certificate subject' do
visit edit_project_pages_domain_path(project, domain)
Loading
Loading
Loading
Loading
@@ -133,7 +133,7 @@ shared_examples 'pages settings editing' do
end
end
 
context 'when pages are exposed on external HTTPS address', :https_pages_enabled do
context 'when pages are exposed on external HTTPS address', :https_pages_enabled, :js do
let(:certificate_pem) do
<<~PEM
-----BEGIN CERTIFICATE-----
Loading
Loading
@@ -178,6 +178,11 @@ shared_examples 'pages settings editing' do
visit new_project_pages_domain_path(project)
 
fill_in 'Domain', with: 'my.test.domain.com'
if ::Gitlab::LetsEncrypt.enabled?
find('.js-auto-ssl-toggle-container .project-feature-toggle').click
end
fill_in 'Certificate (PEM)', with: certificate_pem
fill_in 'Key (PEM)', with: certificate_key
click_button 'Create New Domain'
Loading
Loading
@@ -202,7 +207,7 @@ shared_examples 'pages settings editing' do
 
describe 'updating the certificate for an existing domain' do
let!(:domain) do
create(:pages_domain, project: project)
create(:pages_domain, project: project, auto_ssl_enabled: false)
end
 
it 'allows the certificate to be updated' do
Loading
Loading
@@ -215,7 +220,7 @@ shared_examples 'pages settings editing' do
end
 
context 'when the certificate is invalid' do
let_it_be(:domain) do
let!(:domain) do
create(:pages_domain, :without_certificate, :without_key, project: project)
end
 
Loading
Loading
@@ -224,6 +229,10 @@ shared_examples 'pages settings editing' do
 
within('#content-body') { click_link 'Edit' }
 
if ::Gitlab::LetsEncrypt.enabled?
find('.js-auto-ssl-toggle-container .project-feature-toggle').click
end
fill_in 'Certificate (PEM)', with: 'invalid data'
click_button 'Save Changes'
 
Loading
Loading
Loading
Loading
@@ -13,7 +13,7 @@ describe PagesDomainSslRenewalCronWorker do
 
describe '#perform' do
let(:project) { create :project }
let!(:domain) { create(:pages_domain, project: project) }
let!(:domain) { create(:pages_domain, project: project, auto_ssl_enabled: false) }
let!(:domain_with_enabled_auto_ssl) { create(:pages_domain, project: project, auto_ssl_enabled: true) }
let!(:domain_with_obtained_letsencrypt) do
create(:pages_domain, :letsencrypt, project: project, auto_ssl_enabled: true)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment