-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update zahori-server version to 0.1.14
- Loading branch information
1 parent
b665ced
commit 3d4b9f2
Showing
4 changed files
with
51 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
selenoid/vnc_chrome:99.0 | ||
selenoid/vnc_firefox:98.0 | ||
selenoid/vnc_chrome:105.0 | ||
browsers/edge:105.0 | ||
selenoid/vnc_firefox:104.0 | ||
selenoid/vnc_opera:90.0 | ||
browsers/safari:15.0 | ||
browsers/edge:99.0 | ||
selenoid/vnc_opera:85.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
---------------- ADD XRAY SUPPORT ---------------- | ||
|
||
-- Add field tmsExecutionId to executions | ||
ALTER TABLE public.executions ADD tms_test_execution_id varchar NULL; | ||
|
||
-- Remove duplicated XRAY test repository | ||
DELETE FROM public.test_repositories WHERE test_repo_id = 1; | ||
UPDATE public.test_repositories SET name = 'Jira Xray' WHERE test_repo_id = 2; | ||
UPDATE public.test_repositories SET name = 'TestLink' WHERE name = 'Testlink'; | ||
|
||
|
||
---------------- UPDATE BROWSER VERSIONS ---------------- | ||
UPDATE public.browsers SET default_version = '105.0' WHERE browser_name = 'chrome'; | ||
UPDATE public.browsers SET default_version = '105.0' WHERE browser_name = 'edge'; | ||
UPDATE public.browsers SET default_version = '104.0' WHERE browser_name = 'firefox'; | ||
UPDATE public.browsers SET default_version = '90.0' WHERE browser_name = 'opera'; | ||
UPDATE public.browsers SET default_version = '15.0' WHERE browser_name = 'safari'; | ||
|
||
|
||
---------------- ADD SCREEN RESOLUTION NAMES ---------------- | ||
ALTER TABLE public.resolutions ADD name varchar NULL; | ||
|
||
-- Add default data to resolutions table | ||
INSERT INTO public.resolutions(client_id, process_id, width, height, "order", active, "name") | ||
VALUES(1, 1, 1920, 1080, 0, true, 'Full HD'); | ||
|
||
INSERT INTO public.resolutions(client_id, process_id, width, height, "order", active, "name") | ||
VALUES(1, 1, 1280, 720, 0, true, 'HD'); | ||
|
||
INSERT INTO public.resolutions(client_id, process_id, width, height, "order", active, "name") | ||
VALUES(1, 1, 810, 1080, 0, true, 'iPad'); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters