Skip to content

Commit c9917b7

Browse files
committed
Publish 0.12.0
SHA256 hashes: jupyter-chat-0.12.0.tgz: d6bafacef5009d6f8ea59c67ae12d4e8f172e40271b2f57565ee5344c3e0ed9a jupyter-chat-example-0.12.0.tgz: 5494437e294e3a5b7a633ed3b0e45842ef0dd7c37995b948dff993a4efc7eb79 jupyterlab-chat-0.12.0.tgz: db408e4c13286a6549fb7caafe51dc637136cb708465c6229c2e9acd6486264e jupyterlab-chat-extension-0.12.0.tgz: 44de7cc86c36ab225d5e227b2d64f3bbe030c50f2cb3b58de7525fa63f1b599b jupyterlab_chat-0.12.0-py3-none-any.whl: 86dd1d992743c35d63e5f7301b3b208e4a6ac48ad9dba30670577cc1a60aba23 jupyterlab_chat-0.12.0.tar.gz: 8a8523bf0a78ea110c0c868ae8d7dfea166d16dda21404347426bbd5fc39462c
1 parent 2867f2e commit c9917b7

File tree

9 files changed

+36
-17
lines changed

9 files changed

+36
-17
lines changed

CHANGELOG.md

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

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

5+
## 0.12.0
6+
7+
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/chat@0.11.0...2867f2edc63cfdad16c81d91c00074d0911726ff))
8+
9+
### Enhancements made
10+
11+
- Add a welcome message [#221](https://github.com/jupyterlab/jupyter-chat/pull/221) ([@brichet](https://github.com/brichet))
12+
- Display user writing notification when editing a message [#208](https://github.com/jupyterlab/jupyter-chat/pull/208) ([@brichet](https://github.com/brichet))
13+
14+
### Bugs fixed
15+
16+
- Fix scrollbar in empty chat [#223](https://github.com/jupyterlab/jupyter-chat/pull/223) ([@brichet](https://github.com/brichet))
17+
18+
### Contributors to this release
19+
20+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-chat/graphs/contributors?from=2025-04-28&to=2025-06-03&type=c))
21+
22+
[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Abrichet+updated%3A2025-04-28..2025-06-03&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Agithub-actions+updated%3A2025-04-28..2025-06-03&type=Issues)
23+
24+
<!-- <END NEW CHANGELOG ENTRY> -->
25+
526
## 0.11.0
627

728
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/chat@0.10.1...1a3d91843e9ae70147b0d92158126002068661b6))
@@ -17,8 +38,6 @@
1738

1839
[@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)
1940

20-
<!-- <END NEW CHANGELOG ENTRY> -->
21-
2241
## 0.10.1
2342

2443
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/chat@0.10.0...171ebfaef4e88a2e3e0ccef6016500119f4a2155))

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.11.0",
3+
"version": "0.12.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.11.0",
47+
"@jupyter/chat": "^0.12.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.11.0",
4+
"version": "0.12.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.11.0",
3+
"version": "0.12.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.11.0",
3+
"version": "0.12.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.11.0",
3+
"version": "0.12.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.11.0",
69+
"jupyterlab-chat": "^0.12.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.11.0",
3+
"version": "0.12.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.11.0",
45+
"@jupyter/chat": "^0.12.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.11.0"
1+
__version__ = "0.12.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.11.0, @jupyter/chat@workspace:packages/jupyter-chat":
2497+
"@jupyter/chat@^0.12.0, @jupyter/chat@workspace:packages/jupyter-chat":
24982498
version: 0.0.0-use.local
24992499
resolution: "@jupyter/chat@workspace:packages/jupyter-chat"
25002500
dependencies:
@@ -10059,7 +10059,7 @@ __metadata:
1005910059
version: 0.0.0-use.local
1006010060
resolution: "jupyter-chat-example@workspace:docs/jupyter-chat-example"
1006110061
dependencies:
10062-
"@jupyter/chat": ^0.11.0
10062+
"@jupyter/chat": ^0.12.0
1006310063
"@jupyterlab/application": ^4.2.0
1006410064
"@jupyterlab/apputils": ^4.3.0
1006510065
"@jupyterlab/builder": ^4.2.0
@@ -10129,7 +10129,7 @@ __metadata:
1012910129
"@types/react": ^18.2.0
1013010130
"@types/react-addons-linked-state-mixin": ^0.14.22
1013110131
css-loader: ^6.7.1
10132-
jupyterlab-chat: ^0.11.0
10132+
jupyterlab-chat: ^0.12.0
1013310133
mkdirp: ^1.0.3
1013410134
npm-run-all: ^4.1.5
1013510135
react: ^18.2.0
@@ -10142,11 +10142,11 @@ __metadata:
1014210142
languageName: unknown
1014310143
linkType: soft
1014410144

10145-
"jupyterlab-chat@^0.11.0, jupyterlab-chat@workspace:packages/jupyterlab-chat":
10145+
"jupyterlab-chat@^0.12.0, jupyterlab-chat@workspace:packages/jupyterlab-chat":
1014610146
version: 0.0.0-use.local
1014710147
resolution: "jupyterlab-chat@workspace:packages/jupyterlab-chat"
1014810148
dependencies:
10149-
"@jupyter/chat": ^0.11.0
10149+
"@jupyter/chat": ^0.12.0
1015010150
"@jupyter/collaborative-drive": ^3.0.0
1015110151
"@jupyter/ydoc": ^2.0.0 || ^3.0.0
1015210152
"@jupyterlab/application": ^4.2.0

0 commit comments

Comments
 (0)