Skip to content

Commit 08448cc

Browse files
committed
v2.10.1
Signed-off-by: Andrew Stein <[email protected]>
1 parent d299ee2 commit 08448cc

File tree

40 files changed

+94
-63
lines changed

40 files changed

+94
-63
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ jobs:
10961096
with:
10971097
name: perspective-python-sdist
10981098
path: python/perspective/dist/*.tar.gz
1099-
if: ${{ matrix.os == 'macos-11' }}
1099+
if: ${{ matrix.os == 'macos-11' && matrix.python-version == 3.8 }}
11001100

11011101
build_pyodide:
11021102
strategy:
@@ -1661,7 +1661,7 @@ jobs:
16611661
################
16621662
# Python
16631663
- name: Install python dependencies
1664-
run: pnpm rin _requires_python
1664+
run: pnpm run _requires_python
16651665

16661666
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
16671667
#~~~~~~~~~ Build Pipelines ~~~~~~~~~#
@@ -1725,7 +1725,20 @@ jobs:
17251725
steps:
17261726
- uses: actions/checkout@v2
17271727

1728-
# TODO: `actions/upload-artifact` succedds with a warning when the
1728+
- name: Install pnpm
1729+
uses: pnpm/action-setup@v3
1730+
with:
1731+
version: 9
1732+
1733+
################
1734+
# JS
1735+
- name: Install js dependencies
1736+
run: pnpm install
1737+
env:
1738+
PSP_SKIP_EMSDK_INSTALL:
1739+
1
1740+
1741+
# TODO: `actions/upload-artifact` succedds with a warning when the
17291742
# path is empty, but `actions/downlaod-artifact` fails, and 3 JS
17301743
# packages have no `dist`.
17311744

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# [v2.10.1](https://github.com/finos/perspective/releases/tag/v2.10.1)
2+
3+
_20 May 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.10.0...v2.10.1))
4+
5+
Fixes
6+
7+
- Fix `delete()` Python async call not resolving [#2610](https://github.com/finos/perspective/pull/2610)
8+
- Fix intermittent `to_arrow()` error in Python [#2608](https://github.com/finos/perspective/pull/2608)
9+
- Fix compatibility with other MSVC versions by explicitly converting to string [#2570](https://github.com/finos/perspective/pull/2570)
10+
11+
Misc
12+
13+
- Developer clean-up [#2623](https://github.com/finos/perspective/pull/2623)
14+
- Update contributing documentation for DCO [#2595](https://github.com/finos/perspective/pull/2595)
15+
- Update to pyodide 0.25.1 for pyodide/pyodide#4655 [#2596](https://github.com/finos/perspective/pull/2596)
16+
117
# [v2.10.0](https://github.com/finos/perspective/releases/tag/v2.10.0)
218

319
_25 March 2024_ ([Full changelog](https://github.com/finos/perspective/compare/v2.9.0...v2.10.0))

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.10.0",
6+
"version": "2.10.1",
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": "2.10.0",
3+
"version": "2.10.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

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": "2.10.0",
4+
"version": "2.10.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"

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": "2.10.0",
4+
"version": "2.10.1",
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": "2.10.0",
4+
"version": "2.10.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"

examples/git-history/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "git-history",
33
"private": true,
4-
"version": "2.10.0",
4+
"version": "2.10.1",
55
"description": "An example of Perspective's own GIT history rendered in Perspective.",
66
"scripts": {
77
"start": "node server.js"

examples/promo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "promo",
33
"private": true,
4-
"version": "2.10.0",
4+
"version": "2.10.1",
55
"description": "An puppeteer-guided demo of Perspective's functionality, as seen on Github.",
66
"scripts": {
77
"dev": "webpack-dev-server --open",

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": "2.10.0",
4+
"version": "2.10.1",
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)