Skip to content

Commit

Permalink
Release 18.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Jan 24, 2025
1 parent 6f731ed commit 03c3a81
Show file tree
Hide file tree
Showing 15 changed files with 50 additions and 10 deletions.
23 changes: 23 additions & 0 deletions docs/source/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ myst:

<!-- towncrier release notes start -->

## 18.7.0 (2025-01-24)

### Feature

- - Fixed handling of the site logo preview to appear after upload. @Shyam-Raghuwanshi [#6591](https://github.com/plone/volto/issues/6591)
- Provide language alternate links @erral [#6602](https://github.com/plone/volto/issues/6602)
- feat(cypress):Add custom check Accessibility command @Tishasoumya-02 [#6606](https://github.com/plone/volto/issues/6606)

### Bugfix

- Improve the usability of the `ObjectBrowser` when inputting a manual value, checking it on blur, and adding a local validator. @sneridagh [#6576](https://github.com/plone/volto/issues/6576)
- fix(useClipboard): Do not have a pending promise in a boolean state @nileshgulia1 [#6585](https://github.com/plone/volto/issues/6585)

### Internal

- Add Seven convenience Makefile commands. @sneridagh [#6599](https://github.com/plone/volto/issues/6599)
- Restore pull request previews on Read the Docs. @stevepiercy [#6612](https://github.com/plone/volto/issues/6612)
- Fix lint-staged throwing warnings when a file is checked-in and ignored. @sneridagh [#6614](https://github.com/plone/volto/issues/6614)

### Documentation

- Enhancements of the upgrade guide for Volto 18, since we detected some inconsistencies. @sneridagh [#6609](https://github.com/plone/volto/issues/6609)

## 18.6.0 (2025-01-11)

### Feature
Expand Down
23 changes: 23 additions & 0 deletions packages/volto/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,29 @@ myst:

<!-- towncrier release notes start -->

## 18.7.0 (2025-01-24)

### Feature

- - Fixed handling of the site logo preview to appear after upload. @Shyam-Raghuwanshi [#6591](https://github.com/plone/volto/issues/6591)
- Provide language alternate links @erral [#6602](https://github.com/plone/volto/issues/6602)
- feat(cypress):Add custom check Accessibility command @Tishasoumya-02 [#6606](https://github.com/plone/volto/issues/6606)

### Bugfix

- Improve the usability of the `ObjectBrowser` when inputting a manual value, checking it on blur, and adding a local validator. @sneridagh [#6576](https://github.com/plone/volto/issues/6576)
- fix(useClipboard): Do not have a pending promise in a boolean state @nileshgulia1 [#6585](https://github.com/plone/volto/issues/6585)

### Internal

- Add Seven convenience Makefile commands. @sneridagh [#6599](https://github.com/plone/volto/issues/6599)
- Restore pull request previews on Read the Docs. @stevepiercy [#6612](https://github.com/plone/volto/issues/6612)
- Fix lint-staged throwing warnings when a file is checked-in and ignored. @sneridagh [#6614](https://github.com/plone/volto/issues/6614)

### Documentation

- Enhancements of the upgrade guide for Volto 18, since we detected some inconsistencies. @sneridagh [#6609](https://github.com/plone/volto/issues/6609)

## 18.6.0 (2025-01-11)

### Feature
Expand Down
1 change: 0 additions & 1 deletion packages/volto/news/6576.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6585.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6591.feature

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6599.internal

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6602.feature

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6606.feature

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6609.documentation

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6612.internal

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto/news/6614.internal

This file was deleted.

2 changes: 1 addition & 1 deletion packages/volto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
],
"license": "MIT",
"version": "18.6.0",
"version": "18.7.0",
"repository": {
"type": "git",
"url": "git@github.com:plone/volto.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export class ObjectBrowserWidgetComponent extends React.Component<any, any, any>
state: {
manualLinkInput: string;
validURL: boolean;
errors: any[];
};
selectedItemsRef: React.RefObject<any>;
placeholderRef: React.RefObject<any>;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export function AlternateHrefLangs(props: any): import("react/jsx-runtime").JSX.Element;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {};

0 comments on commit 03c3a81

Please sign in to comment.