Skip to content

Commit cbc9c50

Browse files
committed
v3.3.0
Signed-off-by: Andrew Stein <steinlink@gmail.com>
1 parent 1cdb085 commit cbc9c50

File tree

46 files changed

+112
-60
lines changed

Some content is hidden

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

46 files changed

+112
-60
lines changed

.cargo/config.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ rustflags = ["-C", "target-feature=+crt-static", "--cfg=web_sys_unstable_apis"]
2121
[future-incompat-report]
2222
frequency = 'never'
2323

24+
# TODO this is required to synth public releases on GH Actions
25+
[patch.crates-io]
26+
perspective-client = { path = "rust/perspective-client" }
27+
perspective-server = { path = "rust/perspective-server" }
28+
perspective-js = { path = "rust/perspective-js" }
29+
perspective-python = { path = "rust/perspective-python" }
30+
perspective-viewer = { path = "rust/perspective-viewer" }
31+
perspective = { path = "rust/perspective" }
32+
2433
[unstable]
2534
bindeps = true
2635
package-workspace = true

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,5 @@ rust/perspective/src/ts/ts-rs
5757
rust/target*
5858
Vagrantfile
5959
vcpkg
60-
venv/
60+
venv/
61+
rust/perspective-python/perspective_python-*.data

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [v3.3.0](https://github.com/finos/perspective/releases/tag/v3.3.0)
2+
3+
_14 January 2025_ ([Full changelog](https://github.com/finos/perspective/compare/v3.2.1...v3.3.0))
4+
5+
**Breaking**
6+
7+
- Unbundled JavaScript builds [#2890](https://github.com/finos/perspective/pull/2890)
8+
9+
Misc
10+
11+
- Add build support for `Memory64` [#2888](https://github.com/finos/perspective/pull/2888)
12+
113
# [v3.2.1](https://github.com/finos/perspective/releases/tag/v3.2.1)
214

315
_23 December 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v3.2.0...v3.2.1))

Cargo.lock

Lines changed: 7 additions & 7 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.2.1",
6+
"version": "3.3.0",
77
"main": "./dist/esm/perspective.cpp.js",
88
"files": [
99
"dist/esm/**/*",

docs/md/how_to/javascript/importing.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,18 @@ await Promise.all([
3737
]);
3838
```
3939

40+
You'll also need to target `esnext` in your `vite.config.js` in order to run the
41+
`build` step:
42+
43+
```javascript
44+
import { defineConfig } from "vite";
45+
export default defineConfig({
46+
build: {
47+
target: "esnext",
48+
},
49+
});
50+
```
51+
4052
### ESBuild
4153

4254
```javascript

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.2.1",
3+
"version": "3.3.0",
44
"private": true,
55
"scripts": {
66
"build": "node build.js && docusaurus build",

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.2.1",
4+
"version": "3.3.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/blocks/src/superstore/index.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ index.html: 48 {
3939
},
4040
"viewers": {
4141
"PERSPECTIVE_GENERATED_ID_0": {
42-
"version": "3.2.1",
42+
"version": "3.3.0",
4343
"plugin": "Datagrid",
4444
"plugin_config": {
4545
"columns": {},
@@ -68,7 +68,7 @@ index.html: 48 {
6868
"settings": false
6969
},
7070
"PERSPECTIVE_GENERATED_ID_1": {
71-
"version": "3.2.1",
71+
"version": "3.3.0",
7272
"plugin": "Datagrid",
7373
"plugin_config": {
7474
"columns": {},
@@ -110,7 +110,7 @@ index.html: 48 {
110110
"settings": false
111111
},
112112
"PERSPECTIVE_GENERATED_ID_3": {
113-
"version": "3.2.1",
113+
"version": "3.3.0",
114114
"plugin": "Datagrid",
115115
"plugin_config": {
116116
"columns": {},
@@ -139,7 +139,7 @@ index.html: 48 {
139139
"settings": false
140140
},
141141
"PERSPECTIVE_GENERATED_ID_2": {
142-
"version": "3.2.1",
142+
"version": "3.3.0",
143143
"plugin": "Treemap",
144144
"plugin_config": {},
145145
"columns_config": {},

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.2.1",
4+
"version": "3.3.0",
55
"description": "An esbuild example app built using `@finos/perspective-viewer`.",
66
"scripts": {
77
"build": "node build.js",

0 commit comments

Comments
 (0)