Skip to content

Commit

Permalink
Bump decidim from 0.26.9 to 0.27.5 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
fblupi authored Jan 31, 2024
1 parent 9375427 commit b8952b6
Show file tree
Hide file tree
Showing 212 changed files with 161,082 additions and 10,641 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
RUBY_VERSION: 2.7.3
RUBY_VERSION: 3.0.6
NODE_VERSION: 16.9.1

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
pull_request:

env:
RUBY_VERSION: 2.7.3
RUBY_VERSION: 3.0.6
NODE_VERSION: 16.9.1

jobs:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,6 @@ yarn-debug.log*

.rbenv-vars
config/application.yml

public/sw.js*
public/sw.js.map*
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
inherit_from: https://raw.githubusercontent.com/decidim/decidim/release/0.26-stable/.rubocop.yml
inherit_from: https://raw.githubusercontent.com/decidim/decidim/release/0.27-stable/.rubocop.yml

AllCops:
Include:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.7.3
ruby-3.0.6
5 changes: 3 additions & 2 deletions Capfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ require 'capistrano/setup'
# Include default deployment tasks
require 'capistrano/deploy'

require "capistrano/scm/git"
install_plugin Capistrano::SCM::Git

# Include tasks from other gems included in your Gemfile
#
# For documentation on these, see for example:
Expand All @@ -23,8 +26,6 @@ require 'capistrano/deploy'
require 'capistrano/rbenv'
require 'capistrano/nvm'
require 'capistrano/rails'
require 'capistrano-db-tasks'
require 'airbrussh/capistrano'
require 'capistrano/bundler'
require 'capistrano/passenger'
require 'capistrano/delayed_job'
Expand Down
44 changes: 22 additions & 22 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ source "https://rubygems.org"

ruby RUBY_VERSION

DECIDIM_VERSION = { git: "https://github.com/decidim/decidim.git", branch: "release/0.26-stable" }.freeze

gem "activerecord-session_store"
DECIDIM_VERSION = "0.27.5"

gem "decidim", DECIDIM_VERSION
gem "decidim-consultations", DECIDIM_VERSION
gem "decidim-direct_verifications", "~> 1.2.0"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "release/0.26-stable"

gem "decidim-direct_verifications", git: "https://github.com/Platoniq/decidim-verifications-direct_verifications", branch: "release/0.27-stable"
gem "decidim-term_customizer", git: "https://github.com/mainio/decidim-module-term_customizer", branch: "release/0.27-stable"

gem "omniauth-saml", "~> 2.0"

# Metrics require a queue system and a daily cron
Expand All @@ -22,36 +22,36 @@ gem "whenever", require: false

gem "bootsnap", "~> 1.3"

gem "puma", "~> 5.0"
gem "uglifier", "~> 4.1"
gem "puma", ">= 5.0.0"

gem "faker", "~> 2.14"

gem "deface"
gem "httplog"
gem "wicked_pdf", "~> 2.1"

gem "deface", "~> 1.9"

group :development, :test do
gem "byebug", platform: :mri
gem "byebug", "~> 11.0", platform: :mri
gem "rubocop-faker"

gem "brakeman"
gem "decidim-dev", DECIDIM_VERSION
gem "faker", "~> 2.14"
gem "rspec-rails"
end

group :development do
gem "airbrussh", require: false
gem "capistrano", "3.3.5"
gem "letter_opener_web", "~> 2.0"
gem "listen", "~> 3.1"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 4.2"

gem "capistrano", "~> 3.14"
gem "capistrano3-delayed-job", "~> 1.0"
gem "capistrano-bundler", "~> 1.2"
gem "capistrano-db-tasks", require: false
gem "capistrano-faster-assets", "~> 1.0"
gem "capistrano-nvm"
gem "capistrano-passenger"
gem "capistrano-rails"
gem "capistrano-rbenv"
gem "letter_opener_web", "~> 1.3"
gem "listen", "~> 3.1"
gem "rubocop-faker"
gem "spring", "~> 2.0"
gem "spring-watcher-listen", "~> 2.0"
gem "web-console", "~> 3.5"
end

group :production do
Expand Down
Loading

0 comments on commit b8952b6

Please sign in to comment.