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

Update Decidim version to use redesigned version #95

Draft
wants to merge 30 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3f9efad
Add anonymize task
entantoencuanto Sep 28, 2023
0f6ef70
Upgrade decidim to 0.27.4
entantoencuanto Sep 28, 2023
163e899
Add static pages
entantoencuanto Sep 28, 2023
3de27f9
Update rails and spring
entantoencuanto Sep 28, 2023
2a1604c
Upgrade decididm version
entantoencuanto Sep 29, 2023
c56cdab
Update .gitignore
entantoencuanto Sep 29, 2023
55481c5
Update webpacker
entantoencuanto Sep 29, 2023
e3f383e
Move social_share_button configuration
entantoencuanto Sep 29, 2023
cb63141
Add pending migrations
entantoencuanto Sep 29, 2023
3b21637
Upgrade ruby version and update webpack
entantoencuanto Sep 29, 2023
0f0ccad
Update locales in application configuration to use :en as fallback
entantoencuanto Oct 3, 2023
a1eacbb
Use rails 6.1 defaults
entantoencuanto Oct 4, 2023
7fcba63
Fix pagination in participatory processes
entantoencuanto Oct 4, 2023
62180a0
Update social share services list
entantoencuanto Oct 4, 2023
4700216
Remove yarn references
entantoencuanto Oct 4, 2023
a64c0e3
Add support for arm arch
ferblape Oct 5, 2023
55c7aad
Rename app
ferblape Oct 5, 2023
605fbcb
Remove yarn tasks
ferblape Oct 5, 2023
9f22b06
Add engines
ferblape Oct 5, 2023
36cbec0
Add 7zip ruby gem
ferblape Oct 5, 2023
2447ad5
Add 7zip ruby gem
ferblape Oct 5, 2023
d1f11fe
Update gitignore
entantoencuanto Oct 5, 2023
902f578
Use Ruby 3.1.1
ferblape Oct 6, 2023
65d4c56
Disable production and staging send header
ferblape Oct 6, 2023
395ffc5
CSP directives
ferblape Oct 7, 2023
8ae38ee
Upgrade cron tasks
ferblape Oct 8, 2023
1453e77
Upgrade decidim develop revision
entantoencuanto Oct 11, 2023
13b1b6e
Add participatory process groups to home content block menu in decidi…
entantoencuanto Oct 26, 2023
3864fbd
Upgrade decidim version
entantoencuanto Nov 13, 2023
f9c7ae5
Install shakapacker
entantoencuanto Nov 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
# Ignore public uploads
public/uploads

# Ignore Tailwind configuration
tailwind.config.js

/public/decidim-packs
/public/packs
/public/packs-test
Expand All @@ -35,3 +38,5 @@ storage
manifest.json
.rbenv-vars
.nvmrc

/config/master.key
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.1.1
11 changes: 7 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# frozen_string_literal: true

DECIDIM_VERSION = "0.26.3"
DECIDIM_VERSION = { git: 'https://github.com/decidim/decidim', branch: 'develop' }.freeze

source "https://rubygems.org"

ruby "2.7.5"
ruby "3.1.1"

gem "decidim", DECIDIM_VERSION

Expand All @@ -20,9 +20,12 @@ gem "sentry-raven"
gem "sidekiq", "~> 6.5.6"
gem "dalli"

gem "faker", "~> 1.8"
gem "faker", "~> 3.2"
gem "appsignal"

gem "progressbar"
gem "seven_zip_ruby"

group :development, :test do
gem "decidim-dev", DECIDIM_VERSION
gem "dotenv-rails"
Expand All @@ -34,7 +37,7 @@ end

group :development do
gem "webmock"
gem "listen", "~> 3.1.0"
gem "listen", "~> 3.8.0"
gem "rubocop"
gem "spring"
gem "spring-commands-rspec"
Expand Down
Loading