Skip to content

Commit

Permalink
Bump decidim from 0.26.8 to 0.27.5 (#118)
Browse files Browse the repository at this point in the history
* Bump decidim from 0.26.8 to 0.27.5

* Fix overrides_spec.rb

* Fix JS import

* Fix scoped admins spec

* Fix participatory process override

* Lock ChromeDriver to 119.0.6045.105

* Fix participatory processes spec

* Change SSL configuration
  • Loading branch information
fblupi authored Jan 16, 2024
1 parent 2727cd1 commit 6073ee4
Show file tree
Hide file tree
Showing 237 changed files with 162,198 additions and 8,592 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.8
RUBY_VERSION: 3.0.6
NODE_VERSION: 16.20.2

jobs:
Expand Down
6 changes: 5 additions & 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.8
RUBY_VERSION: 3.0.6
NODE_VERSION: 16.20.2
RAILS_ENV: test
DATABASE_USERNAME: postgres
Expand Down Expand Up @@ -36,6 +36,10 @@ jobs:
ruby-version: ${{ env.RUBY_VERSION }}
bundler-cache: true

- uses: nanasess/setup-chromedriver@v2
with:
chromedriver-version: 119.0.6045.105

- name: Setup & create Database
run: |
bundle exec rails db:create db:schema:load
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ public/uploads
/public/decidim-packs
/public/packs
/public/packs-test
.rubocop-https*
public/sw.js*
24 changes: 21 additions & 3 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
inherit_from:
- .rubocop_ruby.yml
- .rubocop_rails.yml
inherit_from: https://raw.githubusercontent.com/decidim/decidim/release/0.27-stable/.rubocop.yml

AllCops:
Include:
- "**/*.rb"
- "**/*.rake"
- "**/*.ru"
- "**/Gemfile"
- "**/Rakefile"
Exclude:
- "development_app/**/*"
- "**/development_app/**/*"
- "spec/decidim_dummy_app/**/*"
- "**/spec/decidim_dummy_app/**/*"
- "bin/**/*"
- "node_modules/**/*"
- "**/node_modules/**/*"
- "db/schema.rb"
- "db/migrate/*"
- "vendor/**/*"
- "**/vendor/**/*"
87 changes: 0 additions & 87 deletions .rubocop_rails.yml

This file was deleted.

Loading

0 comments on commit 6073ee4

Please sign in to comment.