Skip to content

Commit

Permalink
Merge pull request #2181 from massgov/release/0.372.0
Browse files Browse the repository at this point in the history
Release 0.372.0
  • Loading branch information
weitzman authored Sep 6, 2023
2 parents 24db7a5 + 2df2679 commit 6123182
Show file tree
Hide file tree
Showing 45 changed files with 34,621 additions and 636 deletions.
2 changes: 1 addition & 1 deletion .build_trigger
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Use this file to trigger new builds, if needed.
Build 30 (bottles of beer on the wall)..
Build 31 (bottles of beer on the wall)..
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,17 @@ jobs:
# @todo When needed, switch to https://circleci.com/developer/orbs/orb/circleci/github-cli
- run: scripts/tag-release-deploy

acquia_db_backup:
working_directory: /tmp/code
docker:
- image: cimg/php:8.0-node
steps:
- attach_workspace: { at: /tmp }
- fetch_drush_aliases
- *vendor_bin_add_path
- run:
command: "drush ma:backup -v prod"

validate:
working_directory: /tmp/code
docker:
Expand Down Expand Up @@ -1136,6 +1147,16 @@ workflows:
skip-maint: << pipeline.parameters.skip-maint >>
refresh-db: << pipeline.parameters.refresh-db >>

# Nightly On Demand Prod DB Backup
nightly_prod_db_backup:
when:
and:
- equal: [ nightly_prod_db_backup, << pipeline.parameters.trigger_workflow >> ]
jobs:
- build
- acquia_db_backup:
requires: [ build ]

# Nightly Backstop image references.
nightly_backstop_snapshot:
when:
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@


## [0.372.0] - September 5, 2023

### Changed
- DP-25149: Revert Akamai version which got moved up recently. Fixes test failures.
- DP-28733: Remove aria-labelledby from key actions, title attribute from its comp heading and correct the heading level.
- DP-288257: Consolidate two Drush commands into one - ma:heal-references-to-trash
- DP-28842: Drupal 10 compat - Update Entity Embed and LinkIt
- DP-29492: Config change to load Google Tag manager in all paths including author paths.

### Removed
- DP-26154: Remove testing of service_details pages

### Fixed
- DP-28622: Export report of orphaned pages fixed.
- DP-29391: Fix flagging for migrated service details pages.

### Added
- DP-29259: Add metadata field mg_parent_org.
- DP-29392: Add drush ma:backup command for starting an on-demand DB backup.



## [0.371.0] - August 15, 2023

### Changed
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"drupal/acquia_purge": "^1",
"drupal/address": "^1.9",
"drupal/admin_toolbar": "^3.0",
"drupal/akamai": "dev-4.x",
"drupal/akamai": "^4",
"drupal/allowed_formats": "^2",
"drupal/asset_cache_bust": "^1.0",
"drupal/auto_entitylabel": "^3",
Expand Down Expand Up @@ -412,7 +412,7 @@
"Add a setting to enable/disable inline editing of existing entities (https://www.drupal.org/project/inline_entity_form/issues/2913571#comment-12811088)": "https://www.drupal.org/files/issues/2018-10-11/ief_edit_existing_2913571_7.patch"
},
"drupal/linkit": {
"Link shown after the autocomplete selection is the bare node/xxx link, not the alias (https://www.drupal.org/project/linkit/issues/2877535#comment-13505105)": "https://www.drupal.org/files/issues/2020-09-02/show_alias_in_autocomplete_selection-2877535-14.patch"
"Link shown after the autocomplete selection is the bare node/xxx link, not the alias (https://www.drupal.org/project/linkit/issues/2877535#comment-15028311)": "https://www.drupal.org/files/issues/2023-04-28/linkit-n2877535-50.patch"
},
"drupal/mailchimp_transactional": {
"Resolve #3337845 Drupal 10 upgrade": "https://git.drupalcode.org/project/mailchimp_transactional/-/merge_requests/13.patch"
Expand Down
73 changes: 40 additions & 33 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
uuid: 5f30beba-a15b-41b5-a305-f269800d5f44
langcode: en
status: true
dependencies:
module:
- system
dependencies: { }
id: GTM-MPHNMQ.64824a45262c46.58617083
label: GTM-MPHNMQ
weight: 0
Expand All @@ -26,8 +24,4 @@ conditions:
response_codes: |-
403
404
request_path:
id: request_path
negate: true
pages: "/admin/*\r\n/batch\r\n/node/add*\r\n/node/*/edit\r\n/node/*/delete\r\n/user/*/edit*\r\n/user/*/cancel*"
events: { }
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ id: node__advisory
label: 'Content: Advisory'
tags:
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_date: '[node:field_date_published:date:metadatadate]'
mass_metatag_overview: '[node:field_advisory_overview]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ tags:
mass_metatag_contact_details: '[node:field_contact]'
mass_metatag_date: '[node:field_binder_last_updated:date:metadatadate]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_resource_type: '[node:field_binder_binder_type:entity:name]'
mass_metatag_short_description: '[node:field_binder_short_desc]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Curated list'
tags:
mass_metatag_category: '[node:mass_services_category]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
mass_metatag_type: '[node:mass_related_terms]'
description: '[node:field_curatedlist_lede]'
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ id: node__decision
label: 'Content: Decision'
tags:
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_date: '[node:field_date_published:date:metadatadate]'
mass_metatag_overview: '[node:field_decision_overview]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Decision tree'
tags:
description: '[node:field_description]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
og_description: '[node:field_description]'
twitter_cards_type: summary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tags:
mass_metatag_category: events
mass_metatag_directions_url: '[node:field_event_address_type]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_sign_up_link: '[node:field_event_link_sign_up]'
mass_metatag_address: '[node:field_event_address_type]'
mass_metatag_date: '[node:field_event_date:start_date:metadatadate]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ id: node__executive_order
label: 'Content: Executive Order Page'
tags:
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_date: '[node:field_date_published:date:metadatadate]'
mass_metatag_overview: '[node:field_executive_order_overview]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Form page'
tags:
description: '[node:field_form_lede]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
og_description: '[node:field_form_lede]'
twitter_cards_type: summary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Guide Page'
tags:
mass_metatag_short_description: '[node:field_guide_page_lede]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_type: '[node:mass_related_terms]'
mass_metatag_category: '[node:mass_services_category]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: How-to Page'
tags:
mass_metatag_short_description: '[node:field_how_to_lede]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_parent_topic: '[node:dm_topics]'
mass_metatag_category: '[node:mass_services_category]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Information Details'
tags:
mass_metatag_category: '[node:mass_services_category]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_type: '[node:mass_related_terms]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
description: '[node:field_short_desc]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ tags:
mass_metatag_category: locations
mass_metatag_directions_url: 'https://maps.google.com/?q=[node:field_ref_contact_info_1:entity:field_ref_address:0:entity:field_address_address:mass_urlencode]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_address: '[node:field_ref_contact_info_1:entity:field_ref_address:0:entity:field_address_address]'
mass_metatag_date: '[node:created:custom:Ymd]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Location Details Page'
tags:
mass_metatag_short_description: '[node:field_location_details_lede]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
mass_metatag_parent_location: '[node:dm_locations]'
mass_metatag_associated_organization: '[node:dm_organizations]'
Expand Down
1 change: 1 addition & 0 deletions conf/drupal/config/metatag.metatag_defaults.node__news.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ tags:
twitter_cards_type: summary
twitter_cards_description: '[node:field_news_lede]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_external_organization: '[node:mass_external_organizations]'
mass_metatag_date: '[node:field_date_published:date:metadatadate]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ label: 'Content: Organization Landing Page'
tags:
mass_metatag_directions_url: 'https://maps.google.com/?q=[node:field_ref_contact_info_1:entity:field_ref_address:0:entity:field_address_address:mass_urlencode]'
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mass_metatag_online_contact_url: '[node:field_ref_contact_info_1:entity:field_ref_links:mass_jsonify_links]'
mass_metatag_address: '[node:field_ref_contact_info_1:entity:field_ref_address:0:entity:field_address_address]'
mass_metatag_location_listing_url: '[node:dm_child_locations]'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ id: node__person
label: 'Content: Person'
tags:
mass_metatag_organization: '[node:mass_organizations]'
mass_metatag_parent_organization: '[node:mass_parent_organizations]'
mg_stakeholder_org: '[node:field_state_organization_tax:entity:name]'
Loading

0 comments on commit 6123182

Please sign in to comment.