2023-02-13 17:51:45 +00:00
|
|
|
import gov025 from "./go/v0.25/image.json"
|
2023-01-10 22:26:27 +00:00
|
|
|
import gov024 from "./go/v0.24/image.json"
|
|
|
|
import gov023 from "./go/v0.23/image.json"
|
|
|
|
import gov022 from "./go/v0.22/image.json"
|
2023-02-17 22:47:03 +00:00
|
|
|
import rustv048 from "./rust/v0.48/image.json"
|
|
|
|
import rustv049 from "./rust/v0.49/image.json"
|
2023-01-10 22:26:27 +00:00
|
|
|
import rustv050 from "./rust/v0.50/image.json"
|
2023-01-24 17:52:44 +00:00
|
|
|
import jsV041 from "./js/v0.41/node-image.json"
|
2023-03-07 01:47:40 +00:00
|
|
|
import jsV042 from "./js/v0.42/node-image.json"
|
2023-02-17 17:37:26 +00:00
|
|
|
import nimv10 from "./nim/v1.0/image.json"
|
2023-01-24 17:52:44 +00:00
|
|
|
import chromiumJsV041 from "./js/v0.41/chromium-image.json"
|
2023-03-07 01:47:40 +00:00
|
|
|
import chromiumJsV042 from "./js/v0.42/chromium-image.json"
|
2023-01-10 22:26:27 +00:00
|
|
|
|
|
|
|
export type Version = {
|
|
|
|
id: string,
|
|
|
|
containerImageID: string,
|
2023-01-24 17:52:44 +00:00
|
|
|
// If defined, this will increase the timeout for tests using this version
|
|
|
|
timeoutSecs?: number,
|
|
|
|
transports: Array<(string | { name: string, onlyDial: boolean })>,
|
2023-01-10 22:26:27 +00:00
|
|
|
secureChannels: string[],
|
2023-01-24 17:52:44 +00:00
|
|
|
muxers: string[]
|
2023-01-10 22:26:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const versions: Array<Version> = [
|
2023-02-17 22:47:03 +00:00
|
|
|
{
|
|
|
|
id: "rust-v0.48.0",
|
2023-02-24 20:46:39 +00:00
|
|
|
containerImageID: rustv048.imageID,
|
2023-02-17 22:47:03 +00:00
|
|
|
transports: ["ws", "tcp"],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "rust-v0.49.0",
|
2023-02-24 20:46:39 +00:00
|
|
|
containerImageID: rustv049.imageID,
|
2023-02-17 22:47:03 +00:00
|
|
|
transports: ["ws", "tcp"],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-01-10 22:26:27 +00:00
|
|
|
{
|
|
|
|
id: "rust-v0.50.0",
|
|
|
|
containerImageID: rustv050.imageID,
|
2023-01-18 11:56:09 +00:00
|
|
|
transports: ["ws", "tcp", "quic-v1", "webrtc"],
|
2023-01-10 22:26:27 +00:00
|
|
|
secureChannels: ["tls", "noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "js-v0.41.0",
|
|
|
|
containerImageID: jsV041.imageID,
|
|
|
|
transports: ["tcp", "ws"],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-03-07 01:47:40 +00:00
|
|
|
{
|
|
|
|
id: "js-v0.42.0",
|
|
|
|
containerImageID: jsV042.imageID,
|
|
|
|
transports: ["tcp", "ws", { name: "wss", onlyDial: true }],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-01-24 17:52:44 +00:00
|
|
|
{
|
|
|
|
id: "chromium-js-v0.41.0",
|
|
|
|
containerImageID: chromiumJsV041.imageID,
|
2023-02-11 01:00:53 +00:00
|
|
|
transports: [{ name: "webtransport", onlyDial: true }, { name: "webrtc", onlyDial: true }],
|
2023-01-24 17:52:44 +00:00
|
|
|
secureChannels: [],
|
|
|
|
muxers: []
|
|
|
|
},
|
2023-03-07 01:47:40 +00:00
|
|
|
{
|
|
|
|
id: "chromium-js-v0.42.0",
|
|
|
|
containerImageID: chromiumJsV042.imageID,
|
|
|
|
transports: [{ name: "webtransport", onlyDial: true }, { name: "webrtc", onlyDial: true }, { name: "wss", onlyDial: true }],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"]
|
|
|
|
},
|
2023-02-13 17:51:45 +00:00
|
|
|
{
|
|
|
|
id: "go-v0.25.1",
|
|
|
|
containerImageID: gov025.imageID,
|
|
|
|
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport"],
|
|
|
|
secureChannels: ["tls", "noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-01-10 22:26:27 +00:00
|
|
|
{
|
|
|
|
id: "go-v0.24.2",
|
|
|
|
containerImageID: gov024.imageID,
|
2023-03-07 01:47:40 +00:00
|
|
|
transports: ["tcp", "ws", "quic", "quic-v1", "webtransport", "wss"],
|
2023-01-10 22:26:27 +00:00
|
|
|
secureChannels: ["tls", "noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "go-v0.23.4",
|
|
|
|
containerImageID: gov023.imageID,
|
|
|
|
transports: ["tcp", "ws", "quic"],
|
|
|
|
secureChannels: ["tls", "noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "go-v0.22.0",
|
|
|
|
containerImageID: gov022.imageID,
|
|
|
|
transports: ["tcp", "ws", "quic"],
|
|
|
|
secureChannels: ["tls", "noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-02-17 17:37:26 +00:00
|
|
|
{
|
|
|
|
id: "nim-v1.0",
|
|
|
|
containerImageID: nimv10.imageID,
|
|
|
|
transports: ["tcp", "ws"],
|
|
|
|
secureChannels: ["noise"],
|
|
|
|
muxers: ["mplex", "yamux"],
|
|
|
|
},
|
2023-01-18 11:56:09 +00:00
|
|
|
]
|