Skip to content

Commit dc1653e

Browse files
committed
v3.7.0
Signed-off-by: Andrew Stein <[email protected]>
1 parent 33636b0 commit dc1653e

File tree

42 files changed

+101
-57
lines changed

Some content is hidden

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

42 files changed

+101
-57
lines changed

CHANGELOG.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# [v3.7.0](https://github.com/finos/perspective/releases/tag/v3.7.0)
2+
3+
_26 June 2025_ ([Full changelog](https://github.com/finos/perspective/compare/v3.6.1...v3.7.0))
4+
5+
**Breaking**
6+
7+
- New error UX [#3003](https://github.com/finos/perspective/pull/3003)
8+
- New conflation model [#2991](https://github.com/finos/perspective/pull/2991)
9+
- `@finos/perspective-react` [#2893](https://github.com/finos/perspective/pull/2893)
10+
11+
Features
12+
13+
- Fix datagrid `abs` sorting on header click [#3014](https://github.com/finos/perspective/pull/3014)
14+
- Add some native HTML attributes to `perspective-react` [#3010](https://github.com/finos/perspective/pull/3010)
15+
- Add `max by` and `min by` aggregates [#2998](https://github.com/finos/perspective/pull/2998)
16+
17+
Fixes
18+
19+
- Fix UI bugs from large dataset example [#3022](https://github.com/finos/perspective/pull/3022)
20+
- Fix `max_by`, `min_by`, `max`, `min` aggregates with empty filter sets [#3016](https://github.com/finos/perspective/pull/3016)
21+
- Fix `to_arrow` thread safety [#3006](https://github.com/finos/perspective/pull/3006)
22+
- Fix `perspective_viewer::restore` calls blurring [#3005](https://github.com/finos/perspective/pull/3005)
23+
- Fix `ProxySession` message routing bug with Jupyter widget [#2989](https://github.com/finos/perspective/pull/2989)
24+
25+
Misc
26+
27+
- Fix typo in docs for replace_all [#3021](https://github.com/finos/perspective/pull/3021)
28+
- Fix perspective-viewer-datagrid draw error when group_by+split_by+filter are empty [#3015](https://github.com/finos/perspective/pull/3015)
29+
- Fix examples, docs and imports [#3013](https://github.com/finos/perspective/pull/3013)
30+
- Fix Windows CI [#3004](https://github.com/finos/perspective/pull/3004)
31+
- Add `aggregate_depth` datagrid style config [#3002](https://github.com/finos/perspective/pull/3002)
32+
- `&lt;perspective-workspace&gt;` toolbar fix [#3000](https://github.com/finos/perspective/pull/3000)
33+
- Nightly versions [#2990](https://github.com/finos/perspective/pull/2990)
34+
- Nightly artifacts [#2987](https://github.com/finos/perspective/pull/2987)
35+
136
# [v3.6.1](https://github.com/finos/perspective/releases/tag/v3.6.1)
237

338
_30 April 2025_ ([Full changelog](https://github.com/finos/perspective/compare/v3.6.0...v3.6.1))
@@ -18,10 +53,13 @@ _24 April 2025_ ([Full changelog](https://github.com/finos/perspective/compare/v
1853

1954
_11 April 2025_ ([Full changelog](https://github.com/finos/perspective/compare/v3.5.0...v3.5.1))
2055

56+
Features
57+
58+
- AsyncTable support in widget [#2974](https://github.com/finos/perspective/pull/2974)
59+
2160
Misc
2261

2362
- Add vscode settings to enable prettier [#2959](https://github.com/finos/perspective/pull/2959)
24-
- AsyncTable support in widget [#2974](https://github.com/finos/perspective/pull/2974)
2563

2664
# [v3.5.0](https://github.com/finos/perspective/releases/tag/v3.5.0)
2765

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "3.6.1",
6+
"version": "3.7.0",
77
"main": "./dist/esm/perspective.cpp.js",
88
"files": [
99
"dist/esm/**/*",

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@finos/perspective-docs",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"private": true,
55
"scripts": {
66
"build": "node build.js && docusaurus build",

docs/template.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
<html>
33
<head>
44
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
5-
<script type="module" src="/node_modules/@finos/perspective-viewer/dist/cdn/perspective-viewer.js"></script>
6-
<script type="module" src="/node_modules/@finos/perspective-viewer-datagrid/dist/cdn/perspective-viewer-datagrid.js"></script>
7-
<script type="module" src="/node_modules/@finos/perspective-viewer-d3fc/dist/cdn/perspective-viewer-d3fc.js"></script>
85
<link rel="stylesheet" href="/node_modules/@finos/perspective-viewer/dist/css/pro.css" />
96
<style>
107
perspective-viewer {
@@ -24,6 +21,9 @@
2421
<body>
2522
<perspective-viewer> </perspective-viewer>
2623
<script type="module">
24+
import "/node_modules/@finos/perspective-viewer/dist/cdn/perspective-viewer.js";
25+
import "/node_modules/@finos/perspective-viewer-datagrid/dist/cdn/perspective-viewer-datagrid.js";
26+
import "/node_modules/@finos/perspective-viewer-d3fc/dist/cdn/perspective-viewer-d3fc.js";
2727
import perspective from "/node_modules/@finos/perspective/dist/cdn/perspective.js";
2828
const WORKER = await perspective.worker();
2929
async function on_load() {

examples/blocks/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "blocks",
33
"private": true,
4-
"version": "3.6.1",
4+
"version": "3.7.0",
55
"description": "A collection of simple client-side Perspective examples for `http://bl.ocks.org`.",
66
"scripts": {
77
"start": "mkdirp dist && node --experimental-wasm-memory64 --experimental-modules server.mjs",

examples/esbuild-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esbuild-example",
33
"private": true,
4-
"version": "3.6.1",
4+
"version": "3.7.0",
55
"description": "An esbuild example app built using `@finos/perspective-viewer`.",
66
"scripts": {
77
"build": "node build.js",

examples/esbuild-remote/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "esbuild-remote",
33
"private": true,
4-
"version": "3.6.1",
4+
"version": "3.7.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"

examples/python-aiohttp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python-aiohttp",
33
"private": true,
4-
"version": "3.6.1",
4+
"version": "3.7.0",
55
"description": "An example of editing a `perspective-python` server from the browser.",
66
"scripts": {
77
"start": "PYTHONPATH=../../python/perspective python3 server.py"

examples/python-starlette/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "python-starlette",
33
"private": true,
4-
"version": "3.6.1",
4+
"version": "3.7.0",
55
"description": "An example of editing a `perspective-python` server from the browser.",
66
"scripts": {
77
"start": "PYTHONPATH=../../python/perspective python3 server.py"

0 commit comments

Comments
 (0)