This commit is contained in:
Jan-Erik Rediger 2021-04-30 14:58:54 +02:00
Родитель c959b0a323
Коммит ac6599098a
8 изменённых файлов: 8 добавлений и 7 удалений

Просмотреть файл

@ -8,6 +8,7 @@
* Implement an additional check to avoid crash due to faulty timezone offset ([#1581](https://github.com/mozilla/glean/pull/1581))
* This now records a new metric `glean.time.invalid_timezone_offset`, counting how often we failed to get a valid timezone offset.
* Use proper paths throughout to hopefully handle non-UTF-8 paths more gracefully ([#1596](https://github.com/mozilla/glean/pull/1596))
* Updated `glean_parser` version to 3.2.0 ([#1609](https://github.com/mozilla/glean/pull/1608))
* iOS
* Code generator: Ensure at least pip 20.3 is available in iOS build ([#1590](https://github.com/mozilla/glean/pull/1590))

Просмотреть файл

@ -144,7 +144,7 @@ python-docs: build-python ## Build the Python documentation
.PHONY: docs rust-docs kotlin-docs swift-docs
metrics-docs: python-setup ## Build the internal metrics documentation
$(GLEAN_PYENV)/bin/pip install glean_parser==3.0.0
$(GLEAN_PYENV)/bin/pip install glean_parser==3.2.0
$(GLEAN_PYENV)/bin/glean_parser translate --allow-reserved \
-f markdown \
-o ./docs/user/user/collected-metrics \

Просмотреть файл

@ -18,7 +18,7 @@ include = [
]
[package.metadata.glean]
glean-parser = "3.0.0"
glean-parser = "3.2.0"
[badges]
circle-ci = { repository = "mozilla/glean", branch = "main" }

Просмотреть файл

@ -18,7 +18,7 @@ namespace GleanTasks
private const string DefaultVirtualEnvDir = ".venv";
// The glean_parser pypi package version
private const string GleanParserVersion = "3.0.0";
private const string GleanParserVersion = "3.2.0";
// This script runs a given Python module as a "main" module, like
// `python -m module`. However, it first checks that the installed

Просмотреть файл

@ -25,7 +25,7 @@
set -e
GLEAN_PARSER_VERSION=3.0.0
GLEAN_PARSER_VERSION=3.2.0
# CMDNAME is used in the usage text below.
# shellcheck disable=SC2034

Просмотреть файл

@ -30,7 +30,7 @@ __author__ = "The Glean Team"
__email__ = "glean-team@mozilla.com"
GLEAN_PARSER_VERSION = "3.0.0"
GLEAN_PARSER_VERSION = "3.2.0"
if glean_parser.__version__ != GLEAN_PARSER_VERSION:

Просмотреть файл

@ -60,7 +60,7 @@ version = "36.0.1"
requirements = [
"cffi>=1.13.0",
"glean_parser==3.0.0",
"glean_parser==3.2.0",
"iso8601>=0.1.10; python_version<='3.6'",
]

Просмотреть файл

@ -36,7 +36,7 @@ class GleanMetricsYamlTransform extends ArtifactTransform {
@SuppressWarnings("GrPackage")
class GleanPlugin implements Plugin<Project> {
// The version of glean_parser to install from PyPI.
private String GLEAN_PARSER_VERSION = "3.0.0"
private String GLEAN_PARSER_VERSION = "3.2.0"
// The version of Miniconda is explicitly specified.
// Miniconda3-4.5.12 is known to not work on Windows.
private String MINICONDA_VERSION = "4.5.11"