Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: globals/get_browser_versions.py

Issue 29427555: Issue 5188 - Drops Aurora builds from get_browser_versions.py (Closed)
Patch Set: Created May 2, 2017, 5:22 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: globals/get_browser_versions.py
===================================================================
--- a/globals/get_browser_versions.py
+++ b/globals/get_browser_versions.py
@@ -52,17 +52,16 @@
def get_firefox_versions():
versions = get_json_versions(FIREFOX_URL)
return {
'current': versions['LATEST_FIREFOX_VERSION'],
'unreleased': [
versions['LATEST_FIREFOX_DEVEL_VERSION'],
- versions['FIREFOX_AURORA'],
saroyanm 2017/05/02 12:39:22 Why are we removing AURORA ? I thought the issue
saroyanm 2017/05/02 12:40:20 Nevermind, saw the updated discussion.
versions['FIREFOX_NIGHTLY'],
]
}
def get_thunderbird_versions():
tbird_versions = get_json_versions(THUNDERBIRD_URL)
firefox_versions = get_json_versions(FIREFOX_URL)
@@ -80,17 +79,16 @@
def get_seamonkey_versions():
seamonkey_versions = get_json_versions(SEAMONKEY_URL)
versions = {
'current': seamonkey_versions['LATEST_SEAMONKEY_VERSION'],
'unreleased': [
seamonkey_versions['LATEST_SEAMONKEY_MILESTONE_VERSION'],
- seamonkey_versions['LATEST_SEAMONKEY_TESTING_VERSION'],
seamonkey_versions['LATEST_SEAMONKEY_DEVEL_VERSION'],
]
}
return versions
BROWSERS['seamonkey'] = get_seamonkey_versions
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld