Skip to content

Commit

Permalink
Release 17.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Dec 11, 2024
1 parent e8eb76b commit bb8a696
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ myst:

<!-- towncrier release notes start -->

## 17.20.2 (2024-12-11)

### Bugfix

- Fixes ICS download in non-public event content. @sneridagh [#6497](https://github.com/plone/volto/issues/6497)
- improved Contents delete modal and linkintegrity check. @giuliaghisini [#6517](https://github.com/plone/volto/issues/6517)

## 17.20.1 (2024-10-30)

### Bugfix
Expand Down
7 changes: 7 additions & 0 deletions docs/source/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ myst:

<!-- towncrier release notes start -->

## 17.20.2 (2024-12-11)

### Bugfix

- Fixes ICS download in non-public event content. @sneridagh [#6497](https://github.com/plone/volto/issues/6497)
- improved Contents delete modal and linkintegrity check. @giuliaghisini [#6517](https://github.com/plone/volto/issues/6517)

## 17.20.1 (2024-10-30)

### Bugfix
Expand Down
1 change: 0 additions & 1 deletion news/6497.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/6517.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "17.20.1",
"version": "17.20.2",
"repository": {
"type": "git",
"url": "[email protected]:plone/volto.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/volto-slate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plone/volto-slate",
"version": "17.20.1",
"version": "17.20.2",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
13 changes: 13 additions & 0 deletions types/components/manage/Contents/ContentsDeleteModal.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
export default ContentsDeleteModal;
declare function ContentsDeleteModal(props: any): JSX.Element;
declare namespace ContentsDeleteModal {
namespace propTypes {
let itemsToDelete: PropTypes.Validator<PropTypes.InferProps<{
UID: PropTypes.Requireable<string>;
}>[]>;
let open: PropTypes.Validator<boolean>;
let onOk: PropTypes.Validator<(...args: any[]) => any>;
let onCancel: PropTypes.Validator<(...args: any[]) => any>;
}
}
import PropTypes from 'prop-types';
2 changes: 2 additions & 0 deletions types/reducers/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ declare namespace reducers {
export { form };
export { groups };
export { history };
export { linkIntegrity };
export { messages };
export { navigation };
export { querystring };
Expand Down Expand Up @@ -66,6 +67,7 @@ import emailSend from '@plone/volto/reducers/emailSend/emailSend';
import form from '@plone/volto/reducers/form/form';
import groups from '@plone/volto/reducers/groups/groups';
import history from '@plone/volto/reducers/history/history';
import linkIntegrity from '@plone/volto/reducers/linkIntegrity/linkIntegrity';
import messages from '@plone/volto/reducers/messages/messages';
import navigation from '@plone/volto/reducers/navigation/navigation';
import querystring from '@plone/volto/reducers/querystring/querystring';
Expand Down
8 changes: 8 additions & 0 deletions types/reducers/linkIntegrity/linkIntegrity.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**
* History reducer.
* @function linkIntegrity
* @param {Object} state Current state.
* @param {Object} action Action to be handled.
* @returns {Object} New state.
*/
export default function linkIntegrity(state?: any, action?: any): any;
1 change: 1 addition & 0 deletions types/reducers/linkIntegrity/linkIntegrity.test.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};

0 comments on commit bb8a696

Please sign in to comment.