Skip to content

Commit

Permalink
Merge branch 'main' into 2024_10_03-refactor_cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
markov00 authored Oct 3, 2024
2 parents 178ac03 + 47d43cc commit 1214324
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [67.0.1](https://github.com/elastic/elastic-charts/compare/v67.0.0...v67.0.1) (2024-10-03)


### Bug Fixes

* **ChartStatus:** render complete if same parent size is dispatched ([#2534](https://github.com/elastic/elastic-charts/issues/2534)) ([c3aba88](https://github.com/elastic/elastic-charts/commit/c3aba885b92f898ef59f452d3fed7812584d48b0))

# [67.0.0](https://github.com/elastic/elastic-charts/compare/v66.1.1...v67.0.0) (2024-09-23)


Expand Down
4 changes: 2 additions & 2 deletions e2e/tests/performance.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ test.describe('Performance', () => {
// eslint-disable-next-line no-console
console.log('window.performance.getEntriesByType("measure")', getAllMeasures);
// using these two values as min/max to understand if we are increasing or decreasing the rendering speed.
expect(getAllMeasures[0].duration).toBeGreaterThan(1500);
expect(getAllMeasures[0].duration).toBeLessThan(1800);
expect(getAllMeasures[0].duration).toBeGreaterThan(1400);
expect(getAllMeasures[0].duration).toBeLessThan(1600);
});
}
});
2 changes: 1 addition & 1 deletion packages/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@elastic/charts",
"description": "Elastic-Charts data visualization library",
"version": "67.0.0",
"version": "67.0.1",
"author": "Elastic DataVis",
"license": "SEE LICENSE IN LICENSE.txt",
"main": "dist/index.js",
Expand Down

0 comments on commit 1214324

Please sign in to comment.