Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ced55c5
Initial upgrade
antopalidi Oct 22, 2025
74d5a40
fix rubocop version
antopalidi Oct 22, 2025
f106ff5
change workflows
antopalidi Oct 22, 2025
483e421
Change of Valuator for Evaluator
antopalidi Oct 22, 2025
6a0a05b
change workflows
antopalidi Oct 22, 2025
418c50a
replace endorsements_count_item with likes_count_item
antopalidi Oct 22, 2025
9a61c75
replaced with_evaluation_assigned_to
antopalidi Oct 22, 2025
6c942d7
repmase endorsements to likes, fix tests
antopalidi Oct 22, 2025
00fc8b1
Fix defaults.to_h for Rails 7.1 compatibility
antopalidi Oct 22, 2025
4bc4d54
Fix choices lambdas and dropdown_submenu for Decidim 0.31
antopalidi Oct 22, 2025
56e944c
update Gemfile
antopalidi Oct 29, 2025
1adc40b
serialize_custom_fields
antopalidi Nov 10, 2025
33b3352
merge main
antopalidi Nov 10, 2025
ceb3ccf
fix public tests
antopalidi Nov 10, 2025
92e4af8
fix public tests
antopalidi Nov 10, 2025
5f3bd26
fix: add date-picker controller to date fields
antopalidi Nov 10, 2025
83747b8
add OpenDataExporterOverride
antopalidi Nov 10, 2025
f3c9286
fix private fields
antopalidi Nov 17, 2025
46a0b15
fix: restore editor image/video buttons
antopalidi Nov 17, 2025
898e20a
merge main into release/0.31-stable
antopalidi Nov 17, 2025
ce4321f
Checksums
antopalidi Nov 17, 2025
c5c2d11
fix test
antopalidi Nov 17, 2025
2248d16
change styles: admin_accountability
antopalidi Nov 17, 2025
87027de
fix tests
antopalidi Nov 17, 2025
3bddfa8
merge main into release/0.31-stable
antopalidi Nov 19, 2025
fdd86e7
update decidim
antopalidi Nov 19, 2025
ba7ead1
fix checksum
antopalidi Nov 19, 2025
6673400
fix i18n
antopalidi Nov 19, 2025
e763fa6
add translate
antopalidi Nov 19, 2025
3ce7859
update Decidim version
antopalidi Nov 20, 2025
5415830
fix checksum
antopalidi Nov 20, 2025
d0c630a
fix OpenDataExporterOverride
antopalidi Nov 20, 2025
0458b82
Apply suggestions from code review
antopalidi Nov 20, 2025
66b7eaa
fix checksums
antopalidi Nov 20, 2025
f8926d1
fix OpenDataExporterOverride
antopalidi Nov 20, 2025
e8df5e5
update README
antopalidi Nov 20, 2025
0838900
correct checksum file
microstudi Dec 3, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
RUBY_VERSION: 3.3.4
NODE_VERSION: 18.17.1
NODE_VERSION: 22.14.0
SHAKAPACKER_RUNTIME_COMPILE: "false"

concurrency:
Expand Down
25 changes: 17 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "[CI] Tests 0.30"
name: "[CI] Tests 0.31"

on:
push:
Expand All @@ -9,7 +9,7 @@ on:
env:
CI: 1
SIMPLECOV: 1
NODE_VERSION: 18.17.1
NODE_VERSION: 22.14.0
RUBY_VERSION: 3.3.4
BUNDLE_GEMFILE: Gemfile
DISABLE_SPRING: 1
Expand Down Expand Up @@ -105,15 +105,20 @@ jobs:
strategy:
matrix:
include:
- rspec: spec/awesome_summary_spec.rb
- pattern: spec/awesome_summary_spec.rb
exclude_pattern: ""
features: disabled
- rspec: spec\/(?!system)
- pattern: spec/
exclude_pattern: spec/system
features: enabled
- rspec: spec/system/admin
- pattern: spec/system/admin
exclude_pattern: ""
features: enabled
- rspec: spec/system/public
- pattern: spec/system/public
exclude_pattern: ""
features: enabled
- rspec: spec/system/awesome_map
- pattern: spec/system/awesome_map
exclude_pattern: ""
features: enabled
fail-fast: false

Expand Down Expand Up @@ -178,7 +183,11 @@ jobs:
run: |
sudo Xvfb -ac $DISPLAY -screen 0 1920x1084x24 > /dev/null 2>&1 &
ln -s spec/decidim_dummy_app spec/decidim_dummy_app_last
bundle exec parallel_test --type rspec --pattern '${{ matrix.rspec }}'
if [ -n "${{ matrix.exclude_pattern }}" ]; then
bundle exec parallel_test --type rspec --pattern '${{ matrix.pattern }}' --exclude-pattern '${{ matrix.exclude_pattern }}'
else
bundle exec parallel_test --type rspec --pattern '${{ matrix.pattern }}'
fi
env:
FEATURES: ${{ matrix.features }}

Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
inherit_from:
- https://raw.githubusercontent.com/decidim/decidim/release/0.30-stable/.rubocop.yml
- https://raw.githubusercontent.com/decidim/decidim/release/0.31-stable/.rubocop.yml

AllCops:
Exclude:
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source "https://rubygems.org"

ruby RUBY_VERSION

DECIDIM_VERSION = "0.30.3"
DECIDIM_VERSION = "0.31.0"

gem "decidim", DECIDIM_VERSION
gem "decidim-conferences", DECIDIM_VERSION
Expand All @@ -16,16 +16,16 @@ gem "bootsnap", "~> 1.4"

gem "puma", ">= 6.3.1"
# temporary fix for simplecov
gem "rexml", "3.4.0"
gem "rexml", "3.4.1"

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

gem "decidim-dev", DECIDIM_VERSION

gem "brakeman", "~> 6.1"
gem "brakeman", "~> 7.0"
gem "parallel_tests", "~> 4.2"
gem "rubocop-rails", "~> 2.25.1"
gem "rubocop-rails", "~> 2.32.0"
end

group :development do
Expand Down
Loading
Loading