Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
antopalidi committed Dec 22, 2024
1 parent 0def5a0 commit fbd0a9a
Show file tree
Hide file tree
Showing 82 changed files with 10,334 additions and 2,964 deletions.
4 changes: 2 additions & 2 deletions .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: 3.1.1
RUBY_VERSION: 3.2.2
NODE_VERSION: 18.17.1

jobs:
Expand Down Expand Up @@ -40,4 +40,4 @@ jobs:
name: Lint SCSS files

- run: bundle exec erblint app/**/*.erb
name: Lint ERB files
name: Lint ERB files
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CI: 1
SIMPLECOV: 1
NODE_VERSION: 18.17.1
RUBY_VERSION: 3.1.1
RUBY_VERSION: 3.2.2
BUNDLE_GEMFILE: Gemfile
DISPLAY: ":99"
PARALLEL_TEST_PROCESSORS: 2
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
with:
name: workspace
path: /tmp

- run: tar -zxf /tmp/testapp-env.tar.gz
name: Restore application

Expand Down
2 changes: 1 addition & 1 deletion .gitpod.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN sudo apt-get update && sudo apt-get install -y redis-server apt-transport-h
USER gitpod
SHELL ["/bin/bash", "-c"]

RUN cd && /home/gitpod/.rvm/bin/rvm install "ruby-3.1.1"
RUN cd && /home/gitpod/.rvm/bin/rvm install "ruby-3.2.2"
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ CHANGELOG
Current
-------
Compatibility:
- Decidim v0.28.x
- Decidim v0.29.x

Features:
- Added user time zones in account settings
v0.12.0
-------
Compatibility:
- Decidim v0.29.x

v0.11.2
-------
Expand All @@ -18,6 +20,7 @@ Compatibility:
Features:
- SQL vulnerability fix for admin accountability
- Private fields proposal draft update fix
- Added user time zones in account settings

v0.11.1
------
Expand Down Expand Up @@ -98,7 +101,7 @@ Compatibility:

Features:
- Fixes for the menu hacker

v0.9.1
------

Expand Down
10 changes: 4 additions & 6 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.28.4"
DECIDIM_VERSION = "0.29.1"

gem "decidim", DECIDIM_VERSION
# this causes failures if not enabled (check if still necessary in the future)
Expand All @@ -20,17 +20,15 @@ group :development, :test do

gem "decidim-dev", DECIDIM_VERSION

gem "brakeman", "~> 5.4"
gem "net-imap", "~> 0.2.3"
gem "net-pop", "~> 0.1.1"
gem "brakeman", "~> 6.1"
gem "net-imap", "~> 0.4.16"
gem "net-pop", "~> 0.1.2"
gem "net-smtp", "~> 0.3.1"
gem "parallel_tests", "~> 4.2"
end

group :development do
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"
end
Loading

0 comments on commit fbd0a9a

Please sign in to comment.