Merge pull request #3237 from mozilla/train-149

v1.149.4 -> master
This commit is contained in:
Danny Coates 2019-11-05 10:31:48 -08:00 коммит произвёл GitHub
Родитель 70d0c2c7e4 b1f943bf3e
Коммит 7c09f10bc4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
36 изменённых файлов: 127 добавлений и 33 удалений

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

@ -1,3 +1,11 @@
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-auth-db-mysql/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-auth-db-mysql",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-auth-db-mysql",
"version": "1.149.2",
"version": "1.149.4",
"description": "MySQL backend for Firefox Accounts",
"main": "index.js",
"repository": {

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

@ -1,3 +1,11 @@
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
### Bug fixes

2
packages/fxa-auth-server/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-auth-server",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-auth-server",
"version": "1.149.2",
"version": "1.149.4",
"description": "Firefox Accounts, an identity provider for Mozilla cloud services",
"bin": {
"fxa-auth": "./bin/key_server.js"

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

@ -1,3 +1,11 @@
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-content-server/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-content-server",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-content-server",
"version": "1.149.2",
"version": "1.149.4",
"description": "Firefox Accounts Content Server",
"scripts": {
"build-production": "NODE_ENV=production grunt build",

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

@ -1,3 +1,13 @@
## 1.149.4
No changes.
## 1.149.3
### Bug fixes
- customs: Fix ip_blocklist .netstat file parse error. (3f806570f)
## 1.149.2
No changes.

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

@ -13,7 +13,6 @@
var Promise = require('bluebird');
var readFile = Promise.promisify(require('fs').readFile);
var statFile = Promise.promisify(require('fs').stat);
var parse = Promise.promisify(require('csv-parse'));
var path = require('path');
var ip = require('ip');
@ -73,11 +72,18 @@ module.exports = function(log, config) {
return readFile(filePath, 'utf8');
})
.then(function(data) {
return parse(data);
// split into rows, filter out any comments, i.e., rows starting with #
return data
.toString()
.split('\n')
.map(line => line.trim())
.filter(line => {
return line.length && !/^#/.test(line);
});
})
.then(function(rows) {
return Promise.each(rows, function(row, idx) {
var parsedData = parseRow(row[0]);
var parsedData = parseRow(row);
if (parsedData) {
if (!newIpsByPrefixLength[parsedData.prefixLength]) {

7
packages/fxa-customs-server/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-customs-server",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -1210,11 +1210,6 @@
"resolved": "https://registry.npmjs.org/csv-generate/-/csv-generate-1.1.2.tgz",
"integrity": "sha1-7GsA7a7W5ZrZwgWC9MNk4osUYkA="
},
"csv-parse": {
"version": "4.4.6",
"resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.4.6.tgz",
"integrity": "sha512-VisC5TBBhOF+70zjrF9FOiqI2LZOhXK/vAWlOrqyqz3lLa+P8jzJ7L/sg90MHmkSY/brAXWwrmGSZR0tM5yi4g=="
},
"csv-stringify": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-1.1.2.tgz",

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

@ -1,6 +1,6 @@
{
"name": "fxa-customs-server",
"version": "1.149.2",
"version": "1.149.4",
"description": "Firefox Accounts Customs Server",
"author": "Mozilla (https://mozilla.org/)",
"license": "MPL-2.0",
@ -25,7 +25,6 @@
"bluebird": "3.3.4",
"bunyan": "1.8.0",
"convict": "4.0.2",
"csv-parse": "4.4.6",
"deep-equal": "1.0.1",
"ip": "1.1.3",
"ip-reputation-js-client": "4.1.0",

2
packages/fxa-email-event-proxy/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-email-event-proxy",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-email-event-proxy",
"version": "1.149.2",
"version": "1.149.4",
"description": "Proxies events from Sendgrid to FxA SQS queues",
"main": "index.js",
"scripts": {

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

@ -1,3 +1,11 @@
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-email-service/Cargo.lock сгенерированный
Просмотреть файл

@ -689,7 +689,7 @@ dependencies = [
[[package]]
name = "fxa_email_service"
version = "1.149.2"
version = "1.149.4"
dependencies = [
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"bytes 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",

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

@ -1,6 +1,6 @@
[package]
name = "fxa_email_service"
version = "1.149.2"
version = "1.149.4"
publish = false
edition = "2018"

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

@ -1,5 +1,13 @@
# Change history
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-event-broker/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-event-broker",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-event-broker",
"version": "1.149.2",
"version": "1.149.4",
"description": "Firefox Accounts Event Broker",
"scripts": {
"build": "./node_modules/typescript/bin/tsc",

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

@ -1,5 +1,13 @@
# Change history
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-geodb/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-geodb",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-geodb",
"version": "1.149.2",
"version": "1.149.4",
"private": false,
"description": "Firefox Accounts GeoDB Repo for Geolocation based services",
"main": "lib/fxa-geodb.js",

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

@ -1,5 +1,15 @@
# Change history
## 1.149.4
### Bug fixes
- payments: correctly append event time to amplitude events (ec04e7e82)
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-payments-server/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-payments-server",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-payments-server",
"version": "1.149.2",
"version": "1.149.4",
"description": "Firefox Accounts Payments Service",
"scripts": {
"lint": "npm-run-all --parallel lint:*",

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

@ -1,3 +1,11 @@
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-profile-server/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-profile-server",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-profile-server",
"version": "1.149.2",
"version": "1.149.4",
"private": true,
"description": "Firefox Accounts Profile service.",
"scripts": {

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

@ -1,5 +1,15 @@
# Change history
## 1.149.4
### Bug fixes
- payments: correctly append event time to amplitude events (ec04e7e82)
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-shared/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-shared",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-shared",
"version": "1.149.2",
"version": "1.149.4",
"description": "Shared module for FxA repositories",
"main": "dist/index.js",
"scripts": {

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

@ -1,5 +1,13 @@
# Change history
## 1.149.4
No changes.
## 1.149.3
No changes.
## 1.149.2
No changes.

2
packages/fxa-support-panel/package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "fxa-support-panel",
"version": "1.149.2",
"version": "1.149.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

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

@ -1,6 +1,6 @@
{
"name": "fxa-support-panel",
"version": "1.149.2",
"version": "1.149.4",
"description": "Small app to help customer support access FxA details",
"directories": {
"test": "test"