merge fix

This commit is contained in:
root
2023-08-10 15:15:39 -04:00
578 changed files with 6933 additions and 4940 deletions

View File

@@ -158,6 +158,9 @@ module Mastodon::CLI
when :fog
say('The fog storage driver is not supported for this operation at this time', :red)
exit(1)
when :azure
say('The azure storage driver is not supported for this operation at this time', :red)
exit(1)
when :filesystem
require 'find'

View File

@@ -7,6 +7,7 @@ module Mastodon::CLI
# Indices are sorted by amount of data to be expected in each, so that
# smaller indices can go online sooner
INDICES = [
InstancesIndex,
AccountsIndex,
TagsIndex,
StatusesIndex,

View File

@@ -46,6 +46,8 @@ module Mastodon::CLI
upgrade_storage_s3(progress, attachment, style)
when :fog
upgrade_storage_fog(progress, attachment, style)
when :azure
upgrade_storage_azure(progress, attachment, style)
when :filesystem
upgrade_storage_filesystem(progress, attachment, style)
end
@@ -105,6 +107,11 @@ module Mastodon::CLI
exit(1)
end
def upgrade_storage_azure(_progress, _attachment, _style)
say('The azure storage driver is not supported for this operation at this time', :red)
exit(1)
end
def upgrade_storage_filesystem(progress, attachment, style)
previous_storage_schema_version = attachment.storage_schema_version
previous_path = attachment.path(style)

View File

@@ -13,7 +13,7 @@ module Mastodon
end
def patch
4
5
end
def flags

View File

@@ -13,7 +13,14 @@ module Webpacker::HelperExtensions
def preload_pack_asset(name, **options)
src, integrity = current_webpacker_instance.manifest.lookup!(name, with_integrity: true)
preload_link_tag(src, options.merge(integrity: integrity))
# This attribute will only work if the assets are on a different domain.
# And Webpack will (correctly) only add it in this case, so we need to conditionally set it here
# otherwise the preloaded request and the real request will have different crossorigin values
# and the preloaded file wont be loaded
crossorigin = 'anonymous' if Rails.configuration.action_controller.asset_host.present?
preload_link_tag(src, options.merge(integrity: integrity, crossorigin: crossorigin))
end
end