Skip to content

Commit 4a0a5ec

Browse files
committed
release: releasing 4.2.1
1 parent 47080ec commit 4a0a5ec

File tree

4 files changed

+27
-21
lines changed

4 files changed

+27
-21
lines changed

CHANGELOG.md

+23-17
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
# Changelog
22

3+
## v4.2.1 [2023-03-28]
4+
5+
### Fixes
6+
7+
- [fix] - Add support for SSR
8+
39
## v4.2.0 [2023-03-17]
410

5-
## Features
11+
### Features
612

713
- [feat] dataset values should accept string type
814
- [feat] extract DomainSubLabel into a plugin
915
- [feat] allow multiple instances of same plugin to co-exist
1016
- [feat] refactor all CSS classnames, for a more consistent naming
1117
- [feat] add defaultValue option to set a default value for missing values in dataset
1218

13-
## Bugfixes
19+
### Bugfixes
1420

1521
- [fix] fix remaining wrong templates name, which should be migrated to snakeCase
1622
- [fix] fix CalendarLabel missing coordinates on repaint
@@ -23,12 +29,12 @@
2329

2430
## v4.1.0 [2023-02-28]
2531

26-
## Features
32+
### Features
2733

2834
- [feat] add github-like day subdomain template
2935
- [feat] add safeguard and error message when Domain/SubDomain couple is not valid
3036

31-
## Bugfixes
37+
### Bugfixes
3238

3339
- [fix] DomainSubLabel vertical position ignoring padding and label position
3440
- [fix] rename subDomain template, for consistency
@@ -40,43 +46,43 @@ See all previous changelogs from v4.0.0-beta.1 though 12
4046

4147
## v4.0.0-beta.12 [2023-02-27]
4248

43-
## Features
49+
### Features
4450

4551
- [feat] add legend lite plugin
4652

47-
## Chores
53+
### Chores
4854

4955
- [chore] CSS file is not exported from the package
5056
- [refactor] extract variables to constant file
5157
- [refactor] improve typescript definition
5258

5359
## v4.0.0-beta.11 [2023-02-25]
5460

55-
## Features
61+
### Features
5662

5763
- [feat] data source URI now accepts dayjs format token (BREAKING CHANGES)
5864
- [feat] add support for RTL
5965

60-
## Bugfixes
66+
### Bugfixes
6167

6268
- [fix] fix missing data when subDomain range is overflow the domain range
6369
- [fix] fix cells stroke cut off on calendar edge
6470
- [fix] week subDomain where first and last week not assigned to correct month
6571
- [fix] scale color and opacity should always be clamped to the domain
6672

67-
## Chores
73+
### Chores
6874

6975
- Improve typescript d.ts
7076

7177
## v4.0.0-beta.10 [2023-02-19]
7278

73-
## Bugfixes
79+
### Bugfixes
7480

7581
- [fix] fix en locale always loaded instead of user defined custom locale
7682

7783
## v4.0.0-beta.9 [2023-02-18]
7884

79-
## Features
85+
### Features
8086

8187
- [feat] dark/Light mode option can be toggled via an option
8288

@@ -87,29 +93,29 @@ See all previous changelogs from v4.0.0-beta.1 though 12
8793
- [fix] fix legend UI, where dimension where bigger than expected
8894
- [fix] remove legend background to support dark/light mode
8995

90-
## Features
96+
### Features
9197

9298
- [feat] add support for opacity scale
9399

94100
## v4.0.0-beta.7 [2023-02-15]
95101

96-
## Bugfixes
102+
### Bugfixes
97103

98104
- [fix] fix dataset shifted by one day due to timezone
99105

100-
## Chores
106+
### Chores
101107

102108
- Dependencies update
103109

104110
## v4.0.0-beta.6 [2023-02-14]
105111

106-
## Features
112+
### Features
107113

108114
- [feat] add API to extend/inject custom dayjs locale
109115

110116
## v4.0.0-beta.5 [2023-02-02]
111117

112-
## Bugfixes
118+
### Bugfixes
113119

114120
- [fix] keep default text color when subDomain do not have value
115121
- [fix] fix ignored subDomain.color option
@@ -118,7 +124,7 @@ See all previous changelogs from v4.0.0-beta.1 though 12
118124

119125
- [feat] add CSS support for dark theme
120126

121-
## Chores
127+
### Chores
122128

123129
- [tests] Refactor tests to test only against the minimum browser version
124130

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cal-heatmap",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"description": "Cal-Heatmap is a javascript module to create calendar heatmap to visualize time series data",
55
"keywords": [
66
"calendar",

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const VERSION = '4.2.0';
1+
const VERSION = '4.2.1';
22
export default VERSION;

0 commit comments

Comments
 (0)