Skip to content

Release v4.0.0 #680

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

Merged
merged 38 commits into from
Apr 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
85dd90f
build(deps): bump addressable from 2.7.0 to 2.8.0 (#649)
dependabot[bot] Jul 13, 2021
9aa0c5f
build(deps): bump sidekiq from 6.1.3 to 6.2.1 (#651)
dependabot[bot] Dec 1, 2021
9343a7f
build(deps): bump nokogiri from 1.11.4 to 1.12.5 (#650)
dependabot[bot] Dec 1, 2021
22b3f8d
build(deps): bump jmespath from 1.4.0 to 1.6.1 (#659)
dependabot[bot] Jun 30, 2022
8852d95
build(deps): bump rack from 2.2.3 to 2.2.3.1 (#658)
dependabot[bot] Jun 30, 2022
d335ce4
build(deps): bump nokogiri from 1.12.5 to 1.13.6 (#657)
dependabot[bot] Jun 30, 2022
c0f038e
build(deps): bump image_processing from 1.12.1 to 1.12.2 (#654)
dependabot[bot] Jun 30, 2022
ef58e4d
build(deps): bump sidekiq from 6.2.1 to 6.4.0 (#652)
dependabot[bot] Jun 30, 2022
a639875
update Rails to latest patch version (6.1.3 -> 6.1.6) + other minor u…
markets Jun 30, 2022
60fbd67
build(deps): bump nokogiri from 1.13.6 to 1.13.9 (#662)
dependabot[bot] Oct 21, 2022
d91a32b
[Feat] Signup users (#661)
franpb14 Nov 2, 2022
a9c7d45
Remove UNLICENSE, add AGPL3 license (#664)
sseerrggii Nov 16, 2022
7c8aa24
[Feat] Manage memberships (#665)
franpb14 Dec 5, 2022
106cc0d
Tests, show/hide password and signup validations (#666)
franpb14 Dec 6, 2022
21e0cc5
[FIX] users now can modify their profile + bug when clicking the logo…
franpb14 Dec 8, 2022
2c3987d
[Feat] Confirmation email and new petitions emails (#668)
franpb14 Dec 10, 2022
eda77e6
build(deps): bump loofah from 2.18.0 to 2.19.1 (#670)
dependabot[bot] Dec 13, 2022
fbac20c
build(deps): bump rails-html-sanitizer from 1.4.3 to 1.4.4 (#671)
dependabot[bot] Dec 13, 2022
674a4ae
translation keys & minor fixes (#669)
franpb14 Dec 13, 2022
72e5469
Merge branch 'develop' into manage_users_base
markets Dec 13, 2022
af4e2ab
update localeapp + pull translations
markets Dec 13, 2022
8b17936
add Petition model to admin + minor UI tweaks
markets Jan 10, 2023
974f6ad
build(deps): bump rack from 2.2.3.1 to 2.2.6.2 (#674)
dependabot[bot] Jan 19, 2023
1a3cf24
build(deps): bump globalid from 1.0.0 to 1.0.1 (#675)
dependabot[bot] Jan 19, 2023
cd69356
custom icon mapping for Post categories (ref: #673)
markets Feb 3, 2023
4208e1a
Merge branch 'develop' into manage_users_base
markets Feb 3, 2023
a70ef9b
[feat] allow organizations to add custom logo (de-hardcodes Redeira c…
markets Feb 13, 2023
60d6c36
build(deps): bump rack from 2.2.6.2 to 2.2.6.3 (#676)
dependabot[bot] Mar 9, 2023
afafeaf
TravisCI -> GH Actions (#648)
markets Mar 14, 2023
c3dc673
Merge branch 'develop' into manage_users_base
markets Mar 14, 2023
25e32fb
Refactor categories icons. Now they are editable from the admin section.
markets Mar 15, 2023
ac5486b
[deps] upgrade Rails to latest 6.1 patch
markets Mar 15, 2023
e467044
🌐 update translations
markets Mar 27, 2023
8b884ca
Merge pull request #663 from coopdevs/manage_users_base
markets Mar 27, 2023
1820729
[FIX] do not show movements if user is not an active member of the gi…
markets Mar 30, 2023
cc4e2d6
[deps] update RDiscount (closes #555)
markets Apr 1, 2023
e2aeba7
[NZ changes] reset password fixes, translatable terms, Inquiry -> Req…
franpb14 Apr 1, 2023
e6208cf
[UI/UX] some random small enhancements πŸ’… (#679)
markets Apr 2, 2023
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
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:9.4
ports: ["5432:5432"]
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: timeoverflow_test
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Run tests
env:
RAILS_ENV: test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
run: |
bundle exec rails db:setup
bundle exec rspec
- name: Publish code coverage
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: ${{ github.workspace }}/coverage/coverage.json:simplecov
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

17 changes: 8 additions & 9 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
source 'https://rubygems.org'

ruby File.read('.ruby-version').strip

gem 'rails', '~> 6.1.1'
gem 'rails-i18n', '~> 6.0.0'
gem 'rdiscount', '~> 2.2.0.1'
gem 'rdiscount', '~> 2.2.7'
gem 'rubyzip', '~> 2.3.0'
gem 'activeadmin', '~> 2.9.0'
gem 'bootsnap', '~> 1.7.3', require: false
gem 'bootsnap', '~> 1.12.0', require: false
gem 'has_scope', '~> 0.7.2'
gem 'pundit', '~> 2.1.0'
gem 'pg', '~> 1.2.1'
gem 'pg', '~> 1.4'
gem 'json_translate', '~> 4.0.0'
gem 'devise', '~> 4.7.1'
gem 'devise', '~> 4.9.1'
gem 'devise-i18n', '~> 1.11.0'
gem 'http_accept_language', '~> 2.1.1'
gem 'unicorn', '~> 5.5.1'
gem 'kaminari', '~> 1.2.1'
Expand All @@ -22,10 +21,10 @@ gem 'prawn', '~> 2.4.0'
gem 'prawn-table', '~> 0.2.2'
gem 'pg_search', '~> 2.3.5'
gem 'skylight', '~> 5.0'
gem 'sidekiq', '~> 6.1.2'
gem 'sidekiq', '~> 6.4.0'
gem 'sidekiq-cron', '~> 1.2.0'
gem 'aws-sdk-s3', '~> 1.94', require: false
gem 'image_processing', '~> 1.2'
gem 'image_processing', '~> 1.12'

# Assets
gem 'jquery-rails', '~> 4.3.5'
Expand All @@ -36,7 +35,7 @@ gem 'select2-rails', '~> 4.0.13'

group :development do
gem 'listen', '~> 3.2.0'
gem 'localeapp', '~> 3.1', require: false
gem 'localeapp', '~> 3.3', require: false
gem 'letter_opener', '~> 1.7.0'
gem 'web-console', '~> 4.1.0'
gem 'capistrano', '~> 3.1'
Expand Down
Loading