Skip to content
代码片段 群组 项目
未验证 提交 114c6191 编辑于 作者: Igor Frenkel's avatar Igor Frenkel 提交者: GitLab
浏览文件

Add cargo to supported sbom and sync types

Add the cargo purl_type to the sbom enum and to package_metadata
sync.

Changelog: added
上级 c7479d80
No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class UpdateDefaultPackageMetadataPurlTypesCargo < Gitlab::Database::Migration[2.2]
milestone '17.2'
disable_ddl_transaction!
PARTIALLY_ENABLED_SYNC = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13].freeze
FULLY_ENABLED_SYNC = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14].freeze
def change
change_column_default :application_settings, :package_metadata_purl_types,
from: PARTIALLY_ENABLED_SYNC, to: FULLY_ENABLED_SYNC
end
end
# frozen_string_literal: true
class AddCargoPurlTypeToApplicationSetting < Gitlab::Database::Migration[2.2]
milestone '17.2'
restrict_gitlab_migration gitlab_schema: :gitlab_main
class ApplicationSetting < MigrationRecord
end
CARGO_PURL_TYPE = 14
def up
application_setting = ApplicationSetting.last
return unless application_setting
application_setting.package_metadata_purl_types |= [CARGO_PURL_TYPE]
application_setting.save
end
def down
application_setting = ApplicationSetting.last
return unless application_setting
application_setting.package_metadata_purl_types.delete(CARGO_PURL_TYPE)
application_setting.save
end
end
0b22e7b236e50bbee5f93fe9f9d96e2b5c9977918069e2c1d202190f18449ed6
\ No newline at end of file
baf3dd93f9ca57aff07984074da754e20f75ad56fc687e7118463180b25e15b1
\ No newline at end of file
......@@ -5327,7 +5327,7 @@ CREATE TABLE application_settings (
encrypted_product_analytics_configurator_connection_string bytea,
encrypted_product_analytics_configurator_connection_string_iv bytea,
silent_mode_enabled boolean DEFAULT false NOT NULL,
package_metadata_purl_types smallint[] DEFAULT '{1,2,3,4,5,6,7,8,9,10,11,12,13}'::smallint[],
package_metadata_purl_types smallint[] DEFAULT '{1,2,3,4,5,6,7,8,9,10,11,12,13,14}'::smallint[],
ci_max_includes integer DEFAULT 150 NOT NULL,
remember_me_enabled boolean DEFAULT true NOT NULL,
encrypted_anthropic_api_key bytea,
# frozen_string_literal: true
require 'spec_helper'
require_migration!
RSpec.describe AddCargoPurlTypeToApplicationSetting, feature_category: :software_composition_analysis do
let(:settings) { table(:application_settings) }
describe "#up" do
it 'updates setting' do
settings.create!(package_metadata_purl_types: [1, 2, 4, 5, 9, 10])
disable_migrations_output do
migrate!
end
expect(ApplicationSetting.last.package_metadata_purl_types).to eq([1, 2, 4, 5, 9, 10, 14])
end
end
describe "#down" do
context 'with default value' do
it 'updates setting' do
settings.create!(package_metadata_purl_types: [1, 2, 4, 5, 9, 10, 14])
disable_migrations_output do
migrate!
schema_migrate_down!
end
expect(ApplicationSetting.last.package_metadata_purl_types).to eq([1, 2, 4, 5, 9, 10])
end
end
end
end
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册