Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5caa0d9
Validate event name for frontend logging (#9438)
Oct 31, 2023
f806c3e
Upgrade to Rails 7.1 (#9357)
Oct 31, 2023
8893785
Add missing title for SMS opt-in (#9493)
aduth Oct 31, 2023
8d57a93
Make Pii::Cacher#fetch_string a private method (#9492)
jmhooper Oct 31, 2023
9373d2b
Update devise to fix deprecation warning (#9496)
Oct 31, 2023
98b0c73
Remove unused images (#9487)
aduth Oct 31, 2023
8fc8d84
Check in schema changes for Rails 7.1 upgrade (#9502)
soniaconnolly Oct 31, 2023
6a4d5db
LG-11278: Group authentication app setup fields with fieldset (#9484)
aduth Nov 1, 2023
ccb2192
LG 11140 Break up webauthn selection presenter (#9467)
kevinsmaster5 Nov 1, 2023
fa208c0
Modify `Pii::Cacher#save_decrypted_pii_json` to be `Pii:Cacher#save_d…
jmhooper Nov 1, 2023
ab1576e
Remove unused IconList components (#9499)
aduth Nov 1, 2023
2cd0bbf
Add feature spec coverage for SMS opt-in (#9497)
aduth Nov 1, 2023
bee5010
Fix bug with missing require in email-deliveries script (#9507)
Nov 1, 2023
09711c5
LG-11441 - Fix Flakey In-person Enrollment test (#9477)
jack-ryan-nava-pbc Nov 1, 2023
b9db924
LG-10760: refactor validations for DocPiiForm (#9469)
amirbey Nov 1, 2023
a989ff7
Add cumulative quarterly counts to key metrics report (LG-11156) (#9503)
zachmargolis Nov 1, 2023
a1e147c
Add watch_events Makefile target (#9505)
aduth Nov 1, 2023
109c4ad
LG-11023 Unpublish old come_back_later URL and republish old enter_co…
jmhooper Nov 1, 2023
32acb07
Add automated communication to account reinstatement (LG-11330) (#9510)
zachmargolis Nov 1, 2023
331e633
Update RuboCop (#9514)
Nov 1, 2023
24abb7f
Update Account Deletion Rate to match data.login.gov (#9516)
zachmargolis Nov 1, 2023
c8273cf
Add mutex around cloudwatch client progress bar (#9513)
zachmargolis Nov 2, 2023
944d607
Ignore legacy event names with hardcoded list (#9480)
aduth Nov 2, 2023
8b0acc5
Adds APG (Agency Priority Goals) user counts (LG-11156) (#9519)
zachmargolis Nov 2, 2023
128d3e2
Add a Pii::ProfileCacher class (#9509)
jmhooper Nov 2, 2023
9897b8d
Fix error for SMS opt-in missing title (#9521)
Nov 2, 2023
a2af4c8
LG 11140 webauthn selection presenter spec improvement (#9517)
kevinsmaster5 Nov 2, 2023
05c909d
LG 11273 Accessibility - remove redundant aria-required attribute (#9…
kevinsmaster5 Nov 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
26 changes: 25 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ AllCops:
- 'vendor/**/*'
- 'public/**/*'
TargetRubyVersion: 3.2.0
TargetRailsVersion: 7.0
TargetRailsVersion: 7.1
UseCache: true
DisabledByDefault: true
SuggestExtensions: false
Expand Down Expand Up @@ -786,6 +786,9 @@ Performance/StartWith:
Performance/StringIdentifierArgument:
Enabled: true

Performance/StringInclude:
Enabled: true

Performance/StringReplacement:
Enabled: true

Expand Down Expand Up @@ -1082,6 +1085,9 @@ Style/DefWithParentheses:
Style/Dir:
Enabled: true

Style/DirEmpty:
Enabled: true

Style/EachForSimpleLoop:
Enabled: true

Expand Down Expand Up @@ -1114,6 +1120,9 @@ Style/EndBlock:
Style/EvalWithLocation:
Enabled: true

Style/ExactRegexpMatch:
Enabled: true

Style/For:
Enabled: true
EnforcedStyle: each
Expand Down Expand Up @@ -1274,6 +1283,21 @@ Style/RedundantFreeze:
Style/RedundantInterpolation:
Enabled: true

Style/RedundantHeredocDelimiterQuotes:
Enabled: true

Style/RedundantLineContinuation:
Enabled: true

Style/RedundantArrayConstructor:
Enabled: true

Style/RedundantFilterChain:
Enabled: true

Style/RedundantRegexpConstructor:
Enabled: true

Style/RedundantParentheses:
Enabled: true

Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }

ruby "~> #{File.read(File.join(__dir__, '.ruby-version')).strip}"

gem 'rails', '~> 7.0.0'
gem 'rails', '~> 7.1.0'

gem 'activerecord-postgis-adapter'
gem 'activerecord-postgis-adapter', '~> 9.0'
gem 'ahoy_matey', '~> 3.0'
gem 'aws-sdk-kms', '~> 1.4'
gem 'aws-sdk-cloudwatchlogs', require: false
Expand Down Expand Up @@ -110,7 +110,7 @@ group :development, :test do
gem 'rspec', '~> 3.12.0'
gem 'rspec-rails', '~> 6.0'
gem 'rubocop', '~> 1.55.1', require: false
gem 'rubocop-performance', '~> 1.18.0', require: false
gem 'rubocop-performance', '~> 1.19.0', require: false
gem 'rubocop-rails', '>= 2.5.2', require: false
gem 'rubocop-rspec', require: false
end
Expand Down
Loading