Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Bump fog-openstack from 0.3.10 to 1.1.3 #252

Open
wants to merge 1 commit into
base: legacy/plaza
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
⬆️ Bump fog-openstack from 0.3.10 to 1.1.3
Bumps [fog-openstack](https://github.com/fog/fog-openstack) from 0.3.10 to 1.1.3.
- [Release notes](https://github.com/fog/fog-openstack/releases)
- [Changelog](https://github.com/fog/fog-openstack/blob/master/CHANGELOG.md)
- [Commits](fog/fog-openstack@v0.3.10...v1.1.3)

---
updated-dependencies:
- dependency-name: fog-openstack
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Sep 23, 2024
commit 81db52bced2315499a21c883d5c74314c24dfcdd
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ gem 'dotenv-rails', '~> 2.8'

gem 'aws-sdk-s3', '~> 1.119', require: false
gem 'fog-core', '<= 2.4.0'
gem 'fog-openstack', '~> 0.3', require: false
gem 'fog-openstack', '~> 1.1', require: false
gem 'kt-paperclip', '~> 7.1', github: 'kreeti/kt-paperclip', ref: '11abf222dc31bff71160a1d138b445214f434b2b'
gem 'blurhash', '~> 0.1'

14 changes: 6 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -148,7 +148,7 @@ GEM
brpoplpush-redis_script (0.1.3)
concurrent-ruby (~> 1.0, >= 1.0.5)
redis (>= 1.0, < 6)
builder (3.2.4)
builder (3.3.0)
bullet (7.0.7)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.11)
@@ -246,7 +246,7 @@ GEM
erubi (1.12.0)
et-orbi (1.2.7)
tzinfo
excon (0.95.0)
excon (0.111.0)
fabrication (2.30.0)
faker (3.1.1)
i18n (>= 1.8.11, < 2)
@@ -287,10 +287,9 @@ GEM
fog-json (1.2.0)
fog-core
multi_json (~> 1.10)
fog-openstack (0.3.10)
fog-core (>= 1.45, <= 2.1.0)
fog-openstack (1.1.3)
fog-core (~> 2.1)
fog-json (>= 1.0)
ipaddress (>= 0.8)
formatador (0.3.0)
fugit (1.8.1)
et-orbi (~> 1, >= 1.2.7)
@@ -342,7 +341,6 @@ GEM
rainbow (>= 2.2.2, < 4.0)
terminal-table (>= 1.5.1)
idn-ruby (0.1.5)
ipaddress (0.8.3)
jmespath (1.6.2)
json (2.6.3)
json-canonicalization (0.3.0)
@@ -413,7 +411,7 @@ GEM
method_source (1.0.0)
mime-types (3.4.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mime-types-data (3.2024.0903)
mini_mime (1.1.2)
mini_portile2 (2.8.1)
minitest (5.18.0)
@@ -811,7 +809,7 @@ DEPENDENCIES
fast_blank (~> 1.0)
fastimage
fog-core (<= 2.4.0)
fog-openstack (~> 0.3)
fog-openstack (~> 1.1)
fuubar (~> 2.5)
haml-rails (~> 2.0)
hiredis (~> 0.6)

Unchanged files with check annotations Beta

# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)

Check failure on line 4 in /Rakefile

GitHub Actions / lint

[Correctable] Style/ExpandPathArguments: Use expand_path('config/application', __dir__) instead of expand_path('../config/application', __FILE__).
Rails.application.load_tasks
# -*- mode: ruby -*-
# vi: set ft=ruby :
ENV["PORT"] ||= "3000"

Check failure on line 4 in /Vagrantfile

GitHub Actions / lint

[Correctable] Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols. (https://rubystyle.guide#consistent-string-literals)

Check failure on line 4 in /Vagrantfile

GitHub Actions / lint

[Correctable] Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols. (https://rubystyle.guide#consistent-string-literals)
$provisionA = <<SCRIPT

Check failure on line 6 in /Vagrantfile

GitHub Actions / lint

Style/GlobalVars: Do not introduce global variables. (https://rubystyle.guide#instance-vars, https://www.zenspider.com/ruby/quickref.html)

Check failure on line 7 in /Vagrantfile

GitHub Actions / lint

[Correctable] Layout/HeredocIndentation: Use 2 spaces for indentation in a heredoc by using <<~ instead of <<. (https://rubystyle.guide#squiggly-heredocs)
# Add the yarn repo + yarn repo keys
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
sudo apt-add-repository 'deb https://dl.yarnpkg.com/debian/ stable main'
curl -sL https://deb.nodesource.com/setup_16.x | sudo bash -
# Add firewall rule to redirect 80 to PORT and save
sudo iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port #{ENV["PORT"]}

Check failure on line 16 in /Vagrantfile

GitHub Actions / lint

[Correctable] Style/FetchEnvVar: Use ENV.fetch("PORT") or ENV.fetch("PORT", nil) instead of ENV["PORT"]. (https://rubystyle.guide/#hash-fetch-defaults)

Check failure on line 16 in /Vagrantfile

GitHub Actions / lint

[Correctable] Style/StringLiteralsInInterpolation: Prefer single-quoted strings inside interpolations.
echo iptables-persistent iptables-persistent/autosave_v4 boolean true | sudo debconf-set-selections
echo iptables-persistent iptables-persistent/autosave_v6 boolean true | sudo debconf-set-selections
sudo apt-get install iptables-persistent -y
SCRIPT
$provisionB = <<SCRIPT

Check failure on line 63 in /Vagrantfile

GitHub Actions / lint

Style/GlobalVars: Do not introduce global variables. (https://rubystyle.guide#instance-vars, https://www.zenspider.com/ruby/quickref.html)

Check failure on line 64 in /Vagrantfile

GitHub Actions / lint

[Correctable] Layout/HeredocIndentation: Use 2 spaces for indentation in a heredoc by using <<~ instead of <<. (https://rubystyle.guide#squiggly-heredocs)
source "/etc/profile.d/rvm.sh"
# Install Ruby
yarn install
# Build Mastodon
export RAILS_ENV=development

Check failure on line 87 in /Vagrantfile

GitHub Actions / lint

[Correctable] Layout/TrailingWhitespace: Trailing whitespace detected. (https://rubystyle.guide#no-trailing-whitespace)
export $(cat ".env.vagrant" | xargs)
bundle exec rails db:setup
config.hostsupdater.remove_on_suspend = false
end
if config.vm.networks.any? { |type, options| type == :private_network }

Check warning on line 134 in /Vagrantfile

GitHub Actions / lint

[Correctable] Lint/UnusedBlockArgument: Unused block argument - options. If it's necessary, use _ or _options as an argument name to indicate that it won't be used. (https://rubystyle.guide#underscore-unused-vars)
config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['rw', 'actimeo=1']
else
config.vm.synced_folder ".", "/vagrant"
config.to_prepare do
Doorkeeper::AuthorizationsController.layout 'modal'
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
Doorkeeper::Application.send :include, ApplicationExtension

Check warning on line 190 in /config/application.rb

GitHub Actions / lint

[Correctable] Lint/SendWithMixinArgument: Use include ApplicationExtension instead of send :include, ApplicationExtension.
Doorkeeper::AccessToken.send :include, AccessTokenExtension

Check warning on line 191 in /config/application.rb

GitHub Actions / lint

[Correctable] Lint/SendWithMixinArgument: Use include AccessTokenExtension instead of send :include, AccessTokenExtension.
Devise::FailureApp.send :include, AbstractController::Callbacks

Check warning on line 192 in /config/application.rb

GitHub Actions / lint

[Correctable] Lint/SendWithMixinArgument: Use include AbstractController::Callbacks instead of send :include, AbstractController::Callbacks.
Devise::FailureApp.send :include, Localized

Check warning on line 193 in /config/application.rb

GitHub Actions / lint

[Correctable] Lint/SendWithMixinArgument: Use include Localized instead of send :include, Localized.
end
end
end
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
# Rails.application.config.content_security_policy_report_only = true
Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }

Check warning on line 51 in /config/initializers/content_security_policy.rb

GitHub Actions / lint

[Correctable] Lint/UnusedBlockArgument: Unused block argument - request. If it's necessary, use _ or _request as an argument name to indicate that it won't be used. Also consider using a proc without arguments instead of a lambda if you want it to accept any arguments but don't care about them. (https://rubystyle.guide#underscore-unused-vars)
Rails.application.config.content_security_policy_nonce_directives = %w(style-src)
p.worker_src :none
end
LetterOpenerWeb::LettersController.after_action do |p|

Check warning on line 76 in /config/initializers/content_security_policy.rb

GitHub Actions / lint

[Correctable] Lint/UnusedBlockArgument: Unused block argument - p. You can omit the argument if you don't care about it. (https://rubystyle.guide#underscore-unused-vars)
request.content_security_policy_nonce_directives = %w(script-src)
end
end
# Under some circumstances you might want to have applications auto-approved,
# so that the user skips the authorization step.
# For example if dealing with a trusted application.
skip_authorization do |resource_owner, client|

Check warning on line 170 in /config/initializers/doorkeeper.rb

GitHub Actions / lint

[Correctable] Lint/UnusedBlockArgument: Unused block argument - resource_owner. If it's necessary, use _ or _resource_owner as an argument name to indicate that it won't be used. (https://rubystyle.guide#underscore-unused-vars)
client.application.superapp?
end
Devise.setup do |config|
# Devise omniauth strategies
options = {}

Check warning on line 7 in /config/initializers/omniauth.rb

GitHub Actions / lint

Lint/UselessAssignment: Useless assignment to variable - options. Did you mean saml_options? (https://rubystyle.guide#underscore-unused-vars)
# CAS strategy
if ENV['CAS_ENABLED'] == 'true'
end
end
Paperclip.interpolates :prefix_path do |attachment, style|

Check warning on line 14 in /config/initializers/paperclip.rb

GitHub Actions / lint

[Correctable] Lint/UnusedBlockArgument: Unused block argument - style. If it's necessary, use _ or _style as an argument name to indicate that it won't be used. (https://rubystyle.guide#underscore-unused-vars)
if attachment.storage_schema_version >= 1 && attachment.instance.respond_to?(:local?) && !attachment.instance.local?
'cache' + File::SEPARATOR
else