|
@@ -1,4 +1,3 @@
|
|
-#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2018 The Chromium Authors. All rights reserved.
|
|
# Copyright (c) 2018 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
# found in the LICENSE file.
|
|
@@ -13,7 +12,7 @@ import urllib.parse
|
|
# Current version of metrics recording.
|
|
# Current version of metrics recording.
|
|
# When we add new metrics, the version number will be increased, we display the
|
|
# When we add new metrics, the version number will be increased, we display the
|
|
# user what has changed, and ask the user to agree again.
|
|
# user what has changed, and ask the user to agree again.
|
|
-CURRENT_VERSION = 2
|
|
|
|
|
|
+CURRENT_VERSION = 3
|
|
|
|
|
|
APP_URL = 'https://cit-cli-metrics.appspot.com'
|
|
APP_URL = 'https://cit-cli-metrics.appspot.com'
|
|
|
|
|
|
@@ -73,6 +72,13 @@ def get_change_notice(version):
|
|
'authenticated as bot service accounts.',
|
|
'authenticated as bot service accounts.',
|
|
]
|
|
]
|
|
|
|
|
|
|
|
+ if version == 3:
|
|
|
|
+ return [
|
|
|
|
+ 'We will start collecting metrics for experiment flags.',
|
|
|
|
+ 'These are boolean or enum values that show whether',
|
|
|
|
+ 'you have opted in to or out of experimental features',
|
|
|
|
+ ]
|
|
|
|
+
|
|
|
|
|
|
KNOWN_PROJECT_URLS = {
|
|
KNOWN_PROJECT_URLS = {
|
|
'https://chrome-internal.googlesource.com/chrome/ios_internal',
|
|
'https://chrome-internal.googlesource.com/chrome/ios_internal',
|