From e43e605fb5f7ff6f212c66a1b93d1ca35c914224 Mon Sep 17 00:00:00 2001 From: "huppy-bot[bot]" <128400622+huppy-bot[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 14:44:32 +0000 Subject: [PATCH] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 207 ++++++++++++++++++++++++ apps/docs/version.ts | 6 +- apps/dotcom/client/version.ts | 6 +- lerna.json | 6 +- packages/assets/CHANGELOG.md | 14 ++ packages/assets/package.json | 2 +- packages/editor/CHANGELOG.md | 94 +++++++++++ packages/editor/package.json | 2 +- packages/editor/src/version.ts | 6 +- packages/namespaced-tldraw/CHANGELOG.md | 14 ++ packages/namespaced-tldraw/package.json | 2 +- packages/state-react/CHANGELOG.md | 14 ++ packages/state-react/package.json | 2 +- packages/state/CHANGELOG.md | 30 ++++ packages/state/package.json | 2 +- packages/store/CHANGELOG.md | 30 ++++ packages/store/package.json | 2 +- packages/sync-core/CHANGELOG.md | 32 ++++ packages/sync-core/package.json | 2 +- packages/sync/CHANGELOG.md | 16 ++ packages/sync/package.json | 2 +- packages/tldraw/CHANGELOG.md | 119 ++++++++++++++ packages/tldraw/package.json | 2 +- packages/tldraw/src/lib/ui/version.ts | 6 +- packages/tlschema/CHANGELOG.md | 38 +++++ packages/tlschema/package.json | 2 +- packages/utils/CHANGELOG.md | 30 ++++ packages/utils/package.json | 2 +- packages/validate/CHANGELOG.md | 30 ++++ packages/validate/package.json | 2 +- 30 files changed, 696 insertions(+), 26 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afa15381eff6..c1eb3fc4d47e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,210 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### [botcom] Publishing ([#4688](https://github.com/tldraw/tldraw/pull/4688)) + +- Add publishing to botcom. + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +#### make options object stable ([#4762](https://github.com/tldraw/tldraw/pull/4762)) + +- Writing `options` inline in the Tldraw component will no longer cause re-render loops + +#### [Fix] Toolbar button outline border radius ([#4759](https://github.com/tldraw/tldraw/pull/4759)) + +- Fixed a bug with the border radius on toolbar button outlines. + +#### Improve tooltips in the style panel ([#4750](https://github.com/tldraw/tldraw/pull/4750)) + +- Fixed a bug with… + +#### [Fix] Colors from Excalidraw when pasting ([#4752](https://github.com/tldraw/tldraw/pull/4752)) + +- Fixed a bug that prevented pasted Excalidraw content from keeping the right color. + +#### arrows: fix up label indicator showing up ([#4749](https://github.com/tldraw/tldraw/pull/4749)) + +- Fix labels on arrows having indicators show up behind them. + +#### Limit the page name length in the move to page menu. ([#4747](https://github.com/tldraw/tldraw/pull/4747)) + +- Limit the length of the page names in the move to page menu. + +#### Fix copying of snapshot links ([#4743](https://github.com/tldraw/tldraw/pull/4743)) + +- Fix copying of snapshot links. + +#### ui: dont highlight menu triggers that dont have their submenus open ([#4710](https://github.com/tldraw/tldraw/pull/4710)) + +- Fix submenu hover active state. + +#### menus: rework the open menu logic to be in one consistent place ([#4642](https://github.com/tldraw/tldraw/pull/4642)) + +- Rework open menu logic to be centralized. + +#### drag: passthrough correct event type for drag events ([#4739](https://github.com/tldraw/tldraw/pull/4739)) + +- Fix bug with passing correct event type for drag events + +#### refactor: specify type at bbox ([#4732](https://github.com/tldraw/tldraw/pull/4732)) + +- When I see the code in `packages/editor/src/lib/exports/getSvgJsx.tsx`, Improvements were found. +``` +// L57 +let bbox: = null // any type +``` +- This is declared as `let`, but it is `any` type. +- I felt this was a risk for future maintenance. +- So I specify the type of `bbox`. +``` +let bbox: null | Box = null +``` + +#### Fix style menu vertical align button ([#4735](https://github.com/tldraw/tldraw/pull/4735)) + +- Fixed a bug with the vertical alignment button in the style panel. + +#### Don't index multiplayer rooms, snapshots, history. ([#4723](https://github.com/tldraw/tldraw/pull/4723)) + +- Prevent indexing of multiplayer rooms, snapshots, new room route (it just redirects), history, etc + +#### Add labelColor for notes. ([#4724](https://github.com/tldraw/tldraw/pull/4724)) + +- Adds `labelColor` for Note shapes. + +#### lod: memoize media assets so that zoom level doesn't re-render constantly ([#4659](https://github.com/tldraw/tldraw/pull/4659)) + +- Improve performance of image/video rendering. + +#### drag/drop: followup to accidental img drop pr ([#4704](https://github.com/tldraw/tldraw/pull/4704)) + +- Fix bug with multiple images being created when dropping it onto the canvas. + +#### links: fix link indicator on stickies ([#4708](https://github.com/tldraw/tldraw/pull/4708)) + +- Fix link indicator in sticky notes. + +#### embeds: fix pasting urls giving an error msg always ([#4709](https://github.com/tldraw/tldraw/pull/4709)) + +- Fix embed dialog pasting URLs + +#### make sure DOM IDs are globally unique ([#4694](https://github.com/tldraw/tldraw/pull/4694)) + +- Exports and other tldraw instances no longer can affect how each other are rendered +- **BREAKING:** the `id` attribute that was present on some shapes in the dom has been removed. there's now a data-shape-id attribute on every shape wrapper instead though. + +#### menus: fix up some missing readonlyOk items; rm some ctx menu items in readonly ([#4696](https://github.com/tldraw/tldraw/pull/4696)) + +- Fix some items missing `readonlyOk` and some other items that shouldn't have been shown in readonly mode. + +#### share: fix copy link ux ([#4695](https://github.com/tldraw/tldraw/pull/4695)) + +- Fix copy link UX (adds spinner and also adds checkmarks back in) + +--- + +#### 🐛 Bug Fix + +- [botcom] Add tooltips / links to Share Menu [#4765](https://github.com/tldraw/tldraw/pull/4765) ([@steveruizok](https://github.com/steveruizok)) +- [infra] limit skew protection to one month [#4781](https://github.com/tldraw/tldraw/pull/4781) ([@ds300](https://github.com/ds300)) +- [infra] trim to fix [#4779](https://github.com/tldraw/tldraw/pull/4779) ([@ds300](https://github.com/ds300)) +- [infra] bump up skew protection time frame [#4774](https://github.com/tldraw/tldraw/pull/4774) ([@ds300](https://github.com/ds300)) +- [botcom] add `yarn reset-db` command [#4778](https://github.com/tldraw/tldraw/pull/4778) ([@ds300](https://github.com/ds300)) +- [botcom] deep links [#4768](https://github.com/tldraw/tldraw/pull/4768) ([@ds300](https://github.com/ds300)) +- [botcom] sync user name with people menu [#4777](https://github.com/tldraw/tldraw/pull/4777) ([@ds300](https://github.com/ds300)) +- deploy docs when a release is edited [#4776](https://github.com/tldraw/tldraw/pull/4776) ([@SomeHats](https://github.com/SomeHats)) +- [botcom] fix copy for forbidden state [#4775](https://github.com/tldraw/tldraw/pull/4775) ([@ds300](https://github.com/ds300)) +- botcom: alternative to multi-menu items [#4764](https://github.com/tldraw/tldraw/pull/4764) ([@mimecuvalo](https://github.com/mimecuvalo)) +- Fix license link [#4770](https://github.com/tldraw/tldraw/pull/4770) ([@steveruizok](https://github.com/steveruizok)) +- [botcom] fix inline renaming [#4769](https://github.com/tldraw/tldraw/pull/4769) ([@ds300](https://github.com/ds300)) +- [botcom] Shared file fixes [#4761](https://github.com/tldraw/tldraw/pull/4761) ([@ds300](https://github.com/ds300)) +- [botcom] fix share links [#4754](https://github.com/tldraw/tldraw/pull/4754) ([@ds300](https://github.com/ds300)) +- botcom: only redirect when logged out and the file is private [#4753](https://github.com/tldraw/tldraw/pull/4753) ([@mimecuvalo](https://github.com/mimecuvalo)) +- Fix bemo deploy on publish-new [#4721](https://github.com/tldraw/tldraw/pull/4721) ([@ds300](https://github.com/ds300)) +- [botcom] Signout route [#4738](https://github.com/tldraw/tldraw/pull/4738) ([@steveruizok](https://github.com/steveruizok)) +- [botcom] use single DurableObject for whole app [#4698](https://github.com/tldraw/tldraw/pull/4698) ([@ds300](https://github.com/ds300) [@steveruizok](https://github.com/steveruizok)) +- Remove .zed folder [#4736](https://github.com/tldraw/tldraw/pull/4736) ([@steveruizok](https://github.com/steveruizok)) +- tla: rename icons without equal sign [#4712](https://github.com/tldraw/tldraw/pull/4712) ([@mimecuvalo](https://github.com/mimecuvalo)) +- Fix watermark dark mode on tldraw.dev [#4706](https://github.com/tldraw/tldraw/pull/4706) ([@steveruizok](https://github.com/steveruizok)) +- Remove v1 migration from dotcom [#4693](https://github.com/tldraw/tldraw/pull/4693) ([@steveruizok](https://github.com/steveruizok)) +- `@tldraw/assets`, `@tldraw/editor`, `@tldraw/tldraw`, `@tldraw/state-react`, `@tldraw/state`, `@tldraw/store`, `@tldraw/sync-core`, `@tldraw/sync`, `tldraw`, `@tldraw/tlschema`, `@tldraw/utils`, `@tldraw/validate` + - roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- `@tldraw/editor` + - [botcom] file state [#4766](https://github.com/tldraw/tldraw/pull/4766) ([@ds300](https://github.com/ds300)) + - botcom: prevent pinch-zoom on sidebar [#4697](https://github.com/tldraw/tldraw/pull/4697) ([@mimecuvalo](https://github.com/mimecuvalo)) +- `tldraw` + - botcom: inline rename [#4758](https://github.com/tldraw/tldraw/pull/4758) ([@mimecuvalo](https://github.com/mimecuvalo)) + - [botcom] local session state, logged out view of files [#4711](https://github.com/tldraw/tldraw/pull/4711) ([@steveruizok](https://github.com/steveruizok)) + - ui: suppress aria warning about desc in dialogs [#4707](https://github.com/tldraw/tldraw/pull/4707) ([@mimecuvalo](https://github.com/mimecuvalo)) +- `@tldraw/sync-core` + - [botcom] Fix file deletion and creation [#4751](https://github.com/tldraw/tldraw/pull/4751) ([@ds300](https://github.com/ds300)) +- `@tldraw/sync` + - botcom: redirect to intended room when signing in [#4725](https://github.com/tldraw/tldraw/pull/4725) ([@mimecuvalo](https://github.com/mimecuvalo)) +- `@tldraw/editor`, `@tldraw/sync-core` + - botcom: account menu [bk] [#4683](https://github.com/tldraw/tldraw/pull/4683) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### 🐛 Bug Fixes + +- Fix copying of snapshot links [#4743](https://github.com/tldraw/tldraw/pull/4743) ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- `tldraw` + - [Fix] Toolbar button outline border radius [#4759](https://github.com/tldraw/tldraw/pull/4759) ([@steveruizok](https://github.com/steveruizok)) + - [Fix] Colors from Excalidraw when pasting [#4752](https://github.com/tldraw/tldraw/pull/4752) ([@steveruizok](https://github.com/steveruizok)) + - arrows: fix up label indicator showing up [#4749](https://github.com/tldraw/tldraw/pull/4749) ([@mimecuvalo](https://github.com/mimecuvalo)) + - ui: dont highlight menu triggers that dont have their submenus open [#4710](https://github.com/tldraw/tldraw/pull/4710) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) + - Fix style menu vertical align button [#4735](https://github.com/tldraw/tldraw/pull/4735) ([@steveruizok](https://github.com/steveruizok)) + - embeds: fix pasting urls giving an error msg always [#4709](https://github.com/tldraw/tldraw/pull/4709) ([@mimecuvalo](https://github.com/mimecuvalo)) + - menus: fix up some missing readonlyOk items; rm some ctx menu items in readonly [#4696](https://github.com/tldraw/tldraw/pull/4696) ([@mimecuvalo](https://github.com/mimecuvalo)) + - share: fix copy link ux [#4695](https://github.com/tldraw/tldraw/pull/4695) ([@mimecuvalo](https://github.com/mimecuvalo)) +- `@tldraw/editor`, `tldraw` + - [Fix] Keyboard events on menus [#4745](https://github.com/tldraw/tldraw/pull/4745) ([@steveruizok](https://github.com/steveruizok)) + - make sure DOM IDs are globally unique [#4694](https://github.com/tldraw/tldraw/pull/4694) ([@SomeHats](https://github.com/SomeHats)) +- `@tldraw/editor` + - Make ids public [#4742](https://github.com/tldraw/tldraw/pull/4742) ([@steveruizok](https://github.com/steveruizok)) + - drag: passthrough correct event type for drag events [#4739](https://github.com/tldraw/tldraw/pull/4739) ([@mimecuvalo](https://github.com/mimecuvalo)) + - drag/drop: followup to accidental img drop pr [#4704](https://github.com/tldraw/tldraw/pull/4704) ([@mimecuvalo](https://github.com/mimecuvalo)) + - links: fix link indicator on stickies [#4708](https://github.com/tldraw/tldraw/pull/4708) ([@mimecuvalo](https://github.com/mimecuvalo)) + - [fix] Meta key bug [#4701](https://github.com/tldraw/tldraw/pull/4701) ([@steveruizok](https://github.com/steveruizok)) + +#### 💄 Product Improvements + +- Don't index multiplayer rooms, snapshots, history. [#4723](https://github.com/tldraw/tldraw/pull/4723) ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- `@tldraw/editor`, `@tldraw/state`, `@tldraw/store`, `@tldraw/sync-core`, `tldraw`, `@tldraw/tlschema`, `@tldraw/utils`, `@tldraw/validate` + - npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) +- `tldraw` + - Improve tooltips in the style panel [#4750](https://github.com/tldraw/tldraw/pull/4750) ([@MitjaBezensek](https://github.com/MitjaBezensek)) + - Limit the page name length in the move to page menu. [#4747](https://github.com/tldraw/tldraw/pull/4747) ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- `@tldraw/editor`, `tldraw` + - menus: rework the open menu logic to be in one consistent place [#4642](https://github.com/tldraw/tldraw/pull/4642) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) + - lod: memoize media assets so that zoom level doesn't re-render constantly [#4659](https://github.com/tldraw/tldraw/pull/4659) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) +- `@tldraw/editor` + - refactor: specify type at bbox [#4732](https://github.com/tldraw/tldraw/pull/4732) ([@nayounsang](https://github.com/nayounsang)) + +#### 🎉 New Features + +- [botcom] Publishing [#4688](https://github.com/tldraw/tldraw/pull/4688) ([@MitjaBezensek](https://github.com/MitjaBezensek) [@ds300](https://github.com/ds300) [@steveruizok](https://github.com/steveruizok)) +- `tldraw`, `@tldraw/tlschema` + - Add labelColor for notes. [#4724](https://github.com/tldraw/tldraw/pull/4724) ([@steveruizok](https://github.com/steveruizok)) + +#### 🛠️ API Changes + +- `@tldraw/editor`, `tldraw` + - make options object stable [#4762](https://github.com/tldraw/tldraw/pull/4762) ([@SomeHats](https://github.com/SomeHats)) + +#### Authors: 6 + +- [@nayounsang](https://github.com/nayounsang) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/apps/docs/version.ts b/apps/docs/version.ts index 363ca685f04e..6ceec9942c04 100644 --- a/apps/docs/version.ts +++ b/apps/docs/version.ts @@ -1,9 +1,9 @@ // This file is automatically generated by internal/scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '3.3.0' +export const version = '3.4.0' export const publishDates = { major: '2024-09-13T14:36:29.063Z', - minor: '2024-10-24T14:05:42.711Z', - patch: '2024-10-24T14:05:42.711Z', + minor: '2024-10-24T14:44:00.648Z', + patch: '2024-10-24T14:44:00.648Z', } diff --git a/apps/dotcom/client/version.ts b/apps/dotcom/client/version.ts index 363ca685f04e..6ceec9942c04 100644 --- a/apps/dotcom/client/version.ts +++ b/apps/dotcom/client/version.ts @@ -1,9 +1,9 @@ // This file is automatically generated by internal/scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '3.3.0' +export const version = '3.4.0' export const publishDates = { major: '2024-09-13T14:36:29.063Z', - minor: '2024-10-24T14:05:42.711Z', - patch: '2024-10-24T14:05:42.711Z', + minor: '2024-10-24T14:44:00.648Z', + patch: '2024-10-24T14:44:00.648Z', } diff --git a/lerna.json b/lerna.json index 6ff579aece13..d808d2c27b54 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,7 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "packages": ["packages/*"], - "version": "3.3.0" + "packages": [ + "packages/*" + ], + "version": "3.4.0" } diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index baac767b4cbe..497d9297e4ec 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -1,3 +1,17 @@ +# v3.4.0 (Thu Oct 24 2024) + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### Authors: 2 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) + +--- + # v3.1.0 (Wed Sep 25 2024) #### 🐛 Bug Fix diff --git a/packages/assets/package.json b/packages/assets/package.json index 5415a52d2145..3461b6573a98 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/assets", "description": "A tiny little drawing app (assets).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/editor/CHANGELOG.md b/packages/editor/CHANGELOG.md index 9e09df861f94..7d2f466c9b18 100644 --- a/packages/editor/CHANGELOG.md +++ b/packages/editor/CHANGELOG.md @@ -1,3 +1,97 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +#### make options object stable ([#4762](https://github.com/tldraw/tldraw/pull/4762)) + +- Writing `options` inline in the Tldraw component will no longer cause re-render loops + +#### menus: rework the open menu logic to be in one consistent place ([#4642](https://github.com/tldraw/tldraw/pull/4642)) + +- Rework open menu logic to be centralized. + +#### drag: passthrough correct event type for drag events ([#4739](https://github.com/tldraw/tldraw/pull/4739)) + +- Fix bug with passing correct event type for drag events + +#### refactor: specify type at bbox ([#4732](https://github.com/tldraw/tldraw/pull/4732)) + +- When I see the code in `packages/editor/src/lib/exports/getSvgJsx.tsx`, Improvements were found. +``` +// L57 +let bbox: = null // any type +``` +- This is declared as `let`, but it is `any` type. +- I felt this was a risk for future maintenance. +- So I specify the type of `bbox`. +``` +let bbox: null | Box = null +``` + +#### lod: memoize media assets so that zoom level doesn't re-render constantly ([#4659](https://github.com/tldraw/tldraw/pull/4659)) + +- Improve performance of image/video rendering. + +#### drag/drop: followup to accidental img drop pr ([#4704](https://github.com/tldraw/tldraw/pull/4704)) + +- Fix bug with multiple images being created when dropping it onto the canvas. + +#### links: fix link indicator on stickies ([#4708](https://github.com/tldraw/tldraw/pull/4708)) + +- Fix link indicator in sticky notes. + +#### make sure DOM IDs are globally unique ([#4694](https://github.com/tldraw/tldraw/pull/4694)) + +- Exports and other tldraw instances no longer can affect how each other are rendered +- **BREAKING:** the `id` attribute that was present on some shapes in the dom has been removed. there's now a data-shape-id attribute on every shape wrapper instead though. + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) +- [botcom] file state [#4766](https://github.com/tldraw/tldraw/pull/4766) ([@ds300](https://github.com/ds300)) +- botcom: account menu [bk] [#4683](https://github.com/tldraw/tldraw/pull/4683) ([@mimecuvalo](https://github.com/mimecuvalo)) +- botcom: prevent pinch-zoom on sidebar [#4697](https://github.com/tldraw/tldraw/pull/4697) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### 🐛 Bug Fixes + +- [Fix] Keyboard events on menus [#4745](https://github.com/tldraw/tldraw/pull/4745) ([@steveruizok](https://github.com/steveruizok)) +- Make ids public [#4742](https://github.com/tldraw/tldraw/pull/4742) ([@steveruizok](https://github.com/steveruizok)) +- drag: passthrough correct event type for drag events [#4739](https://github.com/tldraw/tldraw/pull/4739) ([@mimecuvalo](https://github.com/mimecuvalo)) +- drag/drop: followup to accidental img drop pr [#4704](https://github.com/tldraw/tldraw/pull/4704) ([@mimecuvalo](https://github.com/mimecuvalo)) +- links: fix link indicator on stickies [#4708](https://github.com/tldraw/tldraw/pull/4708) ([@mimecuvalo](https://github.com/mimecuvalo)) +- [fix] Meta key bug [#4701](https://github.com/tldraw/tldraw/pull/4701) ([@steveruizok](https://github.com/steveruizok)) +- make sure DOM IDs are globally unique [#4694](https://github.com/tldraw/tldraw/pull/4694) ([@SomeHats](https://github.com/SomeHats)) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) +- menus: rework the open menu logic to be in one consistent place [#4642](https://github.com/tldraw/tldraw/pull/4642) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) +- refactor: specify type at bbox [#4732](https://github.com/tldraw/tldraw/pull/4732) ([@nayounsang](https://github.com/nayounsang)) +- lod: memoize media assets so that zoom level doesn't re-render constantly [#4659](https://github.com/tldraw/tldraw/pull/4659) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) + +#### 🛠️ API Changes + +- make options object stable [#4762](https://github.com/tldraw/tldraw/pull/4762) ([@SomeHats](https://github.com/SomeHats)) + +#### Authors: 7 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- [@nayounsang](https://github.com/nayounsang) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/editor/package.json b/packages/editor/package.json index a781a1435e71..7779aff2ce53 100644 --- a/packages/editor/package.json +++ b/packages/editor/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/editor", "description": "A tiny little drawing app (editor).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/editor/src/version.ts b/packages/editor/src/version.ts index 363ca685f04e..6ceec9942c04 100644 --- a/packages/editor/src/version.ts +++ b/packages/editor/src/version.ts @@ -1,9 +1,9 @@ // This file is automatically generated by internal/scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '3.3.0' +export const version = '3.4.0' export const publishDates = { major: '2024-09-13T14:36:29.063Z', - minor: '2024-10-24T14:05:42.711Z', - patch: '2024-10-24T14:05:42.711Z', + minor: '2024-10-24T14:44:00.648Z', + patch: '2024-10-24T14:44:00.648Z', } diff --git a/packages/namespaced-tldraw/CHANGELOG.md b/packages/namespaced-tldraw/CHANGELOG.md index b6fc206d3ab1..22f4ddb25bcb 100644 --- a/packages/namespaced-tldraw/CHANGELOG.md +++ b/packages/namespaced-tldraw/CHANGELOG.md @@ -1,3 +1,17 @@ +# v3.4.0 (Thu Oct 24 2024) + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### Authors: 2 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) + +--- + # v3.1.0 (Wed Sep 25 2024) #### 🐛 Bug Fix diff --git a/packages/namespaced-tldraw/package.json b/packages/namespaced-tldraw/package.json index 3e1014ea0d85..f3557fe6cce2 100644 --- a/packages/namespaced-tldraw/package.json +++ b/packages/namespaced-tldraw/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/tldraw", "description": "A tiny little drawing editor.", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/state-react/CHANGELOG.md b/packages/state-react/CHANGELOG.md index 1dc76f0034bb..b8d4e016691f 100644 --- a/packages/state-react/CHANGELOG.md +++ b/packages/state-react/CHANGELOG.md @@ -1,3 +1,17 @@ +# v3.4.0 (Thu Oct 24 2024) + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### Authors: 2 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) + +--- + # v3.1.0 (Wed Sep 25 2024) #### 🐛 Bug Fix diff --git a/packages/state-react/package.json b/packages/state-react/package.json index 7d608863ac61..dda3568a92b2 100644 --- a/packages/state-react/package.json +++ b/packages/state-react/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/state-react", "description": "A tiny little drawing app (react bindings for state).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/state/CHANGELOG.md b/packages/state/CHANGELOG.md index a11010a3d8c0..57b2b9a59fe5 100644 --- a/packages/state/CHANGELOG.md +++ b/packages/state/CHANGELOG.md @@ -1,3 +1,33 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/state/package.json b/packages/state/package.json index b73ba1e5f554..d7c9f7b8bc42 100644 --- a/packages/state/package.json +++ b/packages/state/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/state", "description": "A tiny little drawing app (state).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/store/CHANGELOG.md b/packages/store/CHANGELOG.md index 888bf3cc7576..f4ed2829f728 100644 --- a/packages/store/CHANGELOG.md +++ b/packages/store/CHANGELOG.md @@ -1,3 +1,33 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/store/package.json b/packages/store/package.json index f3e56a2441f9..470710275be1 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/store", "description": "A tiny little drawing app (store).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/sync-core/CHANGELOG.md b/packages/sync-core/CHANGELOG.md index 5c25a05282ab..01f0c52c3b8b 100644 --- a/packages/sync-core/CHANGELOG.md +++ b/packages/sync-core/CHANGELOG.md @@ -1,3 +1,35 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) +- [botcom] Fix file deletion and creation [#4751](https://github.com/tldraw/tldraw/pull/4751) ([@ds300](https://github.com/ds300)) +- botcom: account menu [bk] [#4683](https://github.com/tldraw/tldraw/pull/4683) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/sync-core/package.json b/packages/sync-core/package.json index 9ff3e01f13b5..ab00d4c1200e 100644 --- a/packages/sync-core/package.json +++ b/packages/sync-core/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/sync-core", "description": "A tiny little drawing app (multiplayer sync).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw GB Ltd.", "email": "hello@tldraw.com" diff --git a/packages/sync/CHANGELOG.md b/packages/sync/CHANGELOG.md index dff1b65513ff..459e5b0b55a2 100644 --- a/packages/sync/CHANGELOG.md +++ b/packages/sync/CHANGELOG.md @@ -1,3 +1,19 @@ +# v3.4.0 (Thu Oct 24 2024) + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) +- botcom: redirect to intended room when signing in [#4725](https://github.com/tldraw/tldraw/pull/4725) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### Authors: 3 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/sync/package.json b/packages/sync/package.json index e15a73953c0d..7dc6771b88d5 100644 --- a/packages/sync/package.json +++ b/packages/sync/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/sync", "description": "A tiny little drawing app (multiplayer sync react bindings).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw GB Ltd.", "email": "hello@tldraw.com" diff --git a/packages/tldraw/CHANGELOG.md b/packages/tldraw/CHANGELOG.md index 3827a890a043..84aa6955e796 100644 --- a/packages/tldraw/CHANGELOG.md +++ b/packages/tldraw/CHANGELOG.md @@ -1,3 +1,122 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +#### make options object stable ([#4762](https://github.com/tldraw/tldraw/pull/4762)) + +- Writing `options` inline in the Tldraw component will no longer cause re-render loops + +#### [Fix] Toolbar button outline border radius ([#4759](https://github.com/tldraw/tldraw/pull/4759)) + +- Fixed a bug with the border radius on toolbar button outlines. + +#### Improve tooltips in the style panel ([#4750](https://github.com/tldraw/tldraw/pull/4750)) + +- Fixed a bug with… + +#### [Fix] Colors from Excalidraw when pasting ([#4752](https://github.com/tldraw/tldraw/pull/4752)) + +- Fixed a bug that prevented pasted Excalidraw content from keeping the right color. + +#### arrows: fix up label indicator showing up ([#4749](https://github.com/tldraw/tldraw/pull/4749)) + +- Fix labels on arrows having indicators show up behind them. + +#### Limit the page name length in the move to page menu. ([#4747](https://github.com/tldraw/tldraw/pull/4747)) + +- Limit the length of the page names in the move to page menu. + +#### ui: dont highlight menu triggers that dont have their submenus open ([#4710](https://github.com/tldraw/tldraw/pull/4710)) + +- Fix submenu hover active state. + +#### menus: rework the open menu logic to be in one consistent place ([#4642](https://github.com/tldraw/tldraw/pull/4642)) + +- Rework open menu logic to be centralized. + +#### Fix style menu vertical align button ([#4735](https://github.com/tldraw/tldraw/pull/4735)) + +- Fixed a bug with the vertical alignment button in the style panel. + +#### Add labelColor for notes. ([#4724](https://github.com/tldraw/tldraw/pull/4724)) + +- Adds `labelColor` for Note shapes. + +#### lod: memoize media assets so that zoom level doesn't re-render constantly ([#4659](https://github.com/tldraw/tldraw/pull/4659)) + +- Improve performance of image/video rendering. + +#### embeds: fix pasting urls giving an error msg always ([#4709](https://github.com/tldraw/tldraw/pull/4709)) + +- Fix embed dialog pasting URLs + +#### make sure DOM IDs are globally unique ([#4694](https://github.com/tldraw/tldraw/pull/4694)) + +- Exports and other tldraw instances no longer can affect how each other are rendered +- **BREAKING:** the `id` attribute that was present on some shapes in the dom has been removed. there's now a data-shape-id attribute on every shape wrapper instead though. + +#### menus: fix up some missing readonlyOk items; rm some ctx menu items in readonly ([#4696](https://github.com/tldraw/tldraw/pull/4696)) + +- Fix some items missing `readonlyOk` and some other items that shouldn't have been shown in readonly mode. + +#### share: fix copy link ux ([#4695](https://github.com/tldraw/tldraw/pull/4695)) + +- Fix copy link UX (adds spinner and also adds checkmarks back in) + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) +- botcom: inline rename [#4758](https://github.com/tldraw/tldraw/pull/4758) ([@mimecuvalo](https://github.com/mimecuvalo)) +- [botcom] local session state, logged out view of files [#4711](https://github.com/tldraw/tldraw/pull/4711) ([@steveruizok](https://github.com/steveruizok)) +- ui: suppress aria warning about desc in dialogs [#4707](https://github.com/tldraw/tldraw/pull/4707) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### 🐛 Bug Fixes + +- [Fix] Toolbar button outline border radius [#4759](https://github.com/tldraw/tldraw/pull/4759) ([@steveruizok](https://github.com/steveruizok)) +- [Fix] Keyboard events on menus [#4745](https://github.com/tldraw/tldraw/pull/4745) ([@steveruizok](https://github.com/steveruizok)) +- [Fix] Colors from Excalidraw when pasting [#4752](https://github.com/tldraw/tldraw/pull/4752) ([@steveruizok](https://github.com/steveruizok)) +- arrows: fix up label indicator showing up [#4749](https://github.com/tldraw/tldraw/pull/4749) ([@mimecuvalo](https://github.com/mimecuvalo)) +- ui: dont highlight menu triggers that dont have their submenus open [#4710](https://github.com/tldraw/tldraw/pull/4710) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) +- Fix style menu vertical align button [#4735](https://github.com/tldraw/tldraw/pull/4735) ([@steveruizok](https://github.com/steveruizok)) +- embeds: fix pasting urls giving an error msg always [#4709](https://github.com/tldraw/tldraw/pull/4709) ([@mimecuvalo](https://github.com/mimecuvalo)) +- make sure DOM IDs are globally unique [#4694](https://github.com/tldraw/tldraw/pull/4694) ([@SomeHats](https://github.com/SomeHats)) +- menus: fix up some missing readonlyOk items; rm some ctx menu items in readonly [#4696](https://github.com/tldraw/tldraw/pull/4696) ([@mimecuvalo](https://github.com/mimecuvalo)) +- share: fix copy link ux [#4695](https://github.com/tldraw/tldraw/pull/4695) ([@mimecuvalo](https://github.com/mimecuvalo)) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) +- Improve tooltips in the style panel [#4750](https://github.com/tldraw/tldraw/pull/4750) ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Limit the page name length in the move to page menu. [#4747](https://github.com/tldraw/tldraw/pull/4747) ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- menus: rework the open menu logic to be in one consistent place [#4642](https://github.com/tldraw/tldraw/pull/4642) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) +- lod: memoize media assets so that zoom level doesn't re-render constantly [#4659](https://github.com/tldraw/tldraw/pull/4659) ([@mimecuvalo](https://github.com/mimecuvalo) [@steveruizok](https://github.com/steveruizok)) + +#### 🎉 New Features + +- Add labelColor for notes. [#4724](https://github.com/tldraw/tldraw/pull/4724) ([@steveruizok](https://github.com/steveruizok)) + +#### 🛠️ API Changes + +- make options object stable [#4762](https://github.com/tldraw/tldraw/pull/4762) ([@SomeHats](https://github.com/SomeHats)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/tldraw/package.json b/packages/tldraw/package.json index c109133cbad1..7ed8e29ab407 100644 --- a/packages/tldraw/package.json +++ b/packages/tldraw/package.json @@ -1,7 +1,7 @@ { "name": "tldraw", "description": "A tiny little drawing editor.", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/tldraw/src/lib/ui/version.ts b/packages/tldraw/src/lib/ui/version.ts index 363ca685f04e..6ceec9942c04 100644 --- a/packages/tldraw/src/lib/ui/version.ts +++ b/packages/tldraw/src/lib/ui/version.ts @@ -1,9 +1,9 @@ // This file is automatically generated by internal/scripts/refresh-assets.ts. // Do not edit manually. Or do, I'm a comment, not a cop. -export const version = '3.3.0' +export const version = '3.4.0' export const publishDates = { major: '2024-09-13T14:36:29.063Z', - minor: '2024-10-24T14:05:42.711Z', - patch: '2024-10-24T14:05:42.711Z', + minor: '2024-10-24T14:44:00.648Z', + patch: '2024-10-24T14:44:00.648Z', } diff --git a/packages/tlschema/CHANGELOG.md b/packages/tlschema/CHANGELOG.md index aea65fc5f1d3..335d9739fcac 100644 --- a/packages/tlschema/CHANGELOG.md +++ b/packages/tlschema/CHANGELOG.md @@ -1,3 +1,41 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +#### Add labelColor for notes. ([#4724](https://github.com/tldraw/tldraw/pull/4724)) + +- Adds `labelColor` for Note shapes. + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### 🎉 New Features + +- Add labelColor for notes. [#4724](https://github.com/tldraw/tldraw/pull/4724) ([@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/tlschema/package.json b/packages/tlschema/package.json index edc86e9ebbed..83d66346622b 100644 --- a/packages/tlschema/package.json +++ b/packages/tlschema/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/tlschema", "description": "A tiny little drawing app (schema).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index c065fcb1f422..39c799f78315 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,3 +1,33 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.3.0 (Wed Oct 09 2024) ### Release Notes diff --git a/packages/utils/package.json b/packages/utils/package.json index 9eda837317ac..106e9508e9a7 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/utils", "description": "A tiny little drawing app (private utilities).", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com" diff --git a/packages/validate/CHANGELOG.md b/packages/validate/CHANGELOG.md index 1c75f390f5ea..d3454e764e75 100644 --- a/packages/validate/CHANGELOG.md +++ b/packages/validate/CHANGELOG.md @@ -1,3 +1,33 @@ +# v3.4.0 (Thu Oct 24 2024) + +### Release Notes + +#### npm: upgrade eslint v8 → v9 ([#4757](https://github.com/tldraw/tldraw/pull/4757)) + +- Upgrade eslint v8 → v9 + +--- + +#### 🐛 Bug Fix + +- roll back changes from bad deploy [#4780](https://github.com/tldraw/tldraw/pull/4780) ([@SomeHats](https://github.com/SomeHats)) +- Update CHANGELOG.md \[skip ci\] ([@huppy-bot[bot]](https://github.com/huppy-bot[bot])) + +#### 💄 Product Improvements + +- npm: upgrade eslint v8 → v9 [#4757](https://github.com/tldraw/tldraw/pull/4757) ([@mimecuvalo](https://github.com/mimecuvalo) [@SomeHats](https://github.com/SomeHats) [@ds300](https://github.com/ds300) [@MitjaBezensek](https://github.com/MitjaBezensek) [@steveruizok](https://github.com/steveruizok)) + +#### Authors: 6 + +- [@huppy-bot[bot]](https://github.com/huppy-bot[bot]) +- alex ([@SomeHats](https://github.com/SomeHats)) +- David Sheldrick ([@ds300](https://github.com/ds300)) +- Mime Čuvalo ([@mimecuvalo](https://github.com/mimecuvalo)) +- Mitja Bezenšek ([@MitjaBezensek](https://github.com/MitjaBezensek)) +- Steve Ruiz ([@steveruizok](https://github.com/steveruizok)) + +--- + # v3.2.0 (Thu Sep 26 2024) #### 🐛 Bug Fix diff --git a/packages/validate/package.json b/packages/validate/package.json index 7cab9892388e..966ae4451096 100644 --- a/packages/validate/package.json +++ b/packages/validate/package.json @@ -1,7 +1,7 @@ { "name": "@tldraw/validate", "description": "A runtime validation library by tldraw.", - "version": "3.3.0", + "version": "3.4.0", "author": { "name": "tldraw Inc.", "email": "hello@tldraw.com"