8000 Update list of valid Synthetics::Canary runtime versions by sir-sigurd · Pull Request #2276 · cloudtools/troposphere · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update list of valid Synthetics::Canary runtime versions #2276

< 8000 details class="details-reset details-overlay details-overlay-dark float-right" > New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions troposphere/validators/synthetics.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,27 @@ def canary_runtime_version(runtime_version):
"""

valid_runtime_versions = [
"syn-nodejs-playwright-1.0",
"syn-nodejs-puppeteer-4.0",
"syn-nodejs-puppeteer-5.0",
"syn-nodejs-puppeteer-5.1",
"syn-nodejs-puppeteer-5.2",
"syn-nodejs-puppeteer-6.0",
"syn-nodejs-puppeteer-6.1",
"syn-nodejs-puppeteer-6.2",
"syn-nodejs-puppeteer-7.0",
"syn-nodejs-puppeteer-8.0",
"syn-nodejs-puppeteer-9.0",
"syn-nodejs-puppeteer-9.1",
"syn-python-selenium-1.0",
"syn-python-selenium-1.1",
"syn-python-selenium-1.2",
"syn-python-selenium-1.3",
"syn-python-selenium-2.0",
"syn-python-selenium-2.1",
"syn-python-selenium-3.0",
"syn-python-selenium-4.0",
"syn-python-selenium-4.1",
]
if runtime_version not in valid_runtime_versions:
raise ValueError(
Expand Down
Loading
0