Skip to content

Commit 860cd9d

Browse files
committed
Publish 0.11.0
SHA256 hashes: jupyter-chat-0.11.0.tgz: 6bd25fc87eb4641c7f59d5ff379d59c94e7d94dc75cded317a7a459d71c0c5d4 jupyter-chat-example-0.11.0.tgz: 8430a5679087b1a1aa521fc95b635415ab375f2390572239f7ccd3f1dd4b049f jupyterlab-chat-0.11.0.tgz: 94f00311c2a48cf2cf4b2353753fef94d008ad15ea19884e9efce516e419d0cc jupyterlab-chat-extension-0.11.0.tgz: 6bf4f0b56fc502837c6dae42cf02808be077e2386200a3faadc1e7f673ac2722 jupyterlab_chat-0.11.0-py3-none-any.whl: e668e53d80aec9dc422118ba4b0d821624324023aaf4434e1e10bc179a27302b jupyterlab_chat-0.11.0.tar.gz: eec3496e3e718c0b8085df2b439f82f61a3b2f51358c09e827bf7d7fe2916308
1 parent 1a3d918 commit 860cd9d

File tree

9 files changed

+32
-17
lines changed

9 files changed

+32
-17
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+
## 0.11.0
6+
7+
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/[email protected]))
8+
9+
### Enhancements made
10+
11+
- Allow Users to delete messages if sender is a bot, add optional `bot` bool to user models [#214](https://github.com/jupyterlab/jupyter-chat/pull/214) ([@andrii-i](https://github.com/andrii-i))
12+
- Add a message footer registry, to allow extensions to provides their footers [#210](https://github.com/jupyterlab/jupyter-chat/pull/210) ([@brichet](https://github.com/brichet))
13+
14+
### Contributors to this release
15+
16+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-chat/graphs/contributors?from=2025-04-17&to=2025-04-28&type=c))
17+
18+
[@andrii-i](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Aandrii-i+updated%3A2025-04-17..2025-04-28&type=Issues) | [@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Abrichet+updated%3A2025-04-17..2025-04-28&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Agithub-actions+updated%3A2025-04-17..2025-04-28&type=Issues)
19+
20+
<!-- <END NEW CHANGELOG ENTRY> -->
21+
522
## 0.10.1
623

724
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/[email protected]))
@@ -16,8 +33,6 @@
1633

1734
[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Abrichet+updated%3A2025-04-11..2025-04-17&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Agithub-actions+updated%3A2025-04-11..2025-04-17&type=Issues)
1835

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2136
## 0.10.0
2237

2338
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/[email protected]))

docs/jupyter-chat-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-chat-example",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "A chat extension providing a chat as example",
55
"keywords": [
66
"jupyter",
@@ -44,7 +44,7 @@
4444
"install:extension": "jlpm build"
4545
},
4646
"dependencies": {
47-
"@jupyter/chat": "^0.10.1",
47+
"@jupyter/chat": "^0.11.0",
4848
"@jupyterlab/application": "^4.2.0",
4949
"@jupyterlab/apputils": "^4.3.0",
5050
"@jupyterlab/notebook": "^4.2.0",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useWorkspaces": true,
4-
"version": "0.10.1",
4+
"version": "0.11.0",
55
"npmClient": "jlpm",
66
"useNx": true
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyter-chat-root",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "A chat package for Jupyterlab extension",
55
"private": true,
66
"keywords": [

packages/jupyter-chat/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter/chat",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "A package that provides UI components that can be used to create a chat in a Jupyterlab extension.",
55
"keywords": [
66
"jupyter",

packages/jupyterlab-chat-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-chat-extension",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "A chat extension based on shared documents",
55
"keywords": [
66
"jupyter",
@@ -66,7 +66,7 @@
6666
"@lumino/coreutils": "^2.0.0",
6767
"@lumino/signaling": "^2.0.0",
6868
"@lumino/widgets": "^2.0.0",
69-
"jupyterlab-chat": "^0.10.1",
69+
"jupyterlab-chat": "^0.11.0",
7070
"react": "^18.2.0",
7171
"y-protocols": "^1.0.5",
7272
"yjs": "^13.5.40"

packages/jupyterlab-chat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-chat",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "The library to build a chat based on shared document",
55
"keywords": [
66
"jupyter",
@@ -42,7 +42,7 @@
4242
"watch:src": "tsc -w --sourceMap"
4343
},
4444
"dependencies": {
45-
"@jupyter/chat": "^0.10.1",
45+
"@jupyter/chat": "^0.11.0",
4646
"@jupyter/collaborative-drive": "^3.0.0",
4747
"@jupyter/ydoc": "^2.0.0 || ^3.0.0",
4848
"@jupyterlab/application": "^4.2.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.10.1"
1+
__version__ = "0.11.0"

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2494,7 +2494,7 @@ __metadata:
24942494
languageName: node
24952495
linkType: hard
24962496

2497-
"@jupyter/chat@^0.10.1, @jupyter/chat@workspace:packages/jupyter-chat":
2497+
"@jupyter/chat@^0.11.0, @jupyter/chat@workspace:packages/jupyter-chat":
24982498
version: 0.0.0-use.local
24992499
resolution: "@jupyter/chat@workspace:packages/jupyter-chat"
25002500
dependencies:
@@ -10058,7 +10058,7 @@ __metadata:
1005810058
version: 0.0.0-use.local
1005910059
resolution: "jupyter-chat-example@workspace:docs/jupyter-chat-example"
1006010060
dependencies:
10061-
"@jupyter/chat": ^0.10.1
10061+
"@jupyter/chat": ^0.11.0
1006210062
"@jupyterlab/application": ^4.2.0
1006310063
"@jupyterlab/apputils": ^4.3.0
1006410064
"@jupyterlab/builder": ^4.2.0
@@ -10128,7 +10128,7 @@ __metadata:
1012810128
"@types/react": ^18.2.0
1012910129
"@types/react-addons-linked-state-mixin": ^0.14.22
1013010130
css-loader: ^6.7.1
10131-
jupyterlab-chat: ^0.10.1
10131+
jupyterlab-chat: ^0.11.0
1013210132
mkdirp: ^1.0.3
1013310133
npm-run-all: ^4.1.5
1013410134
react: ^18.2.0
@@ -10141,11 +10141,11 @@ __metadata:
1014110141
languageName: unknown
1014210142
linkType: soft
1014310143

10144-
"jupyterlab-chat@^0.10.1, jupyterlab-chat@workspace:packages/jupyterlab-chat":
10144+
"jupyterlab-chat@^0.11.0, jupyterlab-chat@workspace:packages/jupyterlab-chat":
1014510145
version: 0.0.0-use.local
1014610146
resolution: "jupyterlab-chat@workspace:packages/jupyterlab-chat"
1014710147
dependencies:
10148-
"@jupyter/chat": ^0.10.1
10148+
"@jupyter/chat": ^0.11.0
1014910149
"@jupyter/collaborative-drive": ^3.0.0
1015010150
"@jupyter/ydoc": ^2.0.0 || ^3.0.0
1015110151
"@jupyterlab/application": ^4.2.0

0 commit comments

Comments
 (0)