Skip to content

6.15.1

Compare
Choose a tag to compare
@github-actions github-actions released this 09 Jul 10:34
· 1088 commits to main since this release
5be3c60

@comet/admin-icons@6.15.1

Minor Changes

@comet/cms-admin@6.15.1

Minor Changes

  • cdc861c: Add buttonChildren and children props to UserHeaderItem

    This increases the flexibility of the UserHeaderItem component by allowing the AppHeaderDropdown label to be passed via buttonChildren. More buttons or other list items in the dropdown can be passed via children.

    Example:

    <UserHeaderItem buttonChildren="Some custom label">
        <Button variant="contained">Some custom button</Button>
        <Button>Some custom button 2</Button>
    </UserHeaderItem>

Patch Changes

  • 0654f7b: Handle unauthorized and unauthenticated correctly in error dialog

    The error dialog now presents screens according to the current state. Required to work in all conditions:

    • CurrentUserProvider must be beneath MuiThemeProvider and IntlProvider and above RouterBrowserRouter
    • ErrorDialogHandler must be parallel to CurrentUserProvider

@comet/admin@6.15.1

Patch Changes

  • 0654f7b: Handle unauthorized and unauthenticated correctly in error dialog

    The error dialog now presents screens according to the current state. Required to work in all conditions:

    • CurrentUserProvider must be beneath MuiThemeProvider and IntlProvider and above RouterBrowserRouter
    • ErrorDialogHandler must be parallel to CurrentUserProvider

@comet/blocks-admin@6.15.1

Patch Changes

  • ec7fb9f: Fix a validation error for default values in YouTubeVideoBlock

@comet/blocks-api@6.15.1

Patch Changes

  • c7f5637: Fix validation of YouTubeVideoBlock

    Previously, the validation of the YouTubeVideoBlock differed between admin and API.
    The admin allowed YouTube URLs and YouTube video IDs.
    The API only allowed URLs but blocked video IDs.

    Now, the API validation also accepts URLs and video IDs.

@comet/cms-api@6.15.1

Patch Changes

  • 9b29afd: Add missing @RequiredPermission to createZip route

  • 0654f7b: Handle unauthorized and unauthenticated correctly in error dialog

    The error dialog now presents screens according to the current state. Required to work in all conditions:

    • CurrentUserProvider must be beneath MuiThemeProvider and IntlProvider and above RouterBrowserRouter
    • ErrorDialogHandler must be parallel to CurrentUserProvider

@comet/eslint-config@6.15.1

Patch Changes

  • 6cb8505: Fix Prettier peer dependency

    The dependency range was incorrectly set to >= 2. Change to ^2.0.0 since Prettier v3 isn't supported at the moment.