update rails to 8.1.2

This commit is contained in:
Alex Turchyn
2026-01-26 18:18:07 +02:00
committed by Pete Matsyburka
parent d12c67fd54
commit 7b5494468f
23 changed files with 1676 additions and 1018 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ Bundler.require(*Rails.groups)
module DocuSeal
class Application < Rails::Application
config.load_defaults 8.0
config.load_defaults 8.1
config.autoload_lib(ignore: %w[assets tasks puma])
+11
View File
@@ -0,0 +1,11 @@
# frozen_string_literal: true
autoload :CSV, 'csv'
autoload :CSVSafe, 'csv-safe'
autoload :RubyXL, 'rubyXL'
autoload :Zip, 'zip'
autoload :Numo, 'numo/narray'
autoload :OnnxRuntime, 'onnxruntime'
autoload :RQRCode, 'rqrcode'
autoload :ArabicLetterConnector, 'arabic-letter-connector/logic'
autoload :JWT, 'jwt'
-3
View File
@@ -1,3 +0,0 @@
# frozen_string_literal: true
require 'csv'
+1 -8
View File
@@ -1,10 +1,3 @@
# frozen_string_literal: true
require 'pagy/extras/countless'
Pagy::DEFAULT[:limit] = 10
Pagy::DEFAULT.freeze
ActiveSupport.on_load(:action_view) do
include Pagy::Frontend
end
Pagy.options[:limit] = 10
+1 -1
View File
@@ -8,7 +8,7 @@ default: &default
shakapacker_precompile: true
webpack_compile_output: true
additional_paths: []
webpack_loader: 'babel'
javascript_transpiler: 'babel'
compiler_strategy: digest
cache_manifest: false
ensure_consistent_versioning: false
+1 -1
View File
@@ -26,7 +26,7 @@ google:
cache_control: "public, max-age=31536000"
azure:
service: AzureStorage
service: AzureBlob
storage_account_name: <%= ENV['AZURE_STORAGE_ACCOUNT_NAME'] %>
storage_access_key: <%= ENV['AZURE_STORAGE_ACCESS_KEY'] %>
container: <%= ENV['AZURE_CONTAINER'] %>