Skip to content

Commit

Permalink
Update to Decidim 0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
laurajaime committed Oct 11, 2024
1 parent 602ccc3 commit 2493a66
Show file tree
Hide file tree
Showing 66 changed files with 955 additions and 998 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1

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

env:
RUBY_VERSION: 3.0.7
RUBY_VERSION: 3.1.1
NODE_VERSION: 16.9.1

jobs:
Expand Down
6 changes: 5 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ AllCops:
# If a value is specified for TargetRubyVersion then it is used.
# Else if .ruby-version exists and it contains an MRI version it is used.
# Otherwise we fallback to the oldest officially supported Ruby version (2.0).
TargetRubyVersion: 3.0.7
TargetRubyVersion: 3.1.1
RSpec:
Patterns:
- "(?:^|/)spec/"
Expand Down Expand Up @@ -1194,10 +1194,14 @@ RSpec/DescribeClass:
- spec/gemfiles_spec.rb
- spec/js_bundles_spec.rb
- spec/i18n_spec.rb
- spec/system/*.rb
- "**/*/spec/**/*_badge_spec.rb"
- decidim-core/spec/lib/global_engines_spec.rb
- "**/tasks/**/*"

RSpec/NoExpectationExample:
Enabled: false

RSpec/EmptyExampleGroup:
Exclude:
- decidim-core/spec/lib/participatory_space_manifest_spec.rb
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.7
3.1.1
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Following Semantic Versioning 2.

## next version:

## Version 0.8.0 (MINOR)
- Upgrade Decidim to v0.28
- Upgrade Ruby to 3.1.1

## Version 0.7.1 (PATCH)
- Fix Zeitwerk errors with decorators

Expand Down
7 changes: 5 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ruby RUBY_VERSION

gemspec

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

# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
Expand All @@ -25,7 +25,10 @@ group :development, :test do
gem "decidim", DECIDIM_VERSION
gem "decidim-conferences", DECIDIM_VERSION
gem "faker"
gem "rubocop-rspec"
# Set versions because Property AutoCorrect errors.
gem "rspec-rails", "~> 6.0.4"
gem "rubocop-factory_bot", "2.25.1"
gem "rubocop-rspec", "2.26.1"
gem "social-share-button"
end

Expand Down
Loading

0 comments on commit 2493a66

Please sign in to comment.