diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6331a2e493b..808fc952394 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -120,16 +120,16 @@ specs: AWS_SECRET_ACCESS_KEY: test CAPYBARA_WAIT_TIME_SECONDS: 5 COVERAGE: 'true' - DOCKER_DB_HOST: postgres + DOCKER_DB_HOST: db-postgres POSTGRES_DB: identity_idp_test POSTGRES_USER: postgres_user POSTGRES_PASSWORD: postgres_password POSTGRES_HOST_AUTH_METHOD: trust RAILS_ENV: test services: - - name: postgres:13.9 + - name: postgis/postgis:13-3.3 alias: db-postgres - command: ["--fsync=false", "--synchronous_commit=false", "--full_page_writes=false"] + command: ['--fsync=false', '--synchronous_commit=false', '--full_page_writes=false'] - name: redis:7.0 alias: db-redis artifacts: @@ -258,4 +258,3 @@ trigger_devops: include: - template: Jobs/SAST.gitlab-ci.yml - template: Jobs/Dependency-Scanning.gitlab-ci.yml - diff --git a/Brewfile b/Brewfile index ac26eeacf37..76ea11b5282 100644 --- a/Brewfile +++ b/Brewfile @@ -1,4 +1,5 @@ brew 'postgresql@14' +brew 'postgis' brew 'redis' brew 'node@16' brew 'yarn' diff --git a/Gemfile b/Gemfile index 40a1feb67f2..a920533f249 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,7 @@ ruby "~> #{File.read(File.join(__dir__, '.ruby-version')).strip}" gem 'rails', '~> 7.0.0' +gem 'activerecord-postgis-adapter' gem 'ahoy_matey', '~> 3.0' gem 'aws-sdk-kms', '~> 1.4' gem 'aws-sdk-pinpoint' diff --git a/Gemfile.lock b/Gemfile.lock index 1a366e8b663..05e6ae139ef 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -113,6 +113,9 @@ GEM activerecord (7.0.4.3) activemodel (= 7.0.4.3) activesupport (= 7.0.4.3) + activerecord-postgis-adapter (8.0.2) + activerecord (~> 7.0.0) + rgeo-activerecord (~> 7.0.0) activestorage (7.0.4.3) actionpack (= 7.0.4.3) activejob (= 7.0.4.3) @@ -550,6 +553,10 @@ GEM railties (>= 5.0) retries (0.0.5) rexml (3.2.5) + rgeo (3.0.0) + rgeo-activerecord (7.0.1) + activerecord (>= 5.0) + rgeo (>= 1.0.0) rotp (6.2.0) rouge (4.1.1) rqrcode (2.1.0) @@ -722,6 +729,7 @@ PLATFORMS ruby DEPENDENCIES + activerecord-postgis-adapter ahoy_matey (~> 3.0) aws-sdk-cloudwatchlogs aws-sdk-kms (~> 1.4) diff --git a/app/assets/stylesheets/_uswds.scss b/app/assets/stylesheets/_uswds.scss index 352c195e5f7..5964271ffd8 100644 --- a/app/assets/stylesheets/_uswds.scss +++ b/app/assets/stylesheets/_uswds.scss @@ -6,7 +6,6 @@ @forward 'usa-alert'; @forward 'usa-banner'; @forward 'usa-button'; -@forward 'usa-button-group'; @forward 'usa-collection'; @forward 'usa-form'; @forward 'usa-header'; diff --git a/app/assets/stylesheets/utilities/_typography.scss b/app/assets/stylesheets/utilities/_typography.scss index 3b52fa8b0f4..5db68043ba7 100644 --- a/app/assets/stylesheets/utilities/_typography.scss +++ b/app/assets/stylesheets/utilities/_typography.scss @@ -99,28 +99,3 @@ h6, .h6 { @extend %h6; } - -.separator-text { - display: flex; - align-items: center; - text-align: center; - font-size: 1.125rem; - margin-bottom: 16px; - - &::before, - &::after { - content: ''; - display: block; - border-bottom: 1px solid color('primary-light'); - flex-grow: 1; - min-width: 2rem; - } - - &::before { - margin-right: 1rem; - } - - &::after { - margin-left: 1rem; - } -} diff --git a/app/components/tab_navigation_component.html.erb b/app/components/tab_navigation_component.html.erb index c9a89a8598a..005bebd90f8 100644 --- a/app/components/tab_navigation_component.html.erb +++ b/app/components/tab_navigation_component.html.erb @@ -1,13 +1,12 @@ -<%= content_tag(:nav, aria: { label: }, **tag_options) do %> +<%= content_tag(:nav, aria: { label: }, **tag_options, class: [*tag_options[:class], 'tab-navigation']) do %>