Skip to content

Commit 7ff3ab7

Browse files
committed
Merge branch 'release/0.6.0'
2 parents 6ec629b + 6e1fb0c commit 7ff3ab7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+18334
-7139
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.0] - 2021-04-27
10+
11+
### Changed
12+
- **Breaking change**: Moved `GPU.js` from `dependencies` to `devDependencies` and `optionalDependencies`. (#642)
13+
14+
### Added
15+
- Added two new fired events, for suspending and resuming execution. (#637)
16+
- Added listing in scopes to `listNamedExpressions` method. (#638)
17+
18+
### Fixed
19+
- Fixed issues with scoped named expression. (#646, #641)
20+
- Fixed an issue with losing formating info about DateTime numbers. (#626)
21+
922
## [0.5.0] - 2021-04-15
1023

1124
### Changed

docs/guide/advanced-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ console.log(winningTeam)
116116
## Demo
117117

118118
<iframe
119-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/advanced-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
119+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/advanced-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
120120
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
121121
title="handsontable/hyperformula-demos: advanced-usage"
122122
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/basic-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ This demo presents several basic operations integrated with a
363363
sample UI.
364364

365365
<iframe
366-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
366+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
367367
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
368368
title="handsontable/hyperformula-demos: basic-operations"
369369
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/basic-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ works. It's time to move on to a more
6666
## Demo
6767

6868
<iframe
69-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/basic-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
69+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/basic-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
7070
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
7171
title="handsontable/hyperformula-demos: basic-usage"
7272
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/batch-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ can be sent as a single one.
118118
## Demo
119119

120120
<iframe
121-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/batch-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
121+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/batch-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
122122
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
123123
title="handsontable/hyperformula-demos: batch-operations"
124124
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/built-in-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ lets you design your own [custom functions](custom-functions).
5050
## Demo
5151

5252
<iframe
53-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/built-in-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
53+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/built-in-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
5454
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
5555
title="handsontable/hyperformula-demos: built-in-functions"
5656
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.6.0
4+
**Release date: April 27, 2021**
5+
6+
### Changed
7+
- **Breaking change**: Moved `GPU.js` from `dependencies` to `devDependencies` and `optionalDependencies`. [#642](https://github.com/handsontable/hyperformula/issues/642)
8+
9+
### Added
10+
- Added two new fired events, for suspending and resuming execution. [#637](https://github.com/handsontable/hyperformula/issues/637)
11+
- Added listing in scopes to `listNamedExpressions` method. [#638](https://github.com/handsontable/hyperformula/issues/638)
12+
13+
### Fixed
14+
- Fixed issues with scoped named expression. [#646](https://github.com/handsontable/hyperformula/issues/646), [#641](https://github.com/handsontable/hyperformula/issues/641)
15+
- Fixed an issue with losing formating info about DateTime numbers. [#626](https://github.com/handsontable/hyperformula/issues/626)
16+
317
## 0.5.0
418
**Release date: April 15, 2021**
519

docs/guide/clipboard-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ inside the clipboard: `isClipboardEmpty` .
107107
## Demo
108108

109109
<iframe
110-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/clipboard-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
110+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/clipboard-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
111111
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
112112
title="handsontable/hyperformula-demos: clipboard-operations"
113113
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/custom-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ console.log(A1Value);
199199
## Demo
200200

201201
<iframe
202-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/custom-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
202+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/custom-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
203203
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
204204
title="handsontable/hyperformula-demos: custom-functions"
205205
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/date-and-time-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ recognizes them as proper dates:
112112
## Demo
113113

114114
<iframe
115-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.4.x/date-time?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
115+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/0.6.x/date-time?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
116116
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
117117
title="handsontable/hyperformula-demos: date-time"
118118
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

0 commit comments

Comments
 (0)