-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Franz Unger <franz.unger@vivid-planet.com> Co-authored-by: Johannes Obermair <48853629+johnnyomair@users.noreply.github.com> Co-authored-by: Niko Sams <niko.sams@gmail.com> Co-authored-by: raphaelblum <44967610+raphaelblum@users.noreply.github.com> Co-authored-by: Tobias <34998750+Tobi98@users.noreply.github.com> Co-authored-by: Tobias Kuhn <tobias.kuhn@vivid-planet.com> Co-authored-by: Thomas Dax <thomas.dax@vivid-planet.com> Co-authored-by: Niko Sams <ns@vivid-planet.com> Co-authored-by: Daniel Karnutsch <d.karnutsch@gmail.com> Co-authored-by: Daniel Karnutsch <dkarnutsch@users.noreply.github.com> Co-authored-by: Johannes Obermair <johannes.obermair@vivid-planet.com> Co-authored-by: jennyvivid <148231586+jennyvivid@users.noreply.github.com> Co-authored-by: Johannes Munker <56400587+jomunker@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: NataliaVizintini <72875628+NataliaVizintini@users.noreply.github.com>
- Loading branch information
1 parent
b87c3c2
commit 63ae79c
Showing
544 changed files
with
5,555 additions
and
2,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/cms-admin": minor | ||
--- | ||
|
||
Add `MasterMenu` and `MasterMenuRoutes` components which both take a single data structure to define menu and routes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@comet/cms-api": minor | ||
--- | ||
|
||
Add `PublicUploadsService` to public API | ||
|
||
The service can be used to programmatically create public uploads, such as when creating fixtures. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
"@comet/cms-site": minor | ||
--- | ||
|
||
Add `hasRichTextBlockContent` helper | ||
|
||
The helper can be used to conditionally render a `RichTextBlock`. | ||
|
||
**Example:** | ||
|
||
```tsx | ||
import { hasRichTextBlockContent } from "@comet/cms-site"; | ||
|
||
function TeaserBlock({ data: { image, text } }: PropsWithData<TeaserBlockData>) { | ||
return ( | ||
<> | ||
<DamImageBlock data={image} /> | ||
{hasRichTextBlockContent(text) && <RichTextBlock data={text} />} | ||
</> | ||
); | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
"@comet/cms-admin": major | ||
"@comet/cms-api": major | ||
--- | ||
|
||
Enhance CronJob module | ||
|
||
- Show latest job run on `CronJobsPage` | ||
- Add option to manually trigger cron jobs to `CronJobsPage` | ||
- Add subpage to `CronJobsPage` that shows all job runs | ||
|
||
Warning: Only include this module if all your users should be able to trigger cron jobs manually or you have sufficient access control in place. | ||
|
||
Includes the following breaking changes: | ||
|
||
- Rename `JobStatus` to `KubernetesJobStatus` to avoid naming conflicts | ||
- Rename `BuildRuntime` to `JobRuntime` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
"@comet/admin": major | ||
--- | ||
|
||
FinalForm: remove default `onAfterSubmit` implementation | ||
|
||
In most cases the default implementation is not needed anymore. When upgrading, an empty | ||
function override of `onAfterSubmit` can be removed as it is not necessary any longer. | ||
|
||
To get back the old behavior use the following in application code: | ||
|
||
``` | ||
const stackApi = React.useContext(StackApiContext); | ||
const editDialog = React.useContext(EditDialogApiContext); | ||
.... | ||
<FinalForm | ||
onAfterSubmit={() => { | ||
stackApi?.goBack(); | ||
editDialog?.closeDialog({ delay: true }); | ||
}} | ||
> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/admin-icons": major | ||
--- | ||
|
||
Remove deprecated icons `Betrieb`, `Logische Filter`, `Pool`, `Pool 2`, `State Green`, `State Green Ring`, `State Orange`, `State Orange Ring`, `State Red`, `State Red Ring`, `Vignette 1` and `Vignette 2`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/eslint-config": major | ||
--- | ||
|
||
Enable `import/newline-after-import` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/admin": major | ||
--- | ||
|
||
FinalForm: Don't handle sync submit differently than async submit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
"@comet/cms-api": major | ||
--- | ||
|
||
Replace ContentScopeModule with UserPermissionsModule | ||
|
||
Breaking changes: | ||
|
||
- ContentScope-Module has been removed | ||
- canAccessScope has been moved to AccessControlService and renamed to isAllowedContentScope | ||
- role- and rights-fields has been removed from CurrentUser-Object | ||
- AllowForRole-decorator has been removed | ||
- Rename decorator SubjectEntity to AffectedEntity | ||
- Add RequiredPermission-decorator and make it mandatory when using UserPermissionsModule | ||
|
||
Upgrade-Guide: tbd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
"@comet/admin": minor | ||
--- | ||
|
||
Add `Alert` component | ||
|
||
**Example:** | ||
|
||
```tsx | ||
import { Alert, OkayButton, SaveButton } from "@comet/admin"; | ||
|
||
<Alert | ||
severity="warning" | ||
title="Title" | ||
action={ | ||
<Button variant="text" startIcon={<ArrowRight />}> | ||
Action Text | ||
</Button> | ||
} | ||
> | ||
Notification Text | ||
</Alert> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/cms-admin": minor | ||
--- | ||
|
||
Make all DAM license fields optional if `LicenseType` is `ROYALTY_FREE` even if `requireLicense` is true in `DamConfig` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@comet/eslint-config": major | ||
--- | ||
|
||
Enable no-other-module-relative-import rule by default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
addAssignees: author | ||
|
||
addReviewers: true | ||
|
||
reviewers: | ||
- johnnyomair |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.