From 60eb5f8463375ae82b36077c1ada8436bedf113d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 17:44:15 -0800 Subject: [PATCH 1/4] Bump va-gov/content-build from 0.0.3429 to 0.0.3430 (#17091) Bumps [va-gov/content-build](https://github.com/department-of-veterans-affairs/content-build) from 0.0.3429 to 0.0.3430. - [Release notes](https://github.com/department-of-veterans-affairs/content-build/releases) - [Commits](https://github.com/department-of-veterans-affairs/content-build/compare/v0.0.3429...v0.0.3430) --- updated-dependencies: - dependency-name: va-gov/content-build dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 7b2532d9a2..0fb95d6c6d 100644 --- a/composer.json +++ b/composer.json @@ -221,7 +221,7 @@ "symfony/phpunit-bridge": "^5.1", "symfony/process": "^6.3", "symfony/routing": "^6.3", - "va-gov/content-build": "^0.0.3429", + "va-gov/content-build": "^0.0.3430", "vlucas/phpdotenv": "^5.3", "webflo/drupal-finder": "^1.0.0", "webmozart/path-util": "^2.3", diff --git a/composer.lock b/composer.lock index 2501eab0c3..7d322ac8f5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2a14b89505286f392810a66b8939a15a", + "content-hash": "d363c8a38ec5069abe2023fd6c503a3a", "packages": [ { "name": "asm89/stack-cors", @@ -25809,16 +25809,16 @@ }, { "name": "va-gov/content-build", - "version": "v0.0.3429", + "version": "v0.0.3430", "source": { "type": "git", "url": "https://github.com/department-of-veterans-affairs/content-build.git", - "reference": "71a9793c894ecfa39c9c5b8e0951899fae917b50" + "reference": "00d80d0bdb96b1de83f6ec807eb29c876cd91797" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/department-of-veterans-affairs/content-build/zipball/71a9793c894ecfa39c9c5b8e0951899fae917b50", - "reference": "71a9793c894ecfa39c9c5b8e0951899fae917b50", + "url": "https://api.github.com/repos/department-of-veterans-affairs/content-build/zipball/00d80d0bdb96b1de83f6ec807eb29c876cd91797", + "reference": "00d80d0bdb96b1de83f6ec807eb29c876cd91797", "shasum": "" }, "type": "node-project", @@ -25845,9 +25845,9 @@ "description": "Front-end for VA.gov. This repository contains the code that generates the www.va.gov website. It contains a Metalsmith static site builder that uses a Drupal CMS for content. This file is here to publish releases to https://packagist.org/packages/va-gov/content-build, so that the CMS CI system can install it and update it using standard composer processes, and so that we can run tests across both systems. See https://github.com/department-of-veterans-affairs/va.gov-cms for the CMS repo, and stand by for more documentation.", "support": { "issues": "https://github.com/department-of-veterans-affairs/content-build/issues", - "source": "https://github.com/department-of-veterans-affairs/content-build/tree/v0.0.3429" + "source": "https://github.com/department-of-veterans-affairs/content-build/tree/v0.0.3430" }, - "time": "2024-01-26T14:50:21+00:00" + "time": "2024-01-29T17:44:09+00:00" }, { "name": "vlucas/phpdotenv", From b268d147d0cdae6f6092e7cbe38de2d9a542ccc6 Mon Sep 17 00:00:00 2001 From: Nate Douglas Date: Tue, 30 Jan 2024 11:19:19 -0500 Subject: [PATCH 2/4] Update config.yml --- .tugboat/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.tugboat/config.yml b/.tugboat/config.yml index c49d129aca..6e628ef6c4 100644 --- a/.tugboat/config.yml +++ b/.tugboat/config.yml @@ -206,6 +206,7 @@ services: # Create symlink between vets-website assets and next-build # - ln -snf "${DOCROOT}/vendor/va-gov/vets-website/build/localhost/generated" "${TUGBOAT_ROOT}/next/public/generated" + - mkdir -p "${TUGBOAT_ROOT}/next/public" - ln -snf "${TUGBOAT_ROOT}/vets-website/build/localhost/generated" "${TUGBOAT_ROOT}/next/public/generated" From 6ce87f84f47eeaf677ee09c5f5a29840678e9b9a Mon Sep 17 00:00:00 2001 From: Tanner Heffner Date: Tue, 30 Jan 2024 09:25:42 -0800 Subject: [PATCH 3/4] update next-build port (#17097) --- .tugboat/vhost-next.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tugboat/vhost-next.conf b/.tugboat/vhost-next.conf index d7fa248234..37a18e2c8c 100644 --- a/.tugboat/vhost-next.conf +++ b/.tugboat/vhost-next.conf @@ -29,8 +29,8 @@ # Ignore redirecting error doc directory ProxyPass /.next/ ! # Redirect requests to the running node server from next-build - ProxyPass / http://localhost:3000/ - ProxyPassReverse / http://localhost:3000/ + ProxyPass / http://localhost:3999/ + ProxyPassReverse / http://localhost:3999/ # Available loglevels: trace8, ..., trace1, debug, info, notice, warn, # error, crit, alert, emerg. From baf3803a1bc7d7cc76ce66f791927ad1d569ffa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jan 2024 11:36:27 -0800 Subject: [PATCH 4/4] Bump drupal/message_ui from 1.1.0 to 1.2.0 (#17088) Bumps drupal/message_ui from 1.1.0 to 1.2.0. --- updated-dependencies: - dependency-name: drupal/message_ui dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- composer.lock | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/composer.lock b/composer.lock index 7d322ac8f5..f663e770b8 100644 --- a/composer.lock +++ b/composer.lock @@ -9426,17 +9426,17 @@ }, { "name": "drupal/message_ui", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://git.drupalcode.org/project/message_ui.git", - "reference": "8.x-1.1" + "reference": "8.x-1.2" }, "dist": { "type": "zip", - "url": "https://ftp.drupal.org/files/projects/message_ui-8.x-1.1.zip", - "reference": "8.x-1.1", - "shasum": "59f8260d0fea9120215977c73f3a863934be4ddf" + "url": "https://ftp.drupal.org/files/projects/message_ui-8.x-1.2.zip", + "reference": "8.x-1.2", + "shasum": "9c1e4f4ba48b65a01b38684d7c06144b51bd19a7" }, "require": { "drupal/core": "^9 || ^10", @@ -9449,8 +9449,8 @@ "type": "drupal-module", "extra": { "drupal": { - "version": "8.x-1.1", - "datestamp": "1700260926", + "version": "8.x-1.2", + "datestamp": "1706548354", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -26839,7 +26839,6 @@ "drupal/linkit": 5, "drupal/linky": 10, "drupal/menu_breadcrumb": 15, - "drupal/message_ui": 10, "drupal/mimemail": 15, "drupal/no_table_drag": 15, "drupal/openapi": 5,