Skip to content

Commit

Permalink
Version Packages (#1646)
Browse files Browse the repository at this point in the history
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.1.0

### Minor Changes

-   b35bb8d: Add basis for content translation

Wrap a component with a `ContentTranslationServiceProvider` to add
support for content translation to all underlying `FinalFormInput`
inputs.

    ```tsx
    <ContentTranslationServiceProvider
        enabled={true}
        translate={async function (text: string): Promise<string> {
            return yourTranslationFnc(text);
        }}
    >
        ...
    </ContentTranslationServiceProvider>
    ```

You can disable translation for a specific `FinalFormInput` by using the
`disableContentTranslation` prop.

    ```diff
    <Field
        required
        fullWidth
        name="myField"
        component={FinalFormInput}
label={<FormattedMessage id="myField" defaultMessage="My Field" />}
    +   disableContentTranslation
    />
    ```

- 8eb1375: Add `SaveBoundary` and `SaveBoundarySaveButton` that helps
implementing multiple forms with a centralized save button

Render a `Savable` Component anywhere below a `SaveBoundary`. For
`FinalForm` this hasn't to be done manually.

-   a4fac91: Rework `Alert` component

    -   Use theme wherever possible
    -   Move styles where they're more fitting
    -   Fix some paddings

### Patch Changes

- dcfa03c: Fix a crash when using the `Alert` component inside a MUI
`Snackbar`
-   Updated dependencies [08e0da0]
    -   @comet/admin-icons@6.1.0

## @comet/admin-rte@6.1.0

### Minor Changes

-   f1fc9e2: Add support for content translation

### Patch Changes

-   Updated dependencies [dcfa03c]
-   Updated dependencies [08e0da0]
-   Updated dependencies [b35bb8d]
-   Updated dependencies [8eb1375]
-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0
    -   @comet/admin-icons@6.1.0

## @comet/admin-theme@6.1.0

### Minor Changes

-   a4fac91: Rework `Alert` component

    -   Use theme wherever possible
    -   Move styles where they're more fitting
    -   Fix some paddings

### Patch Changes

-   Updated dependencies [08e0da0]
    -   @comet/admin-icons@6.1.0

## @comet/cms-api@6.1.0

### Minor Changes

- 7ea43eb: Make the `UserService`-option of the `UserPermissionsModule`
optional.

    The service is still necessary though for the Administration-Panel.

- 86cd5c6: Allow a callback for the `availableContentScopes`-option of
the `UserPermissionsModule`

Please be aware that when using this possibility to make sure to cache
the
    response properly as this is called for every request to the API.

- 737ab3b: Allow returning multiple content scopes in
`ScopedEntity`-decorator

-   f416510: Remove `CurrentUserLoader` and `CurrentUserInterface`

Overriding the the current user in the application isn't supported
anymore when using the new `UserPermissionsModule`, which provides the
current user DTO itself.

### Patch Changes

- ef84331: Fix type of @RequiredPermission to accept a non-array string
for a single permission
- 8e158f8: Add missing `@RequiredPermission()` decorator to
`FileLicensesResolver`
- 5018441: API Generator: Add missing `scope` argument and filter to
`<entity>BySlug` query
- 1f6c58e: API Generator: support GraphQLJSONObject input for fields
that are not a InputType class
    -   @comet/blocks-api@6.1.0

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

### Patch Changes

-   Updated dependencies [dcfa03c]
-   Updated dependencies [08e0da0]
-   Updated dependencies [b35bb8d]
-   Updated dependencies [8eb1375]
-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0
    -   @comet/admin-icons@6.1.0

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

### Patch Changes

-   Updated dependencies [dcfa03c]
-   Updated dependencies [08e0da0]
-   Updated dependencies [b35bb8d]
-   Updated dependencies [8eb1375]
-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0
    -   @comet/admin-icons@6.1.0

## @comet/admin-icons@6.1.0

### Patch Changes

-   08e0da0: Fix icons inside tooltips by forwarding the ref

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

### Patch Changes

-   Updated dependencies [dcfa03c]
-   Updated dependencies [b35bb8d]
-   Updated dependencies [8eb1375]
-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0

## @comet/blocks-admin@6.1.0

### Patch Changes

-   Updated dependencies [dcfa03c]
-   Updated dependencies [08e0da0]
-   Updated dependencies [b35bb8d]
-   Updated dependencies [8eb1375]
-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0
    -   @comet/admin-icons@6.1.0

## @comet/cms-admin@6.1.0

### Patch Changes

-   7ea5f61: Use `useCurrentUser` hook where possible

-   693cbdb: Add loading state for edit `StackPage` in `PagesPage`

Prevents flash of "Document not found" error message when reloading the
page editor

-   Updated dependencies [dcfa03c]

-   Updated dependencies [08e0da0]

-   Updated dependencies [b35bb8d]

-   Updated dependencies [f1fc9e2]

-   Updated dependencies [8eb1375]

-   Updated dependencies [a4fac91]
    -   @comet/admin@6.1.0
    -   @comet/admin-icons@6.1.0
    -   @comet/admin-rte@6.1.0
    -   @comet/admin-theme@6.1.0
    -   @comet/admin-date-time@6.1.0
    -   @comet/blocks-admin@6.1.0

## @comet/eslint-config@6.1.0

### Patch Changes

-   @comet/eslint-plugin@6.1.0

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



## @comet/blocks-api@6.1.0



## @comet/cli@6.1.0



## @comet/eslint-plugin@6.1.0



## @comet/cms-site@6.1.0

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 20, 2024
1 parent 45295a5 commit d82e5fb
Show file tree
Hide file tree
Showing 49 changed files with 299 additions and 226 deletions.
7 changes: 0 additions & 7 deletions .changeset/afraid-horses-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/big-items-serve.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/cool-pots-bake.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-forks-exercise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/neat-rivers-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-actors-kick.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/pink-rules-promise.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/plenty-humans-grow.md

This file was deleted.

31 changes: 0 additions & 31 deletions .changeset/rare-shiny-bulbasaur.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-bikes-wink.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/seven-sailor-sing.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/silver-drinks-perform.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-lies-tan.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/soft-hotels-rhyme.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/three-eagles-cheat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-cobras-cough.md

This file was deleted.

2 changes: 2 additions & 0 deletions packages/admin/admin-babel-preset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @comet/admin-babel-preset

## 6.1.0

## 6.0.0

## 5.6.0
Expand Down
2 changes: 1 addition & 1 deletion packages/admin/admin-babel-preset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-babel-preset",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand Down
12 changes: 12 additions & 0 deletions packages/admin/admin-color-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @comet/admin-color-picker

## 6.1.0

### Patch Changes

- Updated dependencies [dcfa03ca]
- Updated dependencies [08e0da09]
- Updated dependencies [b35bb8d1]
- Updated dependencies [8eb13750]
- Updated dependencies [a4fac913]
- @comet/admin@6.1.0
- @comet/admin-icons@6.1.0

## 6.0.0

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/admin/admin-color-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-color-picker",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand All @@ -25,8 +25,8 @@
"start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@comet/admin": "workspace:^6.0.0",
"@comet/admin-icons": "workspace:^6.0.0",
"@comet/admin": "workspace:^6.1.0",
"@comet/admin-icons": "workspace:^6.1.0",
"clsx": "^1.1.1",
"react-colorful": "^5.5.1",
"tinycolor2": "^1.4.1",
Expand All @@ -35,8 +35,8 @@
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.12",
"@comet/admin-babel-preset": "workspace:^6.0.0",
"@comet/eslint-config": "workspace:^6.0.0",
"@comet/admin-babel-preset": "workspace:^6.1.0",
"@comet/eslint-config": "workspace:^6.1.0",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
Expand Down
12 changes: 12 additions & 0 deletions packages/admin/admin-date-time/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @comet/admin-date-time

## 6.1.0

### Patch Changes

- Updated dependencies [dcfa03ca]
- Updated dependencies [08e0da09]
- Updated dependencies [b35bb8d1]
- Updated dependencies [8eb13750]
- Updated dependencies [a4fac913]
- @comet/admin@6.1.0
- @comet/admin-icons@6.1.0

## 6.0.0

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/admin/admin-date-time/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-date-time",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand All @@ -25,8 +25,8 @@
"start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@comet/admin": "workspace:^6.0.0",
"@comet/admin-icons": "workspace:^6.0.0",
"@comet/admin": "workspace:^6.1.0",
"@comet/admin-icons": "workspace:^6.1.0",
"@mui/utils": "^5.4.1",
"clsx": "^1.1.1",
"date-fns": "^2.28.0",
Expand All @@ -35,8 +35,8 @@
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.12",
"@comet/admin-babel-preset": "workspace:^6.0.0",
"@comet/eslint-config": "workspace:^6.0.0",
"@comet/admin-babel-preset": "workspace:^6.1.0",
"@comet/eslint-config": "workspace:^6.1.0",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
"@types/react": "^17.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/admin/admin-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @comet/admin-icons

## 6.1.0

### Patch Changes

- 08e0da09: Fix icons inside tooltips by forwarding the ref

## 6.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/admin/admin-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-icons",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand All @@ -24,8 +24,8 @@
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.12",
"@comet/admin-babel-preset": "workspace:^6.0.0",
"@comet/eslint-config": "workspace:^6.0.0",
"@comet/admin-babel-preset": "workspace:^6.1.0",
"@comet/eslint-config": "workspace:^6.1.0",
"@mui/material": "^5.0.0",
"@types/cli-progress": "^3.8.0",
"@types/node": "^18.0.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/admin/admin-react-select/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @comet/admin-react-select

## 6.1.0

### Patch Changes

- Updated dependencies [dcfa03ca]
- Updated dependencies [b35bb8d1]
- Updated dependencies [8eb13750]
- Updated dependencies [a4fac913]
- @comet/admin@6.1.0

## 6.0.0

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/admin/admin-react-select/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-react-select",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand All @@ -25,14 +25,14 @@
"start:types": "tsc --project ./tsconfig.json --emitDeclarationOnly --watch --preserveWatchOutput"
},
"dependencies": {
"@comet/admin": "workspace:^6.0.0",
"@comet/admin": "workspace:^6.1.0",
"classnames": "^2.2.6"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.12",
"@comet/admin-babel-preset": "workspace:^6.0.0",
"@comet/eslint-config": "workspace:^6.0.0",
"@comet/admin-babel-preset": "workspace:^6.1.0",
"@comet/eslint-config": "workspace:^6.1.0",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
Expand Down
16 changes: 16 additions & 0 deletions packages/admin/admin-rte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @comet/admin-rte

## 6.1.0

### Minor Changes

- f1fc9e20: Add support for content translation

### Patch Changes

- Updated dependencies [dcfa03ca]
- Updated dependencies [08e0da09]
- Updated dependencies [b35bb8d1]
- Updated dependencies [8eb13750]
- Updated dependencies [a4fac913]
- @comet/admin@6.1.0
- @comet/admin-icons@6.1.0

## 6.0.0

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/admin/admin-rte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@comet/admin-rte",
"version": "6.0.0",
"version": "6.1.0",
"repository": {
"type": "git",
"url": "https://github.com/vivid-planet/comet",
Expand All @@ -27,8 +27,8 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@comet/admin": "workspace:^6.0.0",
"@comet/admin-icons": "workspace:^6.0.0",
"@comet/admin": "workspace:^6.1.0",
"@comet/admin-icons": "workspace:^6.1.0",
"detect-browser": "^5.2.1",
"draft-js-export-html": "^1.4.1",
"draft-js-import-html": "^1.4.1",
Expand All @@ -38,8 +38,8 @@
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.20.12",
"@comet/admin-babel-preset": "workspace:^6.0.0",
"@comet/eslint-config": "workspace:^6.0.0",
"@comet/admin-babel-preset": "workspace:^6.1.0",
"@comet/eslint-config": "workspace:^6.1.0",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
Expand Down
15 changes: 15 additions & 0 deletions packages/admin/admin-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @comet/admin-theme

## 6.1.0

### Minor Changes

- a4fac913: Rework `Alert` component

- Use theme wherever possible
- Move styles where they're more fitting
- Fix some paddings

### Patch Changes

- Updated dependencies [08e0da09]
- @comet/admin-icons@6.1.0

## 6.0.0

### Patch Changes
Expand Down
Loading

0 comments on commit d82e5fb

Please sign in to comment.