Skip to content

Commit

Permalink
Merge branch 'master' into links-to-item-view
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess authored Jun 12, 2023
2 parents 4695e5a + f5625c3 commit 74f9a6f
Show file tree
Hide file tree
Showing 45 changed files with 1,488 additions and 228 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,30 @@

<!-- towncrier release notes start -->

## 17.0.0-alpha.11 (2023-06-09)

### Bugfix

- Added current page parameter to route in listing and search block pagination - Fix: #3868 @bipoza [#4159](https://github.com/plone/volto/issues/4159)


## 17.0.0-alpha.10 (2023-06-09)

### Feature

- Search Block: Add support for advanced facets that are only displayed on demand.
[pbauer, razvanMiu, claudiaifrim] [#4783](https://github.com/plone/volto/issues/4783)
- Display PAS validation errors. [tschorr] [#4801](https://github.com/plone/volto/issues/4801)
- Added a CSS identifier to the Slate style menu options. @razvanMiu [#4846](https://github.com/plone/volto/issues/4846)
- Use a Container from the registry in the Form component and fallback to the Semantic UI one. @sneridagh [#4849](https://github.com/plone/volto/issues/4849)
- Update Brazilian Portuguese translations @ericof [#4853](https://github.com/plone/volto/issues/4853)

### Bugfix

- Convert header class to function. @gomez [#4767](https://github.com/plone/volto/issues/4767)
- Do not break validation on required number field with value 0 @cekk [#4841](https://github.com/plone/volto/issues/4841)


## 17.0.0-alpha.9 (2023-06-01)

### Bugfix
Expand Down
20 changes: 20 additions & 0 deletions cypress/support/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -849,3 +849,23 @@ Cypress.Commands.add('getTableSlate', (header = false) => {
);
return slate;
});

Cypress.Commands.add('configureListingWith', (contentType) => {
cy.get('.sidebar-container .tabs-wrapper .menu .item')
.contains('Block')
.click();
cy.get('.querystring-widget .fields').contains('Add criteria').click();
cy.get(
'.querystring-widget .fields:first-of-type .field:first-of-type .react-select__menu .react-select__option',
)
.contains('Type')
.click();

//insert Page
cy.get('.querystring-widget .fields:first-of-type > .field').click();
cy.get(
'.querystring-widget .fields:first-of-type > .field .react-select__menu .react-select__option',
)
.contains(contentType)
.click();
});
Loading

0 comments on commit 74f9a6f

Please sign in to comment.