playwright-core 1.55.0-alpha-2025-08-05 → 1.55.0-alpha-2025-08-06
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/server/dispatchers/androidDispatcher.js +1 -6
- package/lib/server/dispatchers/playwrightDispatcher.js +1 -1
- package/lib/server/network.js +6 -2
- package/lib/server/registry/index.js +20 -0
- package/lib/server/registry/nativeDeps.js +175 -0
- package/lib/server/utils/hostPlatform.js +3 -1
- package/package.json +1 -1
|
@@ -29,10 +29,9 @@ var import_android = require("../android/android");
|
|
|
29
29
|
var import_eventsHelper = require("../utils/eventsHelper");
|
|
30
30
|
var import_instrumentation = require("../instrumentation");
|
|
31
31
|
class AndroidDispatcher extends import_dispatcher.Dispatcher {
|
|
32
|
-
constructor(scope, android
|
|
32
|
+
constructor(scope, android) {
|
|
33
33
|
super(scope, android, "Android", {});
|
|
34
34
|
this._type_Android = true;
|
|
35
|
-
this._denyLaunch = denyLaunch;
|
|
36
35
|
}
|
|
37
36
|
async devices(params, progress) {
|
|
38
37
|
const devices = await this._object.devices(progress, params);
|
|
@@ -137,8 +136,6 @@ class AndroidDeviceDispatcher extends import_dispatcher.Dispatcher {
|
|
|
137
136
|
await progress.race(this._object.push(progress, params.file, params.path, params.mode));
|
|
138
137
|
}
|
|
139
138
|
async launchBrowser(params, progress) {
|
|
140
|
-
if (this.parentScope()._denyLaunch)
|
|
141
|
-
throw new Error(`Launching more browsers is not allowed.`);
|
|
142
139
|
const context = await this._object.launchBrowser(progress, params.pkg, params);
|
|
143
140
|
return { context: import_browserContextDispatcher.BrowserContextDispatcher.from(this, context) };
|
|
144
141
|
}
|
|
@@ -146,8 +143,6 @@ class AndroidDeviceDispatcher extends import_dispatcher.Dispatcher {
|
|
|
146
143
|
await this._object.close();
|
|
147
144
|
}
|
|
148
145
|
async connectToWebView(params, progress) {
|
|
149
|
-
if (this.parentScope()._denyLaunch)
|
|
150
|
-
throw new Error(`Launching more browsers is not allowed.`);
|
|
151
146
|
return { context: import_browserContextDispatcher.BrowserContextDispatcher.from(this, await this._object.connectToWebView(progress, params.socketName)) };
|
|
152
147
|
}
|
|
153
148
|
}
|
|
@@ -41,7 +41,7 @@ class PlaywrightDispatcher extends import_dispatcher.Dispatcher {
|
|
|
41
41
|
const webkit = new import_browserTypeDispatcher.BrowserTypeDispatcher(scope, playwright.webkit, denyLaunch);
|
|
42
42
|
const _bidiChromium = new import_browserTypeDispatcher.BrowserTypeDispatcher(scope, playwright._bidiChromium, denyLaunch);
|
|
43
43
|
const _bidiFirefox = new import_browserTypeDispatcher.BrowserTypeDispatcher(scope, playwright._bidiFirefox, denyLaunch);
|
|
44
|
-
const android = new import_androidDispatcher.AndroidDispatcher(scope, playwright.android
|
|
44
|
+
const android = new import_androidDispatcher.AndroidDispatcher(scope, playwright.android);
|
|
45
45
|
const initializer = {
|
|
46
46
|
chromium,
|
|
47
47
|
firefox,
|
package/lib/server/network.js
CHANGED
|
@@ -300,8 +300,12 @@ class Route extends import_instrumentation.SdkObject {
|
|
|
300
300
|
if (oldUrl.protocol !== newUrl.protocol)
|
|
301
301
|
throw new Error("New URL must have same protocol as overridden URL");
|
|
302
302
|
}
|
|
303
|
-
if (overrides.headers)
|
|
304
|
-
overrides.headers = overrides.headers?.filter((header) =>
|
|
303
|
+
if (overrides.headers) {
|
|
304
|
+
overrides.headers = overrides.headers?.filter((header) => {
|
|
305
|
+
const headerName = header.name.toLowerCase();
|
|
306
|
+
return headerName !== "cookie" && headerName !== "host";
|
|
307
|
+
});
|
|
308
|
+
}
|
|
305
309
|
overrides = this._request._applyOverrides(overrides);
|
|
306
310
|
const nextHandler = this._futureHandlers.shift();
|
|
307
311
|
if (nextHandler) {
|
|
@@ -122,6 +122,8 @@ const DOWNLOAD_PATHS = {
|
|
|
122
122
|
"debian11-arm64": "builds/chromium/%s/chromium-linux-arm64.zip",
|
|
123
123
|
"debian12-x64": "builds/chromium/%s/chromium-linux.zip",
|
|
124
124
|
"debian12-arm64": "builds/chromium/%s/chromium-linux-arm64.zip",
|
|
125
|
+
"debian13-x64": "builds/chromium/%s/chromium-linux.zip",
|
|
126
|
+
"debian13-arm64": "builds/chromium/%s/chromium-linux-arm64.zip",
|
|
125
127
|
"mac10.13": "builds/chromium/%s/chromium-mac.zip",
|
|
126
128
|
"mac10.14": "builds/chromium/%s/chromium-mac.zip",
|
|
127
129
|
"mac10.15": "builds/chromium/%s/chromium-mac.zip",
|
|
@@ -151,6 +153,8 @@ const DOWNLOAD_PATHS = {
|
|
|
151
153
|
"debian11-arm64": "builds/chromium/%s/chromium-headless-shell-linux-arm64.zip",
|
|
152
154
|
"debian12-x64": "builds/chromium/%s/chromium-headless-shell-linux.zip",
|
|
153
155
|
"debian12-arm64": "builds/chromium/%s/chromium-headless-shell-linux-arm64.zip",
|
|
156
|
+
"debian13-x64": "builds/chromium/%s/chromium-headless-shell-linux.zip",
|
|
157
|
+
"debian13-arm64": "builds/chromium/%s/chromium-headless-shell-linux-arm64.zip",
|
|
154
158
|
"mac10.13": void 0,
|
|
155
159
|
"mac10.14": void 0,
|
|
156
160
|
"mac10.15": void 0,
|
|
@@ -180,6 +184,8 @@ const DOWNLOAD_PATHS = {
|
|
|
180
184
|
"debian11-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-linux-arm64.zip",
|
|
181
185
|
"debian12-x64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-linux.zip",
|
|
182
186
|
"debian12-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-linux-arm64.zip",
|
|
187
|
+
"debian13-x64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-linux.zip",
|
|
188
|
+
"debian13-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-linux-arm64.zip",
|
|
183
189
|
"mac10.13": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-mac.zip",
|
|
184
190
|
"mac10.14": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-mac.zip",
|
|
185
191
|
"mac10.15": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-mac.zip",
|
|
@@ -209,6 +215,8 @@ const DOWNLOAD_PATHS = {
|
|
|
209
215
|
"debian11-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-headless-shell-linux-arm64.zip",
|
|
210
216
|
"debian12-x64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-headless-shell-linux.zip",
|
|
211
217
|
"debian12-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-headless-shell-linux-arm64.zip",
|
|
218
|
+
"debian13-x64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-headless-shell-linux.zip",
|
|
219
|
+
"debian13-arm64": "builds/chromium-tip-of-tree/%s/chromium-tip-of-tree-headless-shell-linux-arm64.zip",
|
|
212
220
|
"mac10.13": void 0,
|
|
213
221
|
"mac10.14": void 0,
|
|
214
222
|
"mac10.15": void 0,
|
|
@@ -238,6 +246,8 @@ const DOWNLOAD_PATHS = {
|
|
|
238
246
|
"debian11-arm64": "builds/firefox/%s/firefox-debian-11-arm64.zip",
|
|
239
247
|
"debian12-x64": "builds/firefox/%s/firefox-debian-12.zip",
|
|
240
248
|
"debian12-arm64": "builds/firefox/%s/firefox-debian-12-arm64.zip",
|
|
249
|
+
"debian13-x64": "builds/firefox/%s/firefox-debian-13.zip",
|
|
250
|
+
"debian13-arm64": "builds/firefox/%s/firefox-debian-13-arm64.zip",
|
|
241
251
|
"mac10.13": "builds/firefox/%s/firefox-mac.zip",
|
|
242
252
|
"mac10.14": "builds/firefox/%s/firefox-mac.zip",
|
|
243
253
|
"mac10.15": "builds/firefox/%s/firefox-mac.zip",
|
|
@@ -267,6 +277,8 @@ const DOWNLOAD_PATHS = {
|
|
|
267
277
|
"debian11-arm64": "builds/firefox-beta/%s/firefox-beta-debian-11-arm64.zip",
|
|
268
278
|
"debian12-x64": "builds/firefox-beta/%s/firefox-beta-debian-12.zip",
|
|
269
279
|
"debian12-arm64": "builds/firefox-beta/%s/firefox-beta-debian-12-arm64.zip",
|
|
280
|
+
"debian13-x64": "builds/firefox-beta/%s/firefox-beta-debian-12.zip",
|
|
281
|
+
"debian13-arm64": "builds/firefox-beta/%s/firefox-beta-debian-12-arm64.zip",
|
|
270
282
|
"mac10.13": "builds/firefox-beta/%s/firefox-beta-mac.zip",
|
|
271
283
|
"mac10.14": "builds/firefox-beta/%s/firefox-beta-mac.zip",
|
|
272
284
|
"mac10.15": "builds/firefox-beta/%s/firefox-beta-mac.zip",
|
|
@@ -296,6 +308,8 @@ const DOWNLOAD_PATHS = {
|
|
|
296
308
|
"debian11-arm64": "builds/webkit/%s/webkit-debian-11-arm64.zip",
|
|
297
309
|
"debian12-x64": "builds/webkit/%s/webkit-debian-12.zip",
|
|
298
310
|
"debian12-arm64": "builds/webkit/%s/webkit-debian-12-arm64.zip",
|
|
311
|
+
"debian13-x64": "builds/webkit/%s/webkit-debian-13.zip",
|
|
312
|
+
"debian13-arm64": "builds/webkit/%s/webkit-debian-13-arm64.zip",
|
|
299
313
|
"mac10.13": void 0,
|
|
300
314
|
"mac10.14": "builds/deprecated-webkit-mac-10.14/%s/deprecated-webkit-mac-10.14.zip",
|
|
301
315
|
"mac10.15": "builds/deprecated-webkit-mac-10.15/%s/deprecated-webkit-mac-10.15.zip",
|
|
@@ -325,6 +339,8 @@ const DOWNLOAD_PATHS = {
|
|
|
325
339
|
"debian11-arm64": "builds/ffmpeg/%s/ffmpeg-linux-arm64.zip",
|
|
326
340
|
"debian12-x64": "builds/ffmpeg/%s/ffmpeg-linux.zip",
|
|
327
341
|
"debian12-arm64": "builds/ffmpeg/%s/ffmpeg-linux-arm64.zip",
|
|
342
|
+
"debian13-x64": "builds/ffmpeg/%s/ffmpeg-linux.zip",
|
|
343
|
+
"debian13-arm64": "builds/ffmpeg/%s/ffmpeg-linux-arm64.zip",
|
|
328
344
|
"mac10.13": "builds/ffmpeg/%s/ffmpeg-mac.zip",
|
|
329
345
|
"mac10.14": "builds/ffmpeg/%s/ffmpeg-mac.zip",
|
|
330
346
|
"mac10.15": "builds/ffmpeg/%s/ffmpeg-mac.zip",
|
|
@@ -354,6 +370,8 @@ const DOWNLOAD_PATHS = {
|
|
|
354
370
|
"debian11-arm64": void 0,
|
|
355
371
|
"debian12-x64": void 0,
|
|
356
372
|
"debian12-arm64": void 0,
|
|
373
|
+
"debian13-x64": void 0,
|
|
374
|
+
"debian13-arm64": void 0,
|
|
357
375
|
"mac10.13": void 0,
|
|
358
376
|
"mac10.14": void 0,
|
|
359
377
|
"mac10.15": void 0,
|
|
@@ -383,6 +401,8 @@ const DOWNLOAD_PATHS = {
|
|
|
383
401
|
"debian11-arm64": "builds/android/%s/android.zip",
|
|
384
402
|
"debian12-x64": "builds/android/%s/android.zip",
|
|
385
403
|
"debian12-arm64": "builds/android/%s/android.zip",
|
|
404
|
+
"debian13-x64": "builds/android/%s/android.zip",
|
|
405
|
+
"debian13-arm64": "builds/android/%s/android.zip",
|
|
386
406
|
"mac10.13": "builds/android/%s/android.zip",
|
|
387
407
|
"mac10.14": "builds/android/%s/android.zip",
|
|
388
408
|
"mac10.15": "builds/android/%s/android.zip",
|
|
@@ -1032,6 +1032,168 @@ const deps = {
|
|
|
1032
1032
|
"libXrandr.so.2": "libxrandr2",
|
|
1033
1033
|
"libgtk-4.so.1": "libgtk-4-1"
|
|
1034
1034
|
}
|
|
1035
|
+
},
|
|
1036
|
+
"debian13-x64": {
|
|
1037
|
+
tools: [
|
|
1038
|
+
"xvfb",
|
|
1039
|
+
"fonts-noto-color-emoji",
|
|
1040
|
+
"fonts-unifont",
|
|
1041
|
+
"libfontconfig1",
|
|
1042
|
+
"libfreetype6",
|
|
1043
|
+
"xfonts-scalable",
|
|
1044
|
+
"fonts-liberation",
|
|
1045
|
+
"fonts-ipafont-gothic",
|
|
1046
|
+
"fonts-wqy-zenhei",
|
|
1047
|
+
"fonts-tlwg-loma-otf",
|
|
1048
|
+
"fonts-freefont-ttf"
|
|
1049
|
+
],
|
|
1050
|
+
chromium: [
|
|
1051
|
+
"libasound2t64",
|
|
1052
|
+
"libatk-bridge2.0-0t64",
|
|
1053
|
+
"libatk1.0-0t64",
|
|
1054
|
+
"libatspi2.0-0t64",
|
|
1055
|
+
"libcairo2",
|
|
1056
|
+
"libcups2t64",
|
|
1057
|
+
"libdbus-1-3",
|
|
1058
|
+
"libdrm2",
|
|
1059
|
+
"libgbm1",
|
|
1060
|
+
"libglib2.0-0t64",
|
|
1061
|
+
"libnspr4",
|
|
1062
|
+
"libnss3",
|
|
1063
|
+
"libpango-1.0-0",
|
|
1064
|
+
"libx11-6",
|
|
1065
|
+
"libxcb1",
|
|
1066
|
+
"libxcomposite1",
|
|
1067
|
+
"libxdamage1",
|
|
1068
|
+
"libxext6",
|
|
1069
|
+
"libxfixes3",
|
|
1070
|
+
"libxkbcommon0",
|
|
1071
|
+
"libxrandr2"
|
|
1072
|
+
],
|
|
1073
|
+
firefox: [
|
|
1074
|
+
"libasound2",
|
|
1075
|
+
"libatk1.0-0t64",
|
|
1076
|
+
"libcairo-gobject2",
|
|
1077
|
+
"libcairo2",
|
|
1078
|
+
"libdbus-1-3",
|
|
1079
|
+
"libdbus-glib-1-2",
|
|
1080
|
+
"libfontconfig1",
|
|
1081
|
+
"libfreetype6",
|
|
1082
|
+
"libgdk-pixbuf-2.0-0",
|
|
1083
|
+
"libglib2.0-0t64",
|
|
1084
|
+
"libgtk-3-0t64",
|
|
1085
|
+
"libharfbuzz0b",
|
|
1086
|
+
"libpango-1.0-0",
|
|
1087
|
+
"libpangocairo-1.0-0",
|
|
1088
|
+
"libx11-6",
|
|
1089
|
+
"libx11-xcb1",
|
|
1090
|
+
"libxcb-shm0",
|
|
1091
|
+
"libxcb1",
|
|
1092
|
+
"libxcomposite1",
|
|
1093
|
+
"libxcursor1",
|
|
1094
|
+
"libxdamage1",
|
|
1095
|
+
"libxext6",
|
|
1096
|
+
"libxfixes3",
|
|
1097
|
+
"libxi6",
|
|
1098
|
+
"libxrandr2",
|
|
1099
|
+
"libxrender1",
|
|
1100
|
+
"libxtst6"
|
|
1101
|
+
],
|
|
1102
|
+
webkit: [
|
|
1103
|
+
"libsoup-3.0-0",
|
|
1104
|
+
"gstreamer1.0-libav",
|
|
1105
|
+
"gstreamer1.0-plugins-bad",
|
|
1106
|
+
"gstreamer1.0-plugins-base",
|
|
1107
|
+
"gstreamer1.0-plugins-good",
|
|
1108
|
+
"libatk-bridge2.0-0t64",
|
|
1109
|
+
"libatk1.0-0t64",
|
|
1110
|
+
"libcairo2",
|
|
1111
|
+
"libdbus-1-3",
|
|
1112
|
+
"libdrm2",
|
|
1113
|
+
"libegl1",
|
|
1114
|
+
"libenchant-2-2",
|
|
1115
|
+
"libepoxy0",
|
|
1116
|
+
"libevdev2",
|
|
1117
|
+
"libfontconfig1",
|
|
1118
|
+
"libfreetype6",
|
|
1119
|
+
"libgbm1",
|
|
1120
|
+
"libgdk-pixbuf-2.0-0",
|
|
1121
|
+
"libgles2",
|
|
1122
|
+
"libglib2.0-0t64",
|
|
1123
|
+
"libglx0",
|
|
1124
|
+
"libgstreamer-gl1.0-0",
|
|
1125
|
+
"libgstreamer-plugins-base1.0-0",
|
|
1126
|
+
"libgstreamer1.0-0",
|
|
1127
|
+
"libgtk-4-1",
|
|
1128
|
+
"libgudev-1.0-0",
|
|
1129
|
+
"libharfbuzz-icu0",
|
|
1130
|
+
"libharfbuzz0b",
|
|
1131
|
+
"libhyphen0",
|
|
1132
|
+
"libicu76",
|
|
1133
|
+
"libjpeg62-turbo",
|
|
1134
|
+
"liblcms2-2",
|
|
1135
|
+
"libmanette-0.2-0",
|
|
1136
|
+
"libnotify4",
|
|
1137
|
+
"libopengl0",
|
|
1138
|
+
"libopenjp2-7",
|
|
1139
|
+
"libopus0",
|
|
1140
|
+
"libpango-1.0-0",
|
|
1141
|
+
"libpng16-16t64",
|
|
1142
|
+
"libproxy1v5",
|
|
1143
|
+
"libsecret-1-0",
|
|
1144
|
+
"libwayland-client0",
|
|
1145
|
+
"libwayland-egl1",
|
|
1146
|
+
"libwayland-server0",
|
|
1147
|
+
"libwebp7",
|
|
1148
|
+
"libwebpdemux2",
|
|
1149
|
+
"libwoff1",
|
|
1150
|
+
"libx11-6",
|
|
1151
|
+
"libxcomposite1",
|
|
1152
|
+
"libxdamage1",
|
|
1153
|
+
"libxkbcommon0",
|
|
1154
|
+
"libxml2",
|
|
1155
|
+
"libxslt1.1",
|
|
1156
|
+
"libatomic1",
|
|
1157
|
+
"libevent-2.1-7t64",
|
|
1158
|
+
"libavif16"
|
|
1159
|
+
],
|
|
1160
|
+
lib2package: {
|
|
1161
|
+
"libicudata.so.74": "libicu76",
|
|
1162
|
+
"libicui18n.so.74": "libicu76",
|
|
1163
|
+
"libicuuc.so.74": "libicu76",
|
|
1164
|
+
"libevent-2.1.so.7": "libevent-2.1-7t64",
|
|
1165
|
+
"libpng16.so.16": "libpng16-16t64",
|
|
1166
|
+
"libgdk-3.so.0": "libgtk-3-0t64",
|
|
1167
|
+
"libgtk-3.so.0": "libgtk-3-0t64",
|
|
1168
|
+
"libavif.so.16": "libavif16",
|
|
1169
|
+
"libsoup-3.0.so.0": "libsoup-3.0-0",
|
|
1170
|
+
"libasound.so.2": "libasound2t64",
|
|
1171
|
+
"libatk-1.0.so.0": "libatk1.0-0t64",
|
|
1172
|
+
"libatk-bridge-2.0.so.0": "libatk-bridge2.0-0t64",
|
|
1173
|
+
"libatspi.so.0": "libatspi2.0-0t64",
|
|
1174
|
+
"libcairo.so.2": "libcairo2",
|
|
1175
|
+
"libcups.so.2": "libcups2t64",
|
|
1176
|
+
"libdbus-1.so.3": "libdbus-1-3",
|
|
1177
|
+
"libdrm.so.2": "libdrm2",
|
|
1178
|
+
"libgbm.so.1": "libgbm1",
|
|
1179
|
+
"libgio-2.0.so.0": "libglib2.0-0t64",
|
|
1180
|
+
"libglib-2.0.so.0": "libglib2.0-0t64",
|
|
1181
|
+
"libgobject-2.0.so.0": "libglib2.0-0t64",
|
|
1182
|
+
"libnspr4.so": "libnspr4",
|
|
1183
|
+
"libnss3.so": "libnss3",
|
|
1184
|
+
"libnssutil3.so": "libnss3",
|
|
1185
|
+
"libpango-1.0.so.0": "libpango-1.0-0",
|
|
1186
|
+
"libsmime3.so": "libnss3",
|
|
1187
|
+
"libX11.so.6": "libx11-6",
|
|
1188
|
+
"libxcb.so.1": "libxcb1",
|
|
1189
|
+
"libXcomposite.so.1": "libxcomposite1",
|
|
1190
|
+
"libXdamage.so.1": "libxdamage1",
|
|
1191
|
+
"libXext.so.6": "libxext6",
|
|
1192
|
+
"libXfixes.so.3": "libxfixes3",
|
|
1193
|
+
"libxkbcommon.so.0": "libxkbcommon0",
|
|
1194
|
+
"libXrandr.so.2": "libxrandr2",
|
|
1195
|
+
"libgtk-4.so.1": "libgtk-4-1"
|
|
1196
|
+
}
|
|
1035
1197
|
}
|
|
1036
1198
|
};
|
|
1037
1199
|
deps["ubuntu20.04-arm64"] = {
|
|
@@ -1099,6 +1261,19 @@ deps["debian12-arm64"] = {
|
|
|
1099
1261
|
...deps["debian12-x64"].lib2package
|
|
1100
1262
|
}
|
|
1101
1263
|
};
|
|
1264
|
+
deps["debian13-arm64"] = {
|
|
1265
|
+
tools: [...deps["debian13-x64"].tools],
|
|
1266
|
+
chromium: [...deps["debian13-x64"].chromium],
|
|
1267
|
+
firefox: [
|
|
1268
|
+
...deps["debian13-x64"].firefox
|
|
1269
|
+
],
|
|
1270
|
+
webkit: [
|
|
1271
|
+
...deps["debian13-x64"].webkit
|
|
1272
|
+
],
|
|
1273
|
+
lib2package: {
|
|
1274
|
+
...deps["debian13-x64"].lib2package
|
|
1275
|
+
}
|
|
1276
|
+
};
|
|
1102
1277
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1103
1278
|
0 && (module.exports = {
|
|
1104
1279
|
deps
|
|
@@ -92,8 +92,10 @@ function calculatePlatform() {
|
|
|
92
92
|
return { hostPlatform: "debian11" + archSuffix, isOfficiallySupportedPlatform: isOfficiallySupportedPlatform2 };
|
|
93
93
|
if (distroInfo?.version === "12")
|
|
94
94
|
return { hostPlatform: "debian12" + archSuffix, isOfficiallySupportedPlatform: isOfficiallySupportedPlatform2 };
|
|
95
|
+
if (distroInfo?.version === "13")
|
|
96
|
+
return { hostPlatform: "debian13" + archSuffix, isOfficiallySupportedPlatform: isOfficiallySupportedPlatform2 };
|
|
95
97
|
if (distroInfo?.version === "")
|
|
96
|
-
return { hostPlatform: "
|
|
98
|
+
return { hostPlatform: "debian13" + archSuffix, isOfficiallySupportedPlatform: isOfficiallySupportedPlatform2 };
|
|
97
99
|
}
|
|
98
100
|
return { hostPlatform: "ubuntu20.04" + archSuffix, isOfficiallySupportedPlatform: false };
|
|
99
101
|
}
|