Skip to content

Commit

Permalink
Release 17.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Oct 9, 2024
1 parent d0c533f commit 25dcb4f
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ myst:

<!-- towncrier release notes start -->

## 17.20.0 (2024-10-09)

### Feature

- Pass the `user`, `navRoot`, and `contentType` objects to the `restricted` function of the block settings. @wesleybl [#6264](https:/plone/volto/issues/6264)
- improve DiffField.jsx with better support for displaying HTML elements such as images @dobri1408 [#6384](https:/plone/volto/issues/6384)

### Documentation

- Install Vale via pip, and pin to <3.0.0, allowing it to run locally and in CI without reconfiguration. @stevepiercy [#6377](https:/plone/volto/issues/6377)

## 17.19.0 (2024-10-03)

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

<!-- towncrier release notes start -->

## 17.20.0 (2024-10-09)

### Feature

- Pass the `user`, `navRoot`, and `contentType` objects to the `restricted` function of the block settings. @wesleybl [#6264](https:/plone/volto/issues/6264)
- improve DiffField.jsx with better support for displaying HTML elements such as images @dobri1408 [#6384](https:/plone/volto/issues/6384)

### Documentation

- Install Vale via pip, and pin to <3.0.0, allowing it to run locally and in CI without reconfiguration. @stevepiercy [#6377](https:/plone/volto/issues/6377)

## 17.19.0 (2024-10-03)

### Feature
Expand Down
1 change: 0 additions & 1 deletion news/6264.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/6377.documentation

This file was deleted.

1 change: 0 additions & 1 deletion news/6384.feature

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.19.0",
"version": "17.20.0",
"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.19.0",
"version": "17.20.0",
"description": "Slate.js integration with Volto",
"main": "src/index.js",
"author": "European Environment Agency: IDM2 A-Team",
Expand Down
1 change: 1 addition & 0 deletions types/hooks/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { default as useClipboard } from "@plone/volto/hooks/clipboard/useClipboard";
export { useClient } from "@plone/volto/hooks/client/useClient";
export { default as useUser } from "@plone/volto/hooks/user/useUser";
2 changes: 2 additions & 0 deletions types/hooks/user/useUser.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export default useUser;
declare function useUser(): any;

0 comments on commit 25dcb4f

Please sign in to comment.