Skip to content

Commit e274d31

Browse files
committed
Publish 0.7.0
SHA256 hashes: jupyter-chat-0.7.0.tgz: 8810236415451093da5d296b008fa11612b8ab4035444cce7f570a5395acba4d jupyterlab-chat-0.7.0.tgz: 6c94e545ef08ea962fd39ff7bd57e9e0cd3ab3dcde95825db303920952e7c071 jupyterlab-chat-extension-0.7.0.tgz: ef49055b2be8de71078c52260a36b69c349209dadbf693bd66ac7450392b82be jupyterlab_chat-0.7.0-py3-none-any.whl: 2434f7fdd1d5aab3d61340b90b165e023bfa237fe930de4ac4cb298925ca87c4 jupyterlab_chat-0.7.0.tar.gz: 505c3595f37826757b2ea130e80090216a0e75b5449ff70b3aadf4c3f8cfef5b
1 parent 9d524d6 commit e274d31

File tree

7 files changed

+45
-13
lines changed

7 files changed

+45
-13
lines changed

CHANGELOG.md

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

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

5+
## 0.7.0
6+
7+
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/chat@0.6.2...9d524d6b7f23d43ac7c0b21a26d1b94d37e98685))
8+
9+
### Enhancements made
10+
11+
- Remove need for message index in YChat API methods [#125](https://github.com/jupyterlab/jupyter-chat/pull/125) ([@brichet](https://github.com/brichet))
12+
- Compatibility with notebook [#112](https://github.com/jupyterlab/jupyter-chat/pull/112) ([@brichet](https://github.com/brichet))
13+
14+
### Bugs fixed
15+
16+
- Fix math rendering using Latex delimiters [#129](https://github.com/jupyterlab/jupyter-chat/pull/129) ([@brichet](https://github.com/brichet))
17+
- Prevent sending empty message [#126](https://github.com/jupyterlab/jupyter-chat/pull/126) ([@brichet](https://github.com/brichet))
18+
- Improve (and fix) unread messages and navigation [#123](https://github.com/jupyterlab/jupyter-chat/pull/123) ([@brichet](https://github.com/brichet))
19+
- Fix rendering of code blocks in JupyterLab>= 4.3.0 [#111](https://github.com/jupyterlab/jupyter-chat/pull/111) ([@brichet](https://github.com/brichet))
20+
21+
### Maintenance and upkeep improvements
22+
23+
- Export components from @jupyter/chat [#132](https://github.com/jupyterlab/jupyter-chat/pull/132) ([@brichet](https://github.com/brichet))
24+
- Add the video of failing tests in playwright report [#127](https://github.com/jupyterlab/jupyter-chat/pull/127) ([@brichet](https://github.com/brichet))
25+
- Bump nanoid from 3.3.7 to 3.3.8 in /ui-tests in the npm_and_yarn group across 1 directory [#124](https://github.com/jupyterlab/jupyter-chat/pull/124) ([@dependabot](https://github.com/dependabot))
26+
- Bump nanoid from 3.3.7 to 3.3.8 in the npm_and_yarn group across 1 directory [#122](https://github.com/jupyterlab/jupyter-chat/pull/122) ([@dependabot](https://github.com/dependabot))
27+
- Use dataclass models in YChat [#119](https://github.com/jupyterlab/jupyter-chat/pull/119) ([@brichet](https://github.com/brichet))
28+
- Rename server config file after renaming the extension [#108](https://github.com/jupyterlab/jupyter-chat/pull/108) ([@brichet](https://github.com/brichet))
29+
- Upgrade to Jupyter Collaboration 3 [#94](https://github.com/jupyterlab/jupyter-chat/pull/94) ([@brichet](https://github.com/brichet))
30+
31+
### Contributors to this release
32+
33+
([GitHub contributors page for this release](https://github.com/jupyterlab/jupyter-chat/graphs/contributors?from=2024-11-25&to=2024-12-20&type=c))
34+
35+
[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Abrichet+updated%3A2024-11-25..2024-12-20&type=Issues) | [@dependabot](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Adependabot+updated%3A2024-11-25..2024-12-20&type=Issues) | [@dlqqq](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Adlqqq+updated%3A2024-11-25..2024-12-20&type=Issues) | [@github-actions](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Agithub-actions+updated%3A2024-11-25..2024-12-20&type=Issues)
36+
37+
<!-- <END NEW CHANGELOG ENTRY> -->
38+
539
## 0.6.2
640

741
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/@jupyter/chat@0.6.1...7248d2d7c4b6eaffeb4033a8776b36ede7ebf23f))
@@ -16,8 +50,6 @@
1650

1751
[@brichet](https://github.com/search?q=repo%3Ajupyterlab%2Fjupyter-chat+involves%3Abrichet+updated%3A2024-11-25..2024-11-25&type=Issues)
1852

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2153
## 0.6.1
2254

2355
([Full Changelog](https://github.com/jupyterlab/jupyter-chat/compare/v0.6.0...2961450cd8a877a6390314bf60b66b21436c3e19))

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.6.2",
4+
"version": "0.7.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.6.2",
3+
"version": "0.7.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.6.2",
3+
"version": "0.7.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/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.6.2",
3+
"version": "0.7.0",
44
"description": "The library to build a chat based on shared document",
55
"keywords": [
66
"jupyter",
@@ -51,7 +51,7 @@
5151
"watch:src": "tsc -w --sourceMap"
5252
},
5353
"dependencies": {
54-
"@jupyter/chat": "^0.6.2",
54+
"@jupyter/chat": "^0.7.0",
5555
"@jupyter/collaborative-drive": "^3.0.0",
5656
"@jupyter/ydoc": "^2.0.0 || ^3.0.0",
5757
"@jupyterlab/application": "^4.2.0",

python/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-extension",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "A chat extension based on shared documents",
55
"keywords": [
66
"jupyter",
@@ -75,7 +75,7 @@
7575
"@lumino/coreutils": "^2.0.0",
7676
"@lumino/signaling": "^2.0.0",
7777
"@lumino/widgets": "^2.0.0",
78-
"jupyterlab-chat": "^0.6.2",
78+
"jupyterlab-chat": "^0.7.0",
7979
"react": "^18.2.0",
8080
"y-protocols": "^1.0.5",
8181
"yjs": "^13.5.40"

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2449,7 +2449,7 @@ __metadata:
24492449
languageName: node
24502450
linkType: hard
24512451

2452-
"@jupyter/chat@^0.6.2, @jupyter/chat@workspace:packages/jupyter-chat":
2452+
"@jupyter/chat@^0.7.0, @jupyter/chat@workspace:packages/jupyter-chat":
24532453
version: 0.0.0-use.local
24542454
resolution: "@jupyter/chat@workspace:packages/jupyter-chat"
24552455
dependencies:
@@ -10014,7 +10014,7 @@ __metadata:
1001410014
eslint: ^8.36.0
1001510015
eslint-config-prettier: ^8.8.0
1001610016
eslint-plugin-prettier: ^5.0.0
10017-
jupyterlab-chat: ^0.6.2
10017+
jupyterlab-chat: ^0.7.0
1001810018
mkdirp: ^1.0.3
1001910019
npm-run-all: ^4.1.5
1002010020
prettier: ^3.0.0
@@ -10033,11 +10033,11 @@ __metadata:
1003310033
languageName: unknown
1003410034
linkType: soft
1003510035

10036-
"jupyterlab-chat@^0.6.2, jupyterlab-chat@workspace:packages/jupyterlab-chat":
10036+
"jupyterlab-chat@^0.7.0, jupyterlab-chat@workspace:packages/jupyterlab-chat":
1003710037
version: 0.0.0-use.local
1003810038
resolution: "jupyterlab-chat@workspace:packages/jupyterlab-chat"
1003910039
dependencies:
10040-
"@jupyter/chat": ^0.6.2
10040+
"@jupyter/chat": ^0.7.0
1004110041
"@jupyter/collaborative-drive": ^3.0.0
1004210042
"@jupyter/ydoc": ^2.0.0 || ^3.0.0
1004310043
"@jupyterlab/application": ^4.2.0

0 commit comments

Comments
 (0)