Skip to content

Commit

Permalink
Add Changelog and migrationGuide entries
Browse files Browse the repository at this point in the history
  • Loading branch information
philemone committed Nov 25, 2024
1 parent 6dab7b1 commit bec4755
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
14 changes: 1 addition & 13 deletions designer/client/src/components/toolbars/creator/ToolBox.tsx
Original file line number Diff line number Diff line change
@@ -1,32 +1,20 @@
import { lighten, styled } from "@mui/material";
import { getLuminance } from "@mui/system/colorManipulator";
import React, { useMemo } from "react";
import { useTranslation } from "react-i18next";
import { useSelector } from "react-redux";
import "react-treeview/react-treeview.css";
import { filterComponentsByLabel } from "../../../common/ProcessDefinitionUtils";
<<<<<<< HEAD
import { blendDarken, blendLighten } from "../../../containers/theme/helpers";
import { getProcessDefinitionData } from "../../../reducers/selectors/settings";
=======
import { getProcessDefinitionData, getStickyNotesSettings } from "../../../reducers/selectors/settings";
>>>>>>> c598a66389 (Remove stickyNotePanel, add stickyNote to creatos panel)
import { ComponentGroup } from "../../../types";
import Tool from "./Tool";
<<<<<<< HEAD
import { ToolboxComponentGroup } from "./ToolboxComponentGroup";
=======
import { useTranslation } from "react-i18next";
import { lighten, styled } from "@mui/material";

import { blendDarken, blendLighten } from "../../../containers/theme/helpers";
import { getLuminance } from "@mui/system/colorManipulator";
import { isPristine } from "../../../reducers/selectors/graph";
import { concat } from "lodash";
import { stickyNoteComponentGroup } from "./StickyNoteComponent";
>>>>>>> c598a66389 (Remove stickyNotePanel, add stickyNote to creatos panel)

export const StyledToolbox = styled("div")(({ theme }) => ({
const StyledToolbox = styled("div")(({ theme }) => ({
fontSize: "14px",
fontWeight: "600",
padding: 0,
Expand Down
4 changes: 4 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

### 1.19.0 (Not released yet)

* [#7181](https://github.com/TouK/nussknacker/pull/7181) StickyNotes feature
* sticky notes are designed to store information inside scenario/fragment, they are separate from graph nodes and do not take part in scenario logic
* new API available under `processes/{scenarioName}/stickyNotes`
* configuration `stickyNotesSettings` allowing to hide/show stickyNotes, set sticky notes max content length or its max number on a graph
* [#7145](https://github.com/TouK/nussknacker/pull/7145) Lift TypingResult information for dictionaries
* [#7116](https://github.com/TouK/nussknacker/pull/7116) Improve missing Flink Kafka Source / Sink TypeInformation
* [#7123](https://github.com/TouK/nussknacker/pull/7123) Fix deployments for scenarios with dict editors after model reload
Expand Down
9 changes: 9 additions & 0 deletions docs/MigrationGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ To see the biggest differences please consult the [changelog](Changelog.md).

## In version 1.19.0 (Not released yet)


### Configuration changes

* [#7181](https://github.com/TouK/nussknacker/pull/7181) Added designer configuration: stickyNotesSettings
* maxContentLength - max length of a sticky notes content (characters)
* maxNotesCount - max count of sticky notes inside one scenario/fragment
* enabled - if set to false stickyNotes feature is disabled, stickyNotes cant be created, they are also not loaded to graph


### Other changes

* [#7116](https://github.com/TouK/nussknacker/pull/7116) Improve missing Flink Kafka Source / Sink TypeInformation
Expand Down

0 comments on commit bec4755

Please sign in to comment.