Skip to content

Commit 13ba204

Browse files
haqadnmatticbot
authored andcommitted
Changelog and readme.txt edits.
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/29766987900 Upstream-Ref: Automattic/jetpack@d2c0cb0
1 parent c99dab6 commit 13ba204

4 files changed

Lines changed: 16 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.10.2-alpha] - unreleased
9-
10-
This is an alpha version! The changes listed here are not final.
11-
8+
## [1.10.2] - 2026-07-20
129
### Added
13-
- Charts: add HeatmapChart min/max cell size bounds (sparse grids keep sensible cells, long grids overflow for scrolling) and floor an all-zero heatmap at the scale bottom instead of full intensity.
10+
- Add HeatmapChart min/max cell size bounds and floor an all-zero heatmap at the scale bottom instead of full intensity. [#50517]
1411

1512
### Changed
16-
- Charts: make calendar heatmaps render ragged edges by default, with out-of-range days skipped by hover and keyboard navigation.
17-
- Update package dependencies.
13+
- Make calendar heatmaps render ragged edges by default, with out-of-range days skipped by hover and keyboard navigation. [#50520]
14+
- Update package dependencies. [#50510] [#50529]
1815

1916
### Fixed
20-
- Charts: keep aspectRatio charts within their parent on both axes so a height-constrained container no longer overflows vertically.
17+
- Keep aspectRatio charts within their parent on both axes so a height-constrained container no longer overflows vertically. [#50468]
2118

2219
## [1.10.1] - 2026-07-13
2320
### Changed
@@ -934,7 +931,7 @@ This is an alpha version! The changes listed here are not final.
934931
- Fixed lints following ESLint rule changes for TS [#40584]
935932
- Fixing a bug in Chart storybook data. [#40640]
936933

937-
[1.10.2-alpha]: https://github.com/Automattic/charts/compare/v1.10.1...v1.10.2-alpha
934+
[1.10.2]: https://github.com/Automattic/charts/compare/v1.10.1...v1.10.2
938935
[1.10.1]: https://github.com/Automattic/charts/compare/v1.10.0...v1.10.1
939936
[1.10.0]: https://github.com/Automattic/charts/compare/v1.9.0...v1.10.0
940937
[1.9.0]: https://github.com/Automattic/charts/compare/v1.8.1...v1.9.0

dist/index.d.cts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ declare const BarListChartResponsive: ({
946946
width,
947947
height,
948948
...chartProps
949-
}: Omit<BarListChartProps, "width" | "height" | "size"> & {
949+
}: Omit<BarListChartProps, "size" | "width" | "height"> & {
950950
width?: number;
951951
height?: number;
952952
size?: number;
@@ -1100,7 +1100,7 @@ declare const GeoChartResponsive: ({
11001100
width,
11011101
height,
11021102
...chartProps
1103-
}: Omit<GeoChartProps, "width" | "height" | "size"> & {
1103+
}: Omit<GeoChartProps, "size" | "width" | "height"> & {
11041104
width?: number;
11051105
height?: number;
11061106
size?: number;
@@ -1271,7 +1271,7 @@ declare const LeaderboardChartResponsive: (({
12711271
width,
12721272
height,
12731273
...chartProps
1274-
}: Omit<LeaderboardChartProps, "width" | "height" | "size"> & {
1274+
}: Omit<LeaderboardChartProps, "size" | "width" | "height"> & {
12751275
width?: number;
12761276
height?: number;
12771277
size?: number;
@@ -1804,7 +1804,7 @@ declare const Sparkline: ({
18041804
width,
18051805
height,
18061806
...chartProps
1807-
}: Omit<SparklineProps, "width" | "height" | "size"> & {
1807+
}: Omit<SparklineProps, "size" | "width" | "height"> & {
18081808
width?: number;
18091809
height?: number;
18101810
size?: number;

dist/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ declare const BarListChartResponsive: ({
946946
width,
947947
height,
948948
...chartProps
949-
}: Omit<BarListChartProps, "width" | "height" | "size"> & {
949+
}: Omit<BarListChartProps, "size" | "width" | "height"> & {
950950
width?: number;
951951
height?: number;
952952
size?: number;
@@ -1100,7 +1100,7 @@ declare const GeoChartResponsive: ({
11001100
width,
11011101
height,
11021102
...chartProps
1103-
}: Omit<GeoChartProps, "width" | "height" | "size"> & {
1103+
}: Omit<GeoChartProps, "size" | "width" | "height"> & {
11041104
width?: number;
11051105
height?: number;
11061106
size?: number;
@@ -1271,7 +1271,7 @@ declare const LeaderboardChartResponsive: (({
12711271
width,
12721272
height,
12731273
...chartProps
1274-
}: Omit<LeaderboardChartProps, "width" | "height" | "size"> & {
1274+
}: Omit<LeaderboardChartProps, "size" | "width" | "height"> & {
12751275
width?: number;
12761276
height?: number;
12771277
size?: number;
@@ -1804,7 +1804,7 @@ declare const Sparkline: ({
18041804
width,
18051805
height,
18061806
...chartProps
1807-
}: Omit<SparklineProps, "width" | "height" | "size"> & {
1807+
}: Omit<SparklineProps, "size" | "width" | "height"> & {
18081808
width?: number;
18091809
height?: number;
18101810
size?: number;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@automattic/charts",
3-
"version": "1.10.2-alpha",
3+
"version": "1.10.2",
44
"description": "Display charts within Automattic products.",
55
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/charts/#readme",
66
"bugs": {
@@ -63,7 +63,7 @@
6363
"typecheck": "tsgo --noEmit"
6464
},
6565
"dependencies": {
66-
"@automattic/number-formatters": "^1.2.7-alpha",
66+
"@automattic/number-formatters": "^1.2.7",
6767
"@babel/runtime": "7.29.7",
6868
"@react-spring/web": "10.1.1",
6969
"@visx/annotation": "^4.0.0",

0 commit comments

Comments
 (0)