Skip to content

Commit 3bba225

Browse files
committed
v2.6.0
1 parent 2134fc0 commit 3bba225

37 files changed

Lines changed: 203 additions & 162 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# [v2.6.0](https://github.com/finos/perspective/releases/tag/v2.6.0)
2+
3+
_20 October 2023_ ([Full changelog](https://github.com/finos/perspective/compare/v2.5.2...v2.6.0))
4+
5+
Features
6+
7+
- X/Y scatter multi-chart [#2395](https://github.com/finos/perspective/pull/2395)
8+
- Symbols column in `X/Y Scatter` plot [#2394](https://github.com/finos/perspective/pull/2394)
9+
- New themes `Gruvbox` and `Dracula` + UI performance improvements [#2393](https://github.com/finos/perspective/pull/2393)
10+
- Add `index()`, `col()`, and `vlookup()` to ExprTk [#2374](https://github.com/finos/perspective/pull/2374)
11+
- Datagrid rows restyle [#2383](https://github.com/finos/perspective/pull/2383)
12+
13+
Fixes
14+
15+
- Column selector style updates [#2385](https://github.com/finos/perspective/pull/2385)
16+
- fix gradient values [#2384](https://github.com/finos/perspective/pull/2384)
17+
118
# [v2.5.2](https://github.com/finos/perspective/releases/tag/v2.5.2)
219

320
_8 October 2023_ ([Full changelog](https://github.com/finos/perspective/compare/v2.5.1...v2.5.2))
@@ -12,8 +29,8 @@ Fixes
1229

1330
Misc
1431

15-
- Localize NYPD, Magic and Olympics examples [#2375](https://github.com/finos/perspective/pull/2375)
1632
- Fix tests [#2380](https://github.com/finos/perspective/pull/2380)
33+
- Localize NYPD, Magic and Olympics examples [#2375](https://github.com/finos/perspective/pull/2375)
1734

1835
# [v2.5.1](https://github.com/finos/perspective/releases/tag/v2.5.1)
1936

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.5.2",
6+
"version": "2.6.0",
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.5.2",
3+
"version": "2.6.0",
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.5.2",
20-
"@finos/perspective-viewer": "^2.5.2",
21-
"@finos/perspective-viewer-d3fc": "^2.5.2",
22-
"@finos/perspective-viewer-datagrid": "^2.5.2",
23-
"@finos/perspective-webpack-plugin": "^2.5.2",
19+
"@finos/perspective": "^2.6.0",
20+
"@finos/perspective-viewer": "^2.6.0",
21+
"@finos/perspective-viewer-d3fc": "^2.6.0",
22+
"@finos/perspective-viewer-datagrid": "^2.6.0",
23+
"@finos/perspective-webpack-plugin": "^2.6.0",
2424
"@mdx-js/react": "^1.6.22",
25-
"blocks": "^2.5.2",
25+
"blocks": "^2.6.0",
2626
"clsx": "^1.1.1",
2727
"prism-react-renderer": "^1.3.3",
2828
"react": "^17.0.2",

docs/src/components/Demo/layouts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const LAYOUTS = {
7171
plugin: "X/Y Scatter",
7272
group_by: ["name"],
7373
split_by: [],
74-
columns: ["bid", "ask", "chg", "vol", "name"],
74+
columns: ["bid", "ask", "chg", "vol", null, "name"],
7575
aggregates: { bid: "avg", ask: "avg", vol: "avg", name: "dominant" },
7676
sort: [],
7777
},

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.5.2",
4+
"version": "2.6.0",
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.5.2",
14-
"@finos/perspective-viewer": "^2.5.2",
15-
"@finos/perspective-viewer-d3fc": "^2.5.2",
16-
"@finos/perspective-viewer-datagrid": "^2.5.2",
17-
"@finos/perspective-viewer-openlayers": "^2.5.2",
18-
"@finos/perspective-workspace": "^2.5.2",
13+
"@finos/perspective": "^2.6.0",
14+
"@finos/perspective-viewer": "^2.6.0",
15+
"@finos/perspective-viewer-d3fc": "^2.6.0",
16+
"@finos/perspective-viewer-datagrid": "^2.6.0",
17+
"@finos/perspective-viewer-openlayers": "^2.6.0",
18+
"@finos/perspective-workspace": "^2.6.0",
1919
"superstore-arrow": "3.0.0"
2020
}
2121
}

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.5.2",
4+
"version": "2.6.0",
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.5.2",
14-
"@finos/perspective-viewer": "^2.5.2",
15-
"@finos/perspective-viewer-d3fc": "^2.5.2",
16-
"@finos/perspective-viewer-datagrid": "^2.5.2",
17-
"@finos/perspective-viewer-openlayers": "^2.5.2",
13+
"@finos/perspective": "^2.6.0",
14+
"@finos/perspective-viewer": "^2.6.0",
15+
"@finos/perspective-viewer-d3fc": "^2.6.0",
16+
"@finos/perspective-viewer-datagrid": "^2.6.0",
17+
"@finos/perspective-viewer-openlayers": "^2.6.0",
1818
"superstore-arrow": "^3.0.0"
1919
},
2020
"devDependencies": {
21-
"@finos/perspective-esbuild-plugin": "^2.5.2",
21+
"@finos/perspective-esbuild-plugin": "^2.6.0",
2222
"esbuild": "^0.14.54",
2323
"http-server": "^0.11.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.5.2",
4+
"version": "2.6.0",
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.5.2",
13-
"@finos/perspective-viewer": "^2.5.2",
14-
"@finos/perspective-viewer-d3fc": "^2.5.2",
15-
"@finos/perspective-viewer-datagrid": "^2.5.2",
12+
"@finos/perspective": "^2.6.0",
13+
"@finos/perspective-viewer": "^2.6.0",
14+
"@finos/perspective-viewer-d3fc": "^2.6.0",
15+
"@finos/perspective-viewer-datagrid": "^2.6.0",
1616
"express": "^4.17.1",
1717
"express-ws": "^5.0.2"
1818
},
1919
"devDependencies": {
20-
"@finos/perspective-esbuild-plugin": "^2.5.2",
20+
"@finos/perspective-esbuild-plugin": "^2.6.0",
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.5.2",
4+
"version": "2.6.0",
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.5.2",
13-
"@finos/perspective-viewer": "^2.5.2",
14-
"@finos/perspective-viewer-d3fc": "^2.5.2",
15-
"@finos/perspective-viewer-datagrid": "^2.5.2"
12+
"@finos/perspective": "^2.6.0",
13+
"@finos/perspective-viewer": "^2.6.0",
14+
"@finos/perspective-viewer-d3fc": "^2.6.0",
15+
"@finos/perspective-viewer-datagrid": "^2.6.0"
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.5.2",
4+
"version": "2.6.0",
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.5.2",
17-
"@finos/perspective-viewer": "^2.5.2",
18-
"@finos/perspective-viewer-d3fc": "^2.5.2",
19-
"@finos/perspective-viewer-datagrid": "^2.5.2",
20-
"@finos/perspective-workspace": "^2.5.2"
16+
"@finos/perspective": "^2.6.0",
17+
"@finos/perspective-viewer": "^2.6.0",
18+
"@finos/perspective-viewer-d3fc": "^2.6.0",
19+
"@finos/perspective-viewer-datagrid": "^2.6.0",
20+
"@finos/perspective-workspace": "^2.6.0"
2121
},
2222
"devDependencies": {
23-
"@finos/perspective-webpack-plugin": "^2.5.2",
23+
"@finos/perspective-webpack-plugin": "^2.6.0",
2424
"http-server": "^0.11.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.5.2",
4+
"version": "2.6.0",
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.5.2",
13-
"@finos/perspective-viewer": "^2.5.2",
14-
"@finos/perspective-viewer-d3fc": "^2.5.2",
15-
"@finos/perspective-viewer-datagrid": "^2.5.2",
16-
"@finos/perspective-workspace": "^2.5.2",
12+
"@finos/perspective": "^2.6.0",
13+
"@finos/perspective-viewer": "^2.6.0",
14+
"@finos/perspective-viewer-d3fc": "^2.6.0",
15+
"@finos/perspective-viewer-datagrid": "^2.6.0",
16+
"@finos/perspective-workspace": "^2.6.0",
1717
"superstore-arrow": "^3.0.0"
1818
},
1919
"devDependencies": {
20-
"@finos/perspective-webpack-plugin": "^2.5.2",
20+
"@finos/perspective-webpack-plugin": "^2.6.0",
2121
"npm-run-all": "^4.1.3",
2222
"rimraf": "^2.5.2"
2323
}

0 commit comments

Comments
 (0)