Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
rsvc
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
maubot
rsvc
Commits
d81d83f1
Commit
d81d83f1
authored
1 year ago
by
Tulir Asokan
🐈
Browse files
Options
Downloads
Patches
Plain Diff
Add room v11 to support table
parent
f720ac67
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#11339
passed
1 year ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rsvc.py
+9
-4
9 additions, 4 deletions
rsvc.py
with
9 additions
and
4 deletions
rsvc.py
+
9
−
4
View file @
d81d83f1
...
...
@@ -41,11 +41,11 @@ class TestError(Exception):
pass
known_room_versions
=
{
"
1
"
,
"
2
"
,
"
3
"
,
"
4
"
,
"
5
"
,
"
6
"
,
"
7
"
,
"
8
"
,
"
9
"
,
"
10
"
}
versions_updated
=
"
2023-0
1-09
"
known_room_versions
=
{
"
1
"
,
"
2
"
,
"
3
"
,
"
4
"
,
"
5
"
,
"
6
"
,
"
7
"
,
"
8
"
,
"
9
"
,
"
10
"
,
"
11
"
}
versions_updated
=
"
2023-0
7-24
"
latest_known_version
=
{
"
Synapse
"
:
packaging
.
version
.
parse
(
"
1.
74
.0
"
),
"
Dendrite
"
:
semver
.
parse
(
"
0.1
0.8
"
),
"
Synapse
"
:
packaging
.
version
.
parse
(
"
1.
88
.0
"
),
"
Dendrite
"
:
semver
.
parse
(
"
0.1
3.1
"
),
"
Conduit
"
:
semver
.
parse
(
"
0.5.0
"
),
}
...
...
@@ -61,6 +61,7 @@ minimum_version = {
"
8
"
:
packaging
.
version
.
parse
(
"
1.40.0rc3
"
),
"
9
"
:
packaging
.
version
.
parse
(
"
1.42.0rc2
"
),
"
10
"
:
packaging
.
version
.
parse
(
"
1.64.0rc1
"
),
"
11
"
:
False
,
# packaging.version.parse("1.89.0rc1"),
},
"
construct
"
:
{
"
1
"
:
True
,
...
...
@@ -73,6 +74,7 @@ minimum_version = {
"
8
"
:
True
,
"
9
"
:
True
,
"
10
"
:
False
,
"
11
"
:
False
,
},
"
Dendrite
"
:
{
"
1
"
:
True
,
...
...
@@ -85,6 +87,7 @@ minimum_version = {
"
8
"
:
semver
.
parse
(
"
0.8.6
"
),
# actually added in 0.5.1, but only marked as stable in 0.8.6
"
9
"
:
semver
.
parse
(
"
0.8.6
"
),
"
10
"
:
semver
.
parse
(
"
0.8.7
"
),
"
11
"
:
False
,
},
"
Conduit
"
:
{
"
1
"
:
False
,
...
...
@@ -97,6 +100,7 @@ minimum_version = {
"
8
"
:
semver
.
parse
(
"
0.4.0
"
),
"
9
"
:
semver
.
parse
(
"
0.4.0
"
),
"
10
"
:
semver
.
parse
(
"
0.5.0
"
),
"
11
"
:
False
,
# semver.parse("0.6.0"),
},
"
Catalyst
"
:
{
"
1
"
:
False
,
...
...
@@ -109,6 +113,7 @@ minimum_version = {
"
8
"
:
True
,
"
9
"
:
True
,
"
10
"
:
True
,
"
11
"
:
False
,
},
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment