Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.417.0 #2758

Merged
merged 5 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@


## [0.417.0] - November 26, 2024

### Added
- DP-34459: Added reporting views for internal use - trival content and org feedback settings.

### Changed
- DP-35406: Bump Prod No Redirect and Asset Cache Bust modules to D11 compat.
- DP-35513: Hide survey popup in Percy.io base screenshots.

### Security
- DP-35999: Drupal core update.



## [0.416.0] - November 19, 2024

### Fixed
Expand Down
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
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