Skip to content

7.0.0-beta.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Jul 12:01
· 1099 commits to main since this release
cdc861c

@comet/admin@7.0.0-beta.3

Major Changes

  • ce5eaed: Move the ScopeIndicator from the ToolbarBreadcrumbs to the Toolbar

@comet/cms-admin@7.0.0-beta.3

Major Changes

  • 06768a7: Make icon required for top level menu and group items

    This fixes the problem, that there was no icon or text to display in the collapsed state of the menu if no icon was passed.
    Icons are required for all top level menu items and the items of groups. Groups themselves do not require an icon.

@comet/cms-api@7.0.0-beta.3

Major Changes

  • caefa1c: Rename DateFilter to DateTimeFilter

    This leaves room for a future DateFilter that only filters by date, not time.

    Upgrading

    1. Change import
    - import { DateFilter } from "@comet/cms-api";
    + import { DateTimeFilter } from "@comet/cms-api";
    1. Re-run API Generator.
  • fe22985: API Generator: Replace graphql-type-json with graphql-scalars for JSON columns

    Upgrading

    1. Install graphql-scalars: npm install graphql-scalars

    2. Uninstall graphql-type-json: npm uninstall graphql-type-json

    3. Update imports:

      - import { GraphQLJSONObject } from "graphql-type-json";
      + import { GraphQLJSONObject } from "graphql-scalars";

Minor Changes

  • 5e87134: API Generator: Add support for filtering one-to-many relations by id

Patch Changes

  • 9c8a9a1: API Generator: Add missing type for integer fields in input type

@comet/eslint-config@7.0.0-beta.3

Major Changes

  • 7a473ab: Prevent @mui/icons-material icon imports

    Icons used in Comet DXP applications should match the Comet CI.
    Use icons from @comet/admin-icons instead.