From 010800dba4191c15f5aef524491422adc95f23d7 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Fri, 22 Feb 2019 21:39:58 -0500 Subject: [PATCH] update change log --- CHANGELOG.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f2871b..d525c104 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [new version][unreleased] +## Breaking + +It is not possible to make custom build of `Konva` from npm installation, like `import Konva from 'konva/src/Core';` +The issue will be resolved later. + ### Possibly breaking That changes are private and internal specific. They should not break most of `Konva` apps. @@ -17,8 +22,9 @@ That changes are private and internal specific. They should not break most of `K * Removed polyfill for `requestAnimationFrame`. * `id` and `name` properties defaults are empty strings, not `undefined` * internal `_cache` property was updated to use es2015 `Map` instead of `{}`. -* `text.getTextHeight()` is deprecated. Use `text.height()` or `text.fontSize()` instead. -* Private method `stage._setPointerPosition()` is deprecated. Use `stage.setPointersPositions(event)`; + + + ### Added * Show a warning when a stage has too many layers @@ -40,6 +46,8 @@ That changes are private and internal specific. They should not break most of `K * A bit changed behavior of `removeId` (private method), now it doesn't clear node ref, if object is changed. * simplified `batchDraw` method (it doesn't use `Konva.Animation`) now. * Performance improvements for shapes will image patterns, linear and radial fills +* `text.getTextHeight()` is deprecated. Use `text.height()` or `text.fontSize()` instead. +* Private method `stage._setPointerPosition()` is deprecated. Use `stage.setPointersPositions(event)`; ### Fixed