diff --git a/.github/workflows/build-branch.yml b/.github/workflows/build-branch.yml index 7d32b73c4e..77ff8dfd09 100644 --- a/.github/workflows/build-branch.yml +++ b/.github/workflows/build-branch.yml @@ -25,6 +25,10 @@ on: required: false default: false type: boolean + push: + branches: + - preview + - canary env: TARGET_BRANCH: ${{ github.ref_name }} diff --git a/.github/workflows/build-test-pull-request.yml b/.github/workflows/build-test-pull-request.yml index 2e6f9c642f..29ed45dfed 100644 --- a/.github/workflows/build-test-pull-request.yml +++ b/.github/workflows/build-test-pull-request.yml @@ -71,7 +71,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn lint --filter=admin @@ -84,7 +84,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn lint --filter=space @@ -97,7 +97,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn lint --filter=web @@ -109,7 +109,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn build --filter=admin @@ -121,7 +121,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn build --filter=space @@ -133,6 +133,6 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18.x + node-version: 20.x - run: yarn install - run: yarn build --filter=web diff --git a/apiserver/requirements/base.txt b/apiserver/requirements/base.txt index e31145d033..7f927810ac 100644 --- a/apiserver/requirements/base.txt +++ b/apiserver/requirements/base.txt @@ -51,7 +51,7 @@ beautifulsoup4==4.12.3 # analytics posthog==3.5.0 # crypto -cryptography==43.0.1 +cryptography==44.0.1 # html validator lxml==5.2.1 # s3 diff --git a/live/package.json b/live/package.json index 502139a243..31d0b51499 100644 --- a/live/package.json +++ b/live/package.json @@ -23,7 +23,7 @@ "@plane/constants": "*", "@plane/editor": "*", "@plane/types": "*", - "@sentry/node": "^9.0.0", + "@sentry/node": "^9.0.1", "@sentry/profiling-node": "^8.28.0", "@tiptap/core": "2.10.4", "@tiptap/html": "2.11.0", diff --git a/packages/editor/src/core/plugins/drag-handle.ts b/packages/editor/src/core/plugins/drag-handle.ts index e71c38b30d..0f04214a02 100644 --- a/packages/editor/src/core/plugins/drag-handle.ts +++ b/packages/editor/src/core/plugins/drag-handle.ts @@ -1,7 +1,6 @@ import { Fragment, Slice, Node, Schema } from "@tiptap/pm/model"; import { NodeSelection } from "@tiptap/pm/state"; -// @ts-expect-error __serializeForClipboard's is not exported -import { __serializeForClipboard, EditorView } from "@tiptap/pm/view"; +import { EditorView } from "@tiptap/pm/view"; // extensions import { SideMenuHandleOptions, SideMenuPluginProps } from "@/extensions"; @@ -408,7 +407,7 @@ const handleNodeSelection = ( } const slice = view.state.selection.content(); - const { dom, text } = __serializeForClipboard(view, slice); + const { dom, text } = view.serializeForClipboard(slice); if (event instanceof DragEvent) { event.dataTransfer.clearData(); diff --git a/web/core/components/issues/issue-detail/issue-activity/activity/actions/default.tsx b/web/core/components/issues/issue-detail/issue-activity/activity/actions/default.tsx index 23331be16d..8099620fec 100644 --- a/web/core/components/issues/issue-detail/issue-activity/activity/actions/default.tsx +++ b/web/core/components/issues/issue-detail/issue-activity/activity/actions/default.tsx @@ -27,7 +27,7 @@ export const IssueDefaultActivity: FC = observer((props) icon={