Skip to content
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

23.10.1 #259

Merged
merged 7 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ Style/SymbolProc:
Lint/UnusedMethodArgument:
Enabled: false

# TODO: bug with false positives
Style/RedundantDoubleSplatHashBraces:
Enabled: false

# TODO: bug
Rails/UniqueValidationWithoutIndex:
Enabled: false
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## Version 23.10.1

- Improvement: Limit year calender scroll to 1 month
- Bugfixes

## Version 23.9.3

- Feature: Allow deadlines to be 0 in settings to skip
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ gem 'camt_parser'
gem 'cancancan'
gem 'connection_pool'
gem 'countries'
gem 'country_select', '~> 6.0'
gem 'country_select'
gem 'devise'
gem 'devise_invitable'
gem 'discard'
Expand All @@ -38,8 +38,8 @@ gem 'prawn-markup'
gem 'prawn-table'
gem 'puma'
gem 'rack-mini-profiler'
gem 'rails', '~> 7.0.0'
gem 'rails-i18n', '~> 7.0'
gem 'rails', '~> 7.1.0'
gem 'rails-i18n'
gem 'ranked-model'
gem 'react-rails'
gem 'redis'
Expand Down
Loading