Skip to content

Commit

Permalink
Merge branch 'develop' into feature/DP-35365_fix_image_styles
Browse files Browse the repository at this point in the history
  • Loading branch information
joeg8612 authored Nov 26, 2024
2 parents 467ec95 + c61bc03 commit 02c3883
Show file tree
Hide file tree
Showing 7 changed files with 297 additions and 207 deletions.
13 changes: 8 additions & 5 deletions browserstack/src/percy-snapshots.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,15 @@ describe("massgov-screenshots", () => {

beforeAll(async () => {
// Functionality currently unavailable, but is in beta: https://www.browserstack.com/docs/automate/selenium/custom-header
// capabilities = {
const massBypassRateLimit = process.env.MASS_BYPASS_RATE_LIMIT.replace(/(^["']|["']$)/g, '');
// const capabilities = {
// 'bstack:options': {
// "headerParams": `{"mass-bypass-rate-limit":"${process.env.MASS_BYPASS_RATE_LIMIT}"}`
// headerParams: JSON.stringify({
// 'mass-bypass-rate-limit': massBypassRateLimit
// })
// }
// }
capabilities = {};
// };
const capabilities = {};
driver = await new Builder()
.withCapabilities(capabilities)
.build();
Expand All @@ -59,7 +62,7 @@ describe("massgov-screenshots", () => {

let options = {
fullPage: true,
ignore_region_selectors: [],
ignore_region_selectors: ['.__fsr'],
requestHeaders: {
'mass-bypass-rate-limit': process.env.MASS_BYPASS_RATE_LIMIT.replace(/(^["']|["']$)/g, ''),
}
Expand Down
41 changes: 41 additions & 0 deletions changelogs/DP-35406.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#
# Write your changelog entry here. Every pull request must have a changelog yml file.
#
# Change types:
# #############################################################################
# You can use one of the following types:
# - Added: For new features.
# - Changed: For changes to existing functionality.
# - Deprecated: For soon-to-be removed features.
# - Removed: For removed features.
# - Fixed: For any bug fixes.
# - Security: In case of vulnerabilities.
#
# Format
# #############################################################################
# The format is crucial. Please follow the examples below. For reference, the requirements are:
# - All 3 parts are required and you must include "Type", "description" and "issue".
# - "Type" must be left aligned and followed by a colon.
# - "description" must be indented with 2 spaces followed by a colon
# - "issue" must be indented with 4 spaces followed by a colon.
# - "issue" is for the Jira ticket number only e.g. DP-1234
# - No extra spaces, indents, or blank lines are allowed.
#
# Example:
# #############################################################################
# Fixed:
# - description: Fixes scrolling on edit pages in Safari.
# issue: DP-13314
#
# You may add more than 1 description & issue for each type using the following format:
# Changed:
# - description: Automating the release branch.
# issue: DP-10166
# - description: Second change item that needs a description.
# issue: DP-19875
# - description: Third change item that needs a description along with an issue.
# issue: DP-19843
#
Changed:
- description: Bump Prod No Redirect and Asset Cache Bust modules to D11 compat.
issue: DP-35406
41 changes: 41 additions & 0 deletions changelogs/DP-35513.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
#
# Write your changelog entry here. Every pull request must have a changelog yml file.
#
# Change types:
# #############################################################################
# You can use one of the following types:
# - Added: For new features.
# - Changed: For changes to existing functionality.
# - Deprecated: For soon-to-be removed features.
# - Removed: For removed features.
# - Fixed: For any bug fixes.
# - Security: In case of vulnerabilities.
#
# Format
# #############################################################################
# The format is crucial. Please follow the examples below. For reference, the requirements are:
# - All 3 parts are required and you must include "Type", "description" and "issue".
# - "Type" must be left aligned and followed by a colon.
# - "description" must be indented with 2 spaces followed by a colon
# - "issue" must be indented with 4 spaces followed by a colon.
# - "issue" is for the Jira ticket number only e.g. DP-1234
# - No extra spaces, indents, or blank lines are allowed.
#
# Example:
# #############################################################################
# Fixed:
# - description: Fixes scrolling on edit pages in Safari.
# issue: DP-13314
#
# You may add more than 1 description & issue for each type using the following format:
# Changed:
# - description: Automating the release branch.
# issue: DP-10166
# - description: Second change item that needs a description.
# issue: DP-19875
# - description: Third change item that needs a description along with an issue.
# issue: DP-19843
#
Changed:
- description: Hide survey popup in Percy.io base screenshots.
issue: DP-35513
3 changes: 3 additions & 0 deletions changelogs/DP-35999.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Security:
- description: Drupal core update.
issue: DP-35999
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@
"Don't break if telephone number is less than 6 digits. (https://www.drupal.org/node/2575577)": "https://www.drupal.org/files/issues/2022-07-12/2575577-38.patch",
"Remove final from a class in order to inherit from it": "patches/DP-11721-jsonapi-serializer.patch",
"Remove type hint which allows usage in combination with workbench_moderation": "patches/jsonapi-2.3.0-no-type-hint.patch",
"Notice: Undefined index: #type in drupal_process_states() (https://www.drupal.org/project/drupal/issues/2700667)": "https://www.drupal.org/files/issues/2019-12-05/2700667-89.patch",
"IMPORTANT: Make content moderation views use indexes": "patches/content-moderation-add-views-filter-indices.patch",
"Batch is dependent on the order of query string parameters (https://www.drupal.org/project/drupal/issues/2879023)": "https://git.drupalcode.org/issue/drupal-2879023/-/commit/c68aa376a7fc262886cb56d9ac762e4b06e6b174.patch",
"3075454 - combine fields filter doesn't recognise taxonomy description field": "https://www.drupal.org/files/issues/2019-08-20/3075454-3.patch",
Expand Down
Loading

0 comments on commit 02c3883

Please sign in to comment.