From 8ab1974d8b963c660ecf00bc13a8ce71c3e546b5 Mon Sep 17 00:00:00 2001 From: Julian Simioni Date: Mon, 29 Nov 2021 11:44:10 -0500 Subject: [PATCH] Pin to an exact pelias-parser version (2.1.0) Historically we've kept most Pelias NPM dependencies on carat versions, but because the Pelias Parser can cause changes in acceptance-test results for any change (minor or even bug fix), we've kept it pinned to a specific version so we can explicitly upgrade. Recently, we were on a [hotfix branch](https://github.com/pelias/api/pull/1531) of the parser, but while switching back to using a version specification, we switched to [using a carat range](https://github.com/pelias/api/pull/1565). While manually bumping the version on a frequent basis is a bit annoying, it helps avoid any chance that unexpected or untested parser changes will find their way into the API releases, so this change brings us back to a pin of the current latest version of the Pelias Parser. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bae68b325..96a1ae535 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "pelias-logger": "^1.2.0", "pelias-microservice-wrapper": "^1.10.0", "pelias-model": "^9.0.0", - "pelias-parser": "^2.0.0", + "pelias-parser": "2.1.0", "pelias-query": "^11.0.0", "pelias-sorting": "^1.2.0", "predicates": "^2.0.0",