Skip to content

Commit 720071f

Browse files
committed
v2.8.1
1 parent 0ea5b4e commit 720071f

39 files changed

Lines changed: 185 additions & 171 deletions

File tree

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,10 @@ boost_*.tar.gz
118118
.idea
119119
rust/perspective-viewer/target.vscode
120120
target.vscode
121-
.vscode/c_cpp_properties.json
122-
.vscode/settings.json
121+
.vscode/*
122+
!.vscode/extensions.json
123+
!.vscode/settings.default.json
124+
!.vscode/tasks.json
123125

124126
# docs
125127
website/translated_docs
@@ -197,7 +199,6 @@ rust/perspective-viewer/pkg
197199
.perspectiverc
198200
.emsdk
199201
vcpkg
200-
.vscode/c_cpp_properties.json
201202

202203
# jupyterlab test artifacts
203204
packages/perspective-jupyterlab/test/config/jupyter/lab
@@ -209,7 +210,6 @@ tools/perspective-build/lib
209210
docs/.docusaurus
210211
packages/perspective-esbuild-plugin/lib
211212
docs/static/blocks
212-
.vscode/c_cpp_properties.json
213213
test-results/
214214
playwright-report/
215215
playwright/.cache/

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
1+
# [v2.8.1](https://github.com/finos/perspective/releases/tag/v2.8.1)
2+
3+
_26 February 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.8.0...v2.8.1))
4+
5+
Fixes
6+
7+
- Fix `split_by` with `date`/`datetime` columns [#2545](https://github.com/finos/perspective/pull/2545)
8+
9+
Misc
10+
11+
- Add `clang-format`, `clang-tidy` and `clangd` support for C++ development [#2541](https://github.com/finos/perspective/pull/2541)
12+
- Add Docs Tests [#2502](https://github.com/finos/perspective/pull/2502)
13+
- Add workspaceFolder to cargo_target_dir [#2537](https://github.com/finos/perspective/pull/2537)
14+
115
# [v2.8.0](https://github.com/finos/perspective/releases/tag/v2.8.0)
216

3-
_16 February 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.7.2...v2.8.0))
17+
_16 February 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.7.1...v2.8.0))
418

519
Features
620

7-
- Add column edit highlight to `perspective-viewer-datagrid` [#2486](https://github.com/finos/perspective/pull/2486)
821
- New color selector component [#2536](https://github.com/finos/perspective/pull/2536)
922
- Render table in the shadow DOM for `@finos/perspective-viewer-datagrid` [#2482](https://github.com/finos/perspective/pull/2482)
23+
- Add column edit highlight to `perspective-viewer-datagrid` [#2486](https://github.com/finos/perspective/pull/2486)
1024

1125
Fixes
1226

cpp/perspective/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"author": "The Perspective Authors",
55
"license": "Apache-2.0",
6-
"version": "2.8.0",
6+
"version": "2.8.1",
77
"main": "./dist/esm/perspective.cpp.js",
88
"files": [
99
"dist/esm/**/*",

docs/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@finos/perspective-docs",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -16,13 +16,13 @@
1616
"dependencies": {
1717
"@docusaurus/core": "2.2.0",
1818
"@docusaurus/preset-classic": "2.2.0",
19-
"@finos/perspective": "^2.8.0",
20-
"@finos/perspective-viewer": "^2.8.0",
21-
"@finos/perspective-viewer-d3fc": "^2.8.0",
22-
"@finos/perspective-viewer-datagrid": "^2.8.0",
23-
"@finos/perspective-webpack-plugin": "^2.8.0",
19+
"@finos/perspective": "^2.8.1",
20+
"@finos/perspective-viewer": "^2.8.1",
21+
"@finos/perspective-viewer-d3fc": "^2.8.1",
22+
"@finos/perspective-viewer-datagrid": "^2.8.1",
23+
"@finos/perspective-webpack-plugin": "^2.8.1",
2424
"@mdx-js/react": "^1.6.22",
25-
"blocks": "^2.8.0",
25+
"blocks": "^2.8.1",
2626
"clsx": "^1.1.1",
2727
"prism-react-renderer": "^1.3.3",
2828
"react": "^17.0.2",

examples/blocks/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "blocks",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "A collection of simple client-side Perspective examples for `http://bl.ocks.org`.",
66
"scripts": {
77
"start": "mkdirp dist && node server.mjs"
@@ -10,12 +10,12 @@
1010
"keywords": [],
1111
"license": "Apache-2.0",
1212
"dependencies": {
13-
"@finos/perspective": "^2.8.0",
14-
"@finos/perspective-viewer": "^2.8.0",
15-
"@finos/perspective-viewer-d3fc": "^2.8.0",
16-
"@finos/perspective-viewer-datagrid": "^2.8.0",
17-
"@finos/perspective-viewer-openlayers": "^2.8.0",
18-
"@finos/perspective-workspace": "^2.8.0",
13+
"@finos/perspective": "^2.8.1",
14+
"@finos/perspective-viewer": "^2.8.1",
15+
"@finos/perspective-viewer-d3fc": "^2.8.1",
16+
"@finos/perspective-viewer-datagrid": "^2.8.1",
17+
"@finos/perspective-viewer-openlayers": "^2.8.1",
18+
"@finos/perspective-workspace": "^2.8.1",
1919
"superstore-arrow": "3.0.0"
2020
},
2121
"devDependencies": {

examples/esbuild-example/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esbuild-example",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "An esbuild example app built using `@finos/perspective-viewer`.",
66
"scripts": {
77
"build": "node build.js",
@@ -10,15 +10,15 @@
1010
"keywords": [],
1111
"license": "Apache-2.0",
1212
"dependencies": {
13-
"@finos/perspective": "^2.8.0",
14-
"@finos/perspective-viewer": "^2.8.0",
15-
"@finos/perspective-viewer-d3fc": "^2.8.0",
16-
"@finos/perspective-viewer-datagrid": "^2.8.0",
17-
"@finos/perspective-viewer-openlayers": "^2.8.0",
13+
"@finos/perspective": "^2.8.1",
14+
"@finos/perspective-viewer": "^2.8.1",
15+
"@finos/perspective-viewer-d3fc": "^2.8.1",
16+
"@finos/perspective-viewer-datagrid": "^2.8.1",
17+
"@finos/perspective-viewer-openlayers": "^2.8.1",
1818
"superstore-arrow": "^3.0.0"
1919
},
2020
"devDependencies": {
21-
"@finos/perspective-esbuild-plugin": "^2.8.0",
21+
"@finos/perspective-esbuild-plugin": "^2.8.1",
2222
"esbuild": "^0.14.54",
2323
"http-server": "^14.1.1"
2424
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "esbuild-remote",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "An example of 2 Perspectives, one client and one server, streaming via Apache Arrow.",
66
"scripts": {
77
"start": "node build.js && node server/index.mjs"
88
},
99
"keywords": [],
1010
"license": "Apache-2.0",
1111
"dependencies": {
12-
"@finos/perspective": "^2.8.0",
13-
"@finos/perspective-viewer": "^2.8.0",
14-
"@finos/perspective-viewer-d3fc": "^2.8.0",
15-
"@finos/perspective-viewer-datagrid": "^2.8.0",
12+
"@finos/perspective": "^2.8.1",
13+
"@finos/perspective-viewer": "^2.8.1",
14+
"@finos/perspective-viewer-d3fc": "^2.8.1",
15+
"@finos/perspective-viewer-datagrid": "^2.8.1",
1616
"express": "^4.17.1",
1717
"express-ws": "^5.0.2"
1818
},
1919
"devDependencies": {
20-
"@finos/perspective-esbuild-plugin": "^2.8.0",
20+
"@finos/perspective-esbuild-plugin": "^2.8.1",
2121
"esbuild": "^0.14.54"
2222
}
2323
}

examples/git-history/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "git-history",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "An example of Perspective's own GIT history rendered in Perspective.",
66
"scripts": {
77
"start": "node server.js"
88
},
99
"keywords": [],
1010
"license": "Apache-2.0",
1111
"dependencies": {
12-
"@finos/perspective": "^2.8.0",
13-
"@finos/perspective-viewer": "^2.8.0",
14-
"@finos/perspective-viewer-d3fc": "^2.8.0",
15-
"@finos/perspective-viewer-datagrid": "^2.8.0"
12+
"@finos/perspective": "^2.8.1",
13+
"@finos/perspective-viewer": "^2.8.1",
14+
"@finos/perspective-viewer-d3fc": "^2.8.1",
15+
"@finos/perspective-viewer-datagrid": "^2.8.1"
1616
}
1717
}

examples/promo/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "promo",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "An puppeteer-guided demo of Perspective's functionality, as seen on Github.",
66
"scripts": {
77
"dev": "webpack-dev-server --open",
@@ -13,14 +13,14 @@
1313
"keywords": [],
1414
"license": "Apache-2.0",
1515
"dependencies": {
16-
"@finos/perspective": "^2.8.0",
17-
"@finos/perspective-viewer": "^2.8.0",
18-
"@finos/perspective-viewer-d3fc": "^2.8.0",
19-
"@finos/perspective-viewer-datagrid": "^2.8.0",
20-
"@finos/perspective-workspace": "^2.8.0"
16+
"@finos/perspective": "^2.8.1",
17+
"@finos/perspective-viewer": "^2.8.1",
18+
"@finos/perspective-viewer-d3fc": "^2.8.1",
19+
"@finos/perspective-viewer-datagrid": "^2.8.1",
20+
"@finos/perspective-workspace": "^2.8.1"
2121
},
2222
"devDependencies": {
23-
"@finos/perspective-webpack-plugin": "^2.8.0",
23+
"@finos/perspective-webpack-plugin": "^2.8.1",
2424
"http-server": "^14.1.1",
2525
"npm-run-all": "^4.1.3",
2626
"rimraf": "^2.5.2"

examples/python-aiohttp/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
22
"name": "python-aiohttp",
33
"private": true,
4-
"version": "2.8.0",
4+
"version": "2.8.1",
55
"description": "An example of editing a `perspective-python` server from the browser.",
66
"scripts": {
77
"start": "PYTHONPATH=../../python/perspective python3 server.py"
88
},
99
"keywords": [],
1010
"license": "Apache-2.0",
1111
"dependencies": {
12-
"@finos/perspective": "^2.8.0",
13-
"@finos/perspective-viewer": "^2.8.0",
14-
"@finos/perspective-viewer-d3fc": "^2.8.0",
15-
"@finos/perspective-viewer-datagrid": "^2.8.0",
16-
"@finos/perspective-workspace": "^2.8.0",
12+
"@finos/perspective": "^2.8.1",
13+
"@finos/perspective-viewer": "^2.8.1",
14+
"@finos/perspective-viewer-d3fc": "^2.8.1",
15+
"@finos/perspective-viewer-datagrid": "^2.8.1",
16+
"@finos/perspective-workspace": "^2.8.1",
1717
"superstore-arrow": "^3.0.0"
1818
},
1919
"devDependencies": {
20-
"@finos/perspective-webpack-plugin": "^2.8.0",
20+
"@finos/perspective-webpack-plugin": "^2.8.1",
2121
"npm-run-all": "^4.1.3",
2222
"rimraf": "^2.5.2"
2323
}

0 commit comments

Comments
 (0)