Skip to content

Commit f63cd1a

Browse files
committed
Publish 3.0.4
SHA256 hashes: pyviz-jupyterlab_pyviz-3.0.4.tgz: b222668ddb6b276575a80292c7fc6674d44e66b7b38ac2cf0e7ab044c5adbe60 pyviz_comms-3.0.4-py3-none-any.whl: a40d17db26ec13cf975809633804e712bd24b473e77388c193c44043f85d0b25 pyviz_comms-3.0.4.tar.gz: d70e17555f7262c4884a6b7bc9ca19cb816507a032a334d9cb411b4546caff4c
1 parent 2000a5e commit f63cd1a

File tree

3 files changed

+142
-127
lines changed

3 files changed

+142
-127
lines changed

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 3.0.4
6+
7+
([Full Changelog](https://github.com/holoviz/pyviz_comms/compare/v3.0.3...2000a5eda8720cf0088ccc496ca0a0362cd8bee0))
8+
9+
### Merged PRs
10+
11+
- Ensure Widget Manager can be defined asynchronously [#130](https://github.com/holoviz/pyviz_comms/pull/130) ([@philippjfr](https://github.com/philippjfr))
12+
- Add environment variable at startup [#123](https://github.com/holoviz/pyviz_comms/pull/123) ([@hoxbro](https://github.com/hoxbro))
13+
14+
### Contributors to this release
15+
16+
([GitHub contributors page for this release](https://github.com/holoviz/pyviz_comms/graphs/contributors?from=2024-08-01&to=2025-01-14&type=c))
17+
18+
[@hoxbro](https://github.com/search?q=repo%3Aholoviz%2Fpyviz_comms+involves%3Ahoxbro+updated%3A2024-08-01..2025-01-14&type=Issues) | [@philippjfr](https://github.com/search?q=repo%3Aholoviz%2Fpyviz_comms+involves%3Aphilippjfr+updated%3A2024-08-01..2025-01-14&type=Issues)
19+
20+
<!-- <END NEW CHANGELOG ENTRY> -->
21+
522
## 3.0.3
623

724
([Full Changelog](https://github.com/holoviz/pyviz_comms/compare/v3.0.2...0149ff082df9cf0f600cf14563c45f83c1894366))
@@ -17,8 +34,6 @@
1734

1835
[@krassowski](https://github.com/search?q=repo%3Aholoviz%2Fpyviz_comms+involves%3Akrassowski+updated%3A2024-03-22..2024-08-01&type=Issues)
1936

20-
<!-- <END NEW CHANGELOG ENTRY> -->
21-
2237
## 3.0.2
2338

2439
([Full Changelog](https://github.com/holoviz/pyviz_comms/compare/v3.0.1...ec9873fba879d232ea7072d0bead9c6f48686296))

package.json

Lines changed: 124 additions & 124 deletions
Original file line numberDiff line numberDiff line change
@@ -1,127 +1,127 @@
11
{
2-
"name": "@pyviz/jupyterlab_pyviz",
3-
"version": "3.0.3",
4-
"description": "A JupyterLab extension for rendering HoloViz content.",
5-
"keywords": [
6-
"jupyter",
7-
"jupyterlab",
8-
"jupyterlab-extension"
9-
],
10-
"homepage": "https://github.com/holoviz/pyviz_comms",
11-
"bugs": {
12-
"url": "https://github.com/holoviz/pyviz_comms/issues"
13-
},
14-
"license": "BSD-3-Clause",
15-
"author": {
16-
"name": "Philipp Rudiger"
17-
},
18-
"files": [
19-
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
20-
"style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
21-
"schema/*.json",
22-
"style/index.js"
23-
],
24-
"main": "lib/index.js",
25-
"types": "lib/index.d.ts",
26-
"style": "style/index.css",
27-
"repository": {
28-
"type": "git",
29-
"url": "https://github.com/holoviz/pyviz_comms.git"
30-
},
31-
"scripts": {
32-
"build": "jlpm build:lib && jlpm build:labextension:dev",
33-
"build:labextension": "jupyter labextension build .",
34-
"build:labextension:dev": "jupyter labextension build --development True .",
35-
"build:lib": "tsc --sourceMap",
36-
"build:lib:prod": "tsc",
37-
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
38-
"clean": "jlpm clean:lib",
39-
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
40-
"clean:labextension": "rimraf pyviz_comms/labextension pyviz_comms/_version.py",
41-
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42-
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43-
"eslint": "jlpm eslint:check --fix",
44-
"eslint:check": "eslint . --cache --ext .ts,.tsx",
45-
"install:extension": "jlpm build",
46-
"lint": "jlpm prettier && jlpm eslint",
47-
"lint:check": "jlpm prettier:check && jlpm eslint:check",
48-
"prettier": "jlpm prettier:base --write --list-different",
49-
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
50-
"prettier:check": "jlpm prettier:base --check",
51-
"stylelint": "jlpm stylelint:check --fix",
52-
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
53-
"watch": "run-p watch:src watch:labextension",
54-
"watch:labextension": "jupyter labextension watch .",
55-
"watch:src": "tsc -w --sourceMap"
56-
},
57-
"dependencies": {
58-
"@jupyterlab/application": "^4.0.3",
59-
"@jupyterlab/apputils": "^4.1.3",
60-
"@jupyterlab/coreutils": "^6.0.3",
61-
"@jupyterlab/docregistry": "^4.0.3",
62-
"@jupyterlab/fileeditor": "^4.0.3",
63-
"@jupyterlab/mainmenu": "^4.0.3",
64-
"@jupyterlab/notebook": "^4.0.3",
65-
"@jupyterlab/settingregistry": "^4.0.3",
66-
"@jupyterlab/ui-components": "^4.0.3",
67-
"@lumino/coreutils": "^2.1.1",
68-
"@lumino/signaling": "^2.1.1",
69-
"tippy.js": "^6"
70-
},
71-
"resolutions": {
72-
"@lumino/widgets": "^2.1.1",
73-
"react": "^17.0.1",
74-
"react-dom": "^17.0.1"
75-
},
76-
"peerDependencies": {
77-
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
78-
"@jupyter-widgets/jupyterlab-manager": "^5.0.4"
79-
},
80-
"devDependencies": {
81-
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
82-
"@jupyter-widgets/jupyterlab-manager": "^5.0.7",
83-
"@jupyterlab/builder": "^4.0.0",
84-
"@jupyterlab/testutils": "^3.0.0",
85-
"@types/json-schema": "^7.0.11",
86-
"@types/node": "^14.14.16",
87-
"@types/react": "^18.0.26",
88-
"@types/react-dom": "^17.0.0",
89-
"@typescript-eslint/eslint-plugin": "^5.55.0",
90-
"@typescript-eslint/parser": "^5.55.0",
91-
"css-loader": "^6.7.1",
92-
"eslint": "^8.36.0",
93-
"eslint-config-prettier": "^8.8.0",
94-
"eslint-plugin-prettier": "^5.0.0",
95-
"npm-run-all": "^4.1.5",
96-
"prettier": "^3.0.0",
97-
"rimraf": "^4.4.1",
98-
"source-map-loader": "^1.0.2",
99-
"style-loader": "^3.3.1",
100-
"stylelint": "^15.10.1",
101-
"stylelint-config-recommended": "^13.0.0",
102-
"stylelint-config-standard": "^34.0.0",
103-
"stylelint-prettier": "^4.0.0",
104-
"typescript": "~5.0.2",
105-
"yjs": "^13.5.40"
106-
},
107-
"sideEffects": [
108-
"style/*.css",
109-
"style/index.js"
110-
],
111-
"styleModule": "style/index.js",
112-
"jupyterlab": {
113-
"extension": true,
114-
"outputDir": "pyviz_comms/labextension",
115-
"schemaDir": "schema",
116-
"sharedPackages": {
117-
"@jupyter-widgets/jupyterlab-manager": {
118-
"bundled": false,
119-
"singleton": true
120-
},
121-
"@jupyter-widgets/base": {
122-
"bundled": false,
123-
"singleton": true
124-
}
2+
"name": "@pyviz/jupyterlab_pyviz",
3+
"version": "3.0.4",
4+
"description": "A JupyterLab extension for rendering HoloViz content.",
5+
"keywords": [
6+
"jupyter",
7+
"jupyterlab",
8+
"jupyterlab-extension"
9+
],
10+
"homepage": "https://github.com/holoviz/pyviz_comms",
11+
"bugs": {
12+
"url": "https://github.com/holoviz/pyviz_comms/issues"
13+
},
14+
"license": "BSD-3-Clause",
15+
"author": {
16+
"name": "Philipp Rudiger"
17+
},
18+
"files": [
19+
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
20+
"style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
21+
"schema/*.json",
22+
"style/index.js"
23+
],
24+
"main": "lib/index.js",
25+
"types": "lib/index.d.ts",
26+
"style": "style/index.css",
27+
"repository": {
28+
"type": "git",
29+
"url": "https://github.com/holoviz/pyviz_comms.git"
30+
},
31+
"scripts": {
32+
"build": "jlpm build:lib && jlpm build:labextension:dev",
33+
"build:labextension": "jupyter labextension build .",
34+
"build:labextension:dev": "jupyter labextension build --development True .",
35+
"build:lib": "tsc --sourceMap",
36+
"build:lib:prod": "tsc",
37+
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
38+
"clean": "jlpm clean:lib",
39+
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
40+
"clean:labextension": "rimraf pyviz_comms/labextension pyviz_comms/_version.py",
41+
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
42+
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
43+
"eslint": "jlpm eslint:check --fix",
44+
"eslint:check": "eslint . --cache --ext .ts,.tsx",
45+
"install:extension": "jlpm build",
46+
"lint": "jlpm prettier && jlpm eslint",
47+
"lint:check": "jlpm prettier:check && jlpm eslint:check",
48+
"prettier": "jlpm prettier:base --write --list-different",
49+
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
50+
"prettier:check": "jlpm prettier:base --check",
51+
"stylelint": "jlpm stylelint:check --fix",
52+
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
53+
"watch": "run-p watch:src watch:labextension",
54+
"watch:labextension": "jupyter labextension watch .",
55+
"watch:src": "tsc -w --sourceMap"
56+
},
57+
"dependencies": {
58+
"@jupyterlab/application": "^4.0.3",
59+
"@jupyterlab/apputils": "^4.1.3",
60+
"@jupyterlab/coreutils": "^6.0.3",
61+
"@jupyterlab/docregistry": "^4.0.3",
62+
"@jupyterlab/fileeditor": "^4.0.3",
63+
"@jupyterlab/mainmenu": "^4.0.3",
64+
"@jupyterlab/notebook": "^4.0.3",
65+
"@jupyterlab/settingregistry": "^4.0.3",
66+
"@jupyterlab/ui-components": "^4.0.3",
67+
"@lumino/coreutils": "^2.1.1",
68+
"@lumino/signaling": "^2.1.1",
69+
"tippy.js": "^6"
70+
},
71+
"resolutions": {
72+
"@lumino/widgets": "^2.1.1",
73+
"react": "^17.0.1",
74+
"react-dom": "^17.0.1"
75+
},
76+
"peerDependencies": {
77+
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
78+
"@jupyter-widgets/jupyterlab-manager": "^5.0.4"
79+
},
80+
"devDependencies": {
81+
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
82+
"@jupyter-widgets/jupyterlab-manager": "^5.0.7",
83+
"@jupyterlab/builder": "^4.0.0",
84+
"@jupyterlab/testutils": "^3.0.0",
85+
"@types/json-schema": "^7.0.11",
86+
"@types/node": "^14.14.16",
87+
"@types/react": "^18.0.26",
88+
"@types/react-dom": "^17.0.0",
89+
"@typescript-eslint/eslint-plugin": "^5.55.0",
90+
"@typescript-eslint/parser": "^5.55.0",
91+
"css-loader": "^6.7.1",
92+
"eslint": "^8.36.0",
93+
"eslint-config-prettier": "^8.8.0",
94+
"eslint-plugin-prettier": "^5.0.0",
95+
"npm-run-all": "^4.1.5",
96+
"prettier": "^3.0.0",
97+
"rimraf": "^4.4.1",
98+
"source-map-loader": "^1.0.2",
99+
"style-loader": "^3.3.1",
100+
"stylelint": "^15.10.1",
101+
"stylelint-config-recommended": "^13.0.0",
102+
"stylelint-config-standard": "^34.0.0",
103+
"stylelint-prettier": "^4.0.0",
104+
"typescript": "~5.0.2",
105+
"yjs": "^13.5.40"
106+
},
107+
"sideEffects": [
108+
"style/*.css",
109+
"style/index.js"
110+
],
111+
"styleModule": "style/index.js",
112+
"jupyterlab": {
113+
"extension": true,
114+
"outputDir": "pyviz_comms/labextension",
115+
"schemaDir": "schema",
116+
"sharedPackages": {
117+
"@jupyter-widgets/jupyterlab-manager": {
118+
"bundled": false,
119+
"singleton": true
120+
},
121+
"@jupyter-widgets/base": {
122+
"bundled": false,
123+
"singleton": true
124+
}
125+
}
125126
}
126-
}
127127
}

pyviz_comms/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is auto-generated by Hatchling. As such, do not:
22
# - modify
33
# - track in version control e.g. be sure to add to .gitignore
4-
__version__ = VERSION = '3.0.3'
4+
__version__ = VERSION = '3.0.4'

0 commit comments

Comments
 (0)