Skip to content

Commit f5ddb94

Browse files
meeseeksmachinedavidbrochartbrichet
authored
Backport PR #421 on branch 3.x (Update event schema version type) (#443)
* Backport PR #421: Update event schema version type * Bump jupyter_server to >=2.15.0<3.0.0 --------- Co-authored-by: David Brochart <[email protected]> Co-authored-by: Nicolas Brichet <[email protected]>
1 parent 37db3af commit f5ddb94

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

projects/jupyter-server-ydoc/jupyter_server_ydoc/events/awareness.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"$id": https://schema.jupyter.org/jupyter_collaboration/awareness/v1
22
"$schema": "http://json-schema.org/draft-07/schema"
3-
version: 1
3+
version: "1"
44
title: Collaborative awareness events
55
personal-data: true
66
description: |

projects/jupyter-server-ydoc/jupyter_server_ydoc/events/fork.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"$id": https://schema.jupyter.org/jupyter_collaboration/fork/v1
22
"$schema": "http://json-schema.org/draft-07/schema"
3-
version: 1
3+
version: "1"
44
title: Collaborative fork events
55
personal-data: true
66
description: |

projects/jupyter-server-ydoc/jupyter_server_ydoc/events/session.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"$id": https://schema.jupyter.org/jupyter_collaboration/session/v1
22
"$schema": "http://json-schema.org/draft-07/schema"
3-
version: 1
3+
version: "1"
44
title: Collaborative session events
55
personal-data: true
66
description: |

projects/jupyter-server-ydoc/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ authors = [
2828
{ name = "Jupyter Development Team", email = "[email protected]" },
2929
]
3030
dependencies = [
31-
"jupyter_server>=2.11.1,<3.0.0",
31+
"jupyter_server>=2.15.0,<3.0.0",
3232
"jupyter_ydoc>=2.1.2,<4.0.0,!=3.0.0,!=3.0.1",
3333
"pycrdt",
3434
"pycrdt-websocket>=0.15.0,<0.16.0",
@@ -42,7 +42,7 @@ dynamic = ["version"]
4242
test = [
4343
"coverage",
4444
"dirty-equals",
45-
"jupyter_server[test]>=2.4.0",
45+
"jupyter_server[test]>=2.15.0",
4646
"jupyter_server_fileid[test]",
4747
"pytest>=7.0",
4848
"pytest-cov",

ui-tests/playwright.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
},
2121
expect: {
2222
toMatchSnapshot: {
23-
maxDiffPixelRatio: 0.0001
23+
maxDiffPixelRatio: 0.01
2424
}
2525
}
2626
};

0 commit comments

Comments
 (0)