14 KiB
v2.1.0 (Tue Apr 23 2024)
Release Notes
New migrations again (#3220)
BREAKING CHANGES
-
The
Migrations
type is now calledLegacyMigrations
. -
The serialized schema format (e.g. returned by
StoreSchema.serialize()
andStore.getSnapshot()
) has changed. You don't need to do anything about it unless you were reading data directly from the schema for some reason. In which case it'd be best to avoid that in the future! We have no plans to change the schema format again (this time was traumatic enough) but you never know. -
compareRecordVersions
and theRecordVersion
type have both disappeared. There is no replacement. These were public by mistake anyway, so hopefully nobody had been using it. -
compareSchemas
is gone. Comparing the schemas directly is no longer really possible since we introduced some fuzziness. The best thing to do now to check compatibility is to callschema.getMigraitonsSince(prevSchema)
and it will return an error if the schemas are not compatible, an empty array if there are no migrations to apply since the prev schema, and a nonempty array otherwise.Generally speaking, the best way to check schema compatibility now is to call
store.schema.getMigrationsSince(persistedSchema)
. This will throw an error if there is no upgrade path from thepersistedSchema
to the current version. -
defineMigrations
has been deprecated and will be removed in a future release. For upgrade instructions see https://tldraw.dev/docs/persistence#Updating-legacy-shape-migrations-defineMigrations -
migrate
has been removed. Nobody should have been using this but if you were you'll need to find an alternative. For migrating tldraw data, you should stick to usingschema.migrateStoreSnapshot
and, if you are building a nuanced sync engine that supports some amount of backwards compatibility, also feel free to useschema.migratePersistedRecord
. -
the
Migration
type has changed. If you need the old one for some reason it has been renamed toLegacyMigration
. It will be removed in a future release. -
the
Migrations
type has been renamed toLegacyMigrations
and will be removed in a future release. -
the
SerializedSchema
type has been augmented. If you need the old version specifically you can useSerializedSchemaV1
💥 Breaking Change
- React-powered SVG exports #3117 (@SomeHats @huppy-bot[bot])
📚 SDK Changes
- [fix] allow loading files #3517 (@ds300)
- New migrations again #3220 (@ds300 @steveruizok)
- use native structuredClone on node, cloudflare workers, and in tests #3166 (@si14)
Authors: 5
- @huppy-bot[bot]
- alex (@SomeHats)
- Dan Groshev (@si14)
- David Sheldrick (@ds300)
- Steve Ruiz (@steveruizok)
v2.0.0-beta.5 (Thu Feb 29 2024)
🔩 Dependency Updates
- bump typescript / api-extractor #2949 (@steveruizok)
Authors: 1
- Steve Ruiz (@steveruizok)
v2.0.0-beta.4 (Wed Feb 21 2024)
Release Notes
Faster validations + record reference stability at the same time (#2848)
- Add a brief release note for your PR here.
🐛 Bug Fix
- Fix object validator #2897 (@MitjaBezensek)
- Faster validations + record reference stability at the same time #2848 (@ds300)
- [Snapping 1/5] Validation & strict types for fractional indexes #2827 (@SomeHats)
🏠 Internal
- Check tsconfig "references" arrays #2891 (@ds300)
- dev: swap yarn test and test-dev for better dx #2773 (@mimecuvalo)
Authors: 4
- alex (@SomeHats)
- David Sheldrick (@ds300)
- Mime Čuvalo (@mimecuvalo)
- Mitja Bezenšek (@MitjaBezensek)
v2.0.0-beta.3 (Tue Feb 13 2024)
Release Notes
error reporting: rm ids from msgs for better Sentry grouping (#2738)
- Error reporting: improve grouping for Sentry.
dev: add test-dev command for easier testing of packages (#2627)
- Adds easier testing command for individual packages.
🚀 Enhancement
🐛 Bug Fix
- error reporting: rm ids from msgs for better Sentry grouping #2738 (@mimecuvalo)
- Fix validation for local files. #2447 (@MitjaBezensek)
🏠 Internal
- Unbiome #2776 (@si14)
- Update the project to Node 20 #2691 (@si14)
- dev: add test-dev command for easier testing of packages #2627 (@mimecuvalo)
- Add docs #2470 (@steveruizok)
🔩 Dependency Updates
Authors: 4
- Dan Groshev (@si14)
- Mime Čuvalo (@mimecuvalo)
- Mitja Bezenšek (@MitjaBezensek)
- Steve Ruiz (@steveruizok)
v2.0.0-beta.2 (Wed Jan 10 2024)
Release Notes
Add url validation (#2428)
- Add validation to urls.
Fix trademark links (#2380)
- Fixes broken links in a number of docs files.
🐛 Bug Fix
- Add url validation #2428 (@MitjaBezensek @SomeHats)
📝 Documentation
- Fix trademark links #2380 (@nonparibus)
- Another typo fix. #2366 (@steveruizok)
Authors: 4
- alex (@SomeHats)
- David @ HASH (@nonparibus)
- Mitja Bezenšek (@MitjaBezensek)
- Steve Ruiz (@steveruizok)
v2.0.0-beta.1 (Wed Dec 20 2023)
💥 Breaking Change
- bump to beta #2364 (@steveruizok)
- Change licenses to tldraw #2167 (@steveruizok)
Authors: 1
- Steve Ruiz (@steveruizok)
v2.0.0-alpha.18 (Fri Nov 10 2023)
🏠 Internal
- Revert "bump prerelease from alpha to beta" #2192 (@ds300)
- bump prerelease from alpha to beta #2148 (@ds300)
Authors: 1
- David Sheldrick (@ds300)
v2.0.0-alpha.16 (Wed Oct 11 2023)
🏠 Internal
- Publish api.json #2034 (@steveruizok)
Authors: 1
- Steve Ruiz (@steveruizok)
v2.0.0-alpha.15 (Fri Oct 06 2023)
Release Notes
tldraw zero - package shuffle (#1710)
- [@tldraw/editor] lots, wip
- [@tldraw/ui] gone, merged to tldraw/tldraw
- [@tldraw/polyfills] gone, merged to tldraw/editor
- [@tldraw/primitives] gone, merged to tldraw/editor / tldraw/tldraw
- [@tldraw/indices] gone, merged to tldraw/editor
- [@tldraw/file-format] gone, merged to tldraw/tldraw
💥 Breaking Change
- tldraw zero - package shuffle #1710 (@steveruizok @SomeHats)
🚀 Enhancement
- Add shapes to exports #1776 (@steveruizok)
Authors: 2
- alex (@SomeHats)
- Steve Ruiz (@steveruizok)
v2.0.0-alpha.14 (Tue Jul 04 2023)
Release Notes
[feature] add meta
property to records (#1627)
- todo
🚀 Enhancement
- [feature] add
meta
property to records #1627 (@steveruizok)
Authors: 1
- Steve Ruiz (@steveruizok)
v2.0.0-alpha.13 (Wed Jun 28 2023)
Release Notes
Styles API (#1580)
mini defineShape
API (#1563)
[dev-facing, notes to come]
Rename tlvalidate to validate (#1508)
- Rename tlvalidate to validate
💥 Breaking Change
- Styles API #1580 (@SomeHats @steveruizok)
- mini
defineShape
API #1563 (@SomeHats) - Rename tlvalidate to validate #1508 (@steveruizok)
⚠️ Pushed to main
- update lazyrepo (@ds300)
Authors: 3
- alex (@SomeHats)
- David Sheldrick (@ds300)
- Steve Ruiz (@steveruizok)
v2.0.0-alpha.12 (Mon Apr 03 2023)
🐛 Bug Fix
- Make sure all types and build stuff get run in CI #1548 (@SomeHats)
- add pre-commit api report generation #1517 (@SomeHats)
- [chore] restore api extractor #1500 (@steveruizok)
- David/publish good #1488 (@ds300)
- [chore] alpha 10 #1486 (@ds300)
- [chore] bump for alpha 8 #1485 (@steveruizok)
- [improvement] API Reference docs #1478 (@steveruizok)
- stop using broken-af turbo for publishing #1476 (@ds300)
- [chore] add canary release script #1423 (@ds300 @steveruizok)
- [chore] upgrade yarn #1430 (@ds300)
- repo cleanup #1426 (@steveruizok)
Authors: 3
- alex (@SomeHats)
- David Sheldrick (@ds300)
- Steve Ruiz (@steveruizok)
@tldraw/tlvalidate
2.0.0-alpha.10
Patch Changes
- fix some package build scripting
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.10
2.0.0-alpha.9
Patch Changes
- 4b4399b6e: redeploy with yarn to prevent package version issues
- Updated dependencies [4b4399b6e]
- @tldraw/utils@2.0.0-alpha.9
2.0.0-alpha.8
Patch Changes
- Release day!
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.8
2.0.0-alpha.7
Patch Changes
- Bug fixes.
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.7
2.0.0-alpha.6
Patch Changes
- Add licenses.
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.6
2.0.0-alpha.5
Patch Changes
- Add CSS files to tldraw/tldraw.
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.5
2.0.0-alpha.4
Patch Changes
- Add children to tldraw/tldraw
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.4
2.0.0-alpha.3
Patch Changes
- Change permissions.
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.3
2.0.0-alpha.2
Patch Changes
- Add tldraw, editor
- Updated dependencies
- @tldraw/utils@2.0.0-alpha.2
0.1.0-alpha.11
Patch Changes
- Fix stale reactors.
- Updated dependencies
- @tldraw/utils@0.1.0-alpha.11
0.1.0-alpha.10
Patch Changes
- Fix type export bug.
- Updated dependencies
- @tldraw/utils@0.1.0-alpha.10
0.1.0-alpha.9
Patch Changes
- Fix import bugs.
- Updated dependencies
- @tldraw/utils@0.1.0-alpha.9
0.1.0-alpha.8
Patch Changes
- Changes validation requirements, exports validation helpers.
- Updated dependencies
- @tldraw/utils@0.1.0-alpha.8
0.1.0-alpha.7
Patch Changes
-
- Pre-pre-release update
- Updated dependencies
- @tldraw/utils@0.1.0-alpha.7
0.0.2-alpha.1
Patch Changes
- Fix error with HMR
- Updated dependencies
- @tldraw/utils@0.0.2-alpha.1
0.0.2-alpha.0
Patch Changes
- Initial release
- Updated dependencies
- @tldraw/utils@0.0.2-alpha.0