Skip to content

Commit c32fbe3

Browse files
committed
Version 5.10.7
1 parent 683cdd3 commit c32fbe3

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "@amcharts/amcharts5",
4-
"version": "5.10.6",
4+
"version": "5.10.7",
55
"author": "amCharts <contact@amcharts.com> (https://www.amcharts.com/)",
66
"description": "amCharts 5",
77
"homepage": "https://www.amcharts.com/",

packages/shared/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
Please note, that this project, while following numbering syntax, it DOES NOT
66
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.
77

8+
## [5.10.7] - 2024-10-12
9+
10+
### Fixed
11+
- In some cases disposing `Root` element could result in a "Template is disposed" error.
12+
13+
814
## [5.10.6] - 2024-10-11
915

1016
### Added

src/.internal/core/Registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class Registry {
66
/**
77
* Currently running version of amCharts.
88
*/
9-
readonly version: string = "5.10.6";
9+
readonly version: string = "5.10.7";
1010

1111
/**
1212
* List of applied licenses.

src/.internal/core/util/Template.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ export class Template<E extends Entity> implements IDisposer {
438438
}
439439

440440
public _removeObjectTemplate(entity: E) {
441-
this._checkDisposed();
441+
//this._checkDisposed();
442442
$array.remove(this._entities, entity);
443443
}
444444

0 commit comments

Comments
 (0)