Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #2084

Merged
merged 1 commit into from
May 31, 2024
Merged

Version Packages #2084

merged 1 commit into from
May 31, 2024

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented May 18, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@comet/admin@6.11.0

Minor Changes

  • 8e3dec5: Change writeClipboardText/readClipboardText clipboard fallback to in-memory

    Using the local storage as a fallback caused issues when writing clipboard contents larger than 5MB.
    Changing the fallback to in-memory resolves the issue.

Patch Changes

  • @comet/admin-icons@6.11.0

@comet/cms-admin@6.11.0

Minor Changes

  • e10753b: Allow disabling the "Open preview" button in the PageTree for certain document types

    The "Open preview" button is shown for all document types in the PageTree.
    But some document types (e.g., links) don't have a preview.
    Clicking on the preview button leads to an error page.

    Now, it's possible to disable the button by setting hasNoSitePreview for the document:

    export const Link: DocumentInterface<Pick<GQLLink, "content">, GQLLinkInput> = {
        // ...
    +   hasNoSitePreview: true,
    };
  • fdf9fa7: Automatic Redirects are now set to false if the page is unpublished or archived

Patch Changes

  • 815ba51: Fix link target validation in ExternalLinkBlock

    Previously, two different validation checks were used.
    This resulted in an error when saving an invalid link target but no error message was shown.

  • Updated dependencies [8e3dec5]

    • @comet/admin@6.11.0
    • @comet/admin-date-time@6.11.0
    • @comet/admin-icons@6.11.0
    • @comet/admin-rte@6.11.0
    • @comet/admin-theme@6.11.0
    • @comet/blocks-admin@6.11.0

@comet/cms-api@6.11.0

Minor Changes

  • 0db10a5: Add a console script to import redirects from a csv file

    You can use the script like this: npm run console import-redirects file-to-import.csv

    The CSV file must look like this:

    source;target;target_type;comment;scope_domain
    /test-source;/test-target;internal;Internal Example;main
    /test-source-external;https://www.comet-dxp.com/;external;External Example;secondary
    

Patch Changes

  • Updated dependencies [93a84b6]
    • @comet/blocks-api@6.11.0

@comet/admin-color-picker@6.11.0

Patch Changes

  • Updated dependencies [8e3dec5]
    • @comet/admin@6.11.0
    • @comet/admin-icons@6.11.0

@comet/admin-date-time@6.11.0

Patch Changes

  • Updated dependencies [8e3dec5]
    • @comet/admin@6.11.0
    • @comet/admin-icons@6.11.0

@comet/admin-react-select@6.11.0

Patch Changes

  • Updated dependencies [8e3dec5]
    • @comet/admin@6.11.0

@comet/admin-rte@6.11.0

Patch Changes

  • Updated dependencies [8e3dec5]
    • @comet/admin@6.11.0
    • @comet/admin-icons@6.11.0

@comet/admin-theme@6.11.0

Patch Changes

  • @comet/admin-icons@6.11.0

@comet/blocks-admin@6.11.0

Patch Changes

  • Updated dependencies [8e3dec5]
    • @comet/admin@6.11.0
    • @comet/admin-icons@6.11.0

@comet/blocks-api@6.11.0

Patch Changes

  • 93a84b6: Fix type of youtubeIdentifier in YouTubeVideoBlock

    Previously, it was incorrectly typed as required. Now it's optional.

@comet/eslint-config@6.11.0

Patch Changes

  • @comet/eslint-plugin@6.11.0

@comet/admin-babel-preset@6.11.0

@comet/admin-icons@6.11.0

@comet/cli@6.11.0

@comet/eslint-plugin@6.11.0

@comet/cms-site@6.11.0

@github-actions github-actions bot force-pushed the changeset-release/main branch 6 times, most recently from 2ec5bd5 to 5e0976d Compare May 27, 2024 14:32
@thomasdax98 thomasdax98 merged commit 53ee875 into main May 31, 2024
8 checks passed
@thomasdax98 thomasdax98 deleted the changeset-release/main branch May 31, 2024 08:30
fichtnerma pushed a commit that referenced this pull request Jul 18, 2024
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @comet/admin@6.11.0

### Minor Changes

- 8e3dec5: Change `writeClipboardText`/`readClipboardText` clipboard
fallback to in-memory

Using the local storage as a fallback caused issues when writing
clipboard contents larger than 5MB.
    Changing the fallback to in-memory resolves the issue.

### Patch Changes

-   @comet/admin-icons@6.11.0

## @comet/cms-admin@6.11.0

### Minor Changes

- e10753b: Allow disabling the "Open preview" button in the `PageTree`
for certain document types

The "Open preview" button is shown for all document types in the
`PageTree`.
    But some document types (e.g., links) don't have a preview.
    Clicking on the preview button leads to an error page.

Now, it's possible to disable the button by setting `hasNoSitePreview`
for the document:

    ```diff
export const Link: DocumentInterface<Pick<GQLLink, "content">,
GQLLinkInput> = {
        // ...
    +   hasNoSitePreview: true,
    };
    ```

- fdf9fa7: Automatic Redirects are now set to false if the page is
unpublished or archived

### Patch Changes

-   815ba51: Fix link target validation in `ExternalLinkBlock`

    Previously, two different validation checks were used.
This resulted in an error when saving an invalid link target but no
error message was shown.

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0
    -   @comet/admin-date-time@6.11.0
    -   @comet/admin-icons@6.11.0
    -   @comet/admin-rte@6.11.0
    -   @comet/admin-theme@6.11.0
    -   @comet/blocks-admin@6.11.0

## @comet/cms-api@6.11.0

### Minor Changes

-   0db10a5: Add a console script to import redirects from a csv file

You can use the script like this: `npm run console import-redirects
file-to-import.csv`

    The CSV file must look like this:

    ```csv
    source;target;target_type;comment;scope_domain
    /test-source;/test-target;internal;Internal Example;main
/test-source-external;https://www.comet-dxp.com/;external;External
Example;secondary
    ```

### Patch Changes

-   Updated dependencies [93a84b6]
    -   @comet/blocks-api@6.11.0

## @comet/admin-color-picker@6.11.0

### Patch Changes

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0
    -   @comet/admin-icons@6.11.0

## @comet/admin-date-time@6.11.0

### Patch Changes

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0
    -   @comet/admin-icons@6.11.0

## @comet/admin-react-select@6.11.0

### Patch Changes

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0

## @comet/admin-rte@6.11.0

### Patch Changes

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0
    -   @comet/admin-icons@6.11.0

## @comet/admin-theme@6.11.0

### Patch Changes

-   @comet/admin-icons@6.11.0

## @comet/blocks-admin@6.11.0

### Patch Changes

-   Updated dependencies [8e3dec5]
    -   @comet/admin@6.11.0
    -   @comet/admin-icons@6.11.0

## @comet/blocks-api@6.11.0

### Patch Changes

-   93a84b6: Fix type of `youtubeIdentifier` in `YouTubeVideoBlock`

    Previously, it was incorrectly typed as required. Now it's optional.

## @comet/eslint-config@6.11.0

### Patch Changes

-   @comet/eslint-plugin@6.11.0

## @comet/admin-babel-preset@6.11.0



## @comet/admin-icons@6.11.0



## @comet/cli@6.11.0



## @comet/eslint-plugin@6.11.0



## @comet/cms-site@6.11.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant