Skip to content

Commit 54b637a

Browse files
authored
Merge pull request #436 from maxmind/wes/release
Yarn upgrade + Release
2 parents 0c2c358 + 5c997ac commit 54b637a

File tree

4 files changed

+27
-29
lines changed

4 files changed

+27
-29
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
- run: yarn install
2121
- run: yarn test --coverage
2222
- run: yarn build
23+
- run: yarn build:docs
2324
- run: yarn link
2425
- run: yarn
2526
working-directory: e2e/js

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
CHANGELOG
22
=========
33

4-
3.0.0
4+
3.0.0 (2020-01-19)
55
------------------
66

77
* Added `ApplePay` and `ApsPayments` to the `Processor` enum.
88
* Added additional normalizing of the email address when it is sent as an
99
MD5 hash instead of plain text.
10+
* Upgrade yarn dependencies
1011

1112
### Breaking change
1213
The email address field is now sent to the web service in plain text unless
@@ -16,6 +17,11 @@ Previously the address was always sent as an MD5 hash. The new default
1617
behavior matches that of other official minFraud API clients. Note the
1718
email domain is always sent in plain text.
1819

20+
2.1.0 (2020-01-11)
21+
------------------
22+
23+
* Upgrade yarn dependencies
24+
1925
2.0.0 (2020-11-09)
2026
------------------
2127

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
"devDependencies": {
2424
"@types/jest": "^26.0.0",
2525
"@types/lodash.clonedeep": "^4.5.4",
26-
"@types/nock": "^11.1.0",
2726
"@types/node": "^14.0.5",
2827
"@types/snakecase-keys": "^2.1.0",
2928
"@types/validator": "^13.0.0",
@@ -48,19 +47,18 @@
4847
}
4948
},
5049
"lint-staged": {
51-
"*.json": ["prettier --parser json --write", "git add"],
50+
"*.json": ["prettier --parser json --write"],
5251
"*.ts": [
5352
"prettier --parser typescript --single-quote true --trailing-comma es5 --write",
54-
"tslint -p tsconfig.lint.json -t stylish",
55-
"git add"
53+
"tslint -p tsconfig.lint.json -t stylish"
5654
]
5755
},
5856
"publishConfig": {
5957
"access": "public"
6058
},
6159
"scripts": {
6260
"build": "rimraf dist && tsc",
63-
"build:docs": "rimraf docs && typedoc --out docs --exclude \"**/*.spec.ts\" --mode file --readme README.md",
61+
"build:docs": "rimraf docs && typedoc src/index.ts --out docs --exclude \"**/*.spec.ts\" --readme README.md",
6462
"deploy:docs": "gh-pages -d docs",
6563
"lint": "tslint -p ./tsconfig.lint.json -t stylish",
6664
"prettier:ts": "prettier --parser typescript --single-quote true --trailing-comma es5 --write 'src/**/*.ts'",

yarn.lock

Lines changed: 16 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -466,9 +466,9 @@
466466
chalk "^4.0.0"
467467

468468
"@maxmind/geoip2-node@^2.0.1":
469-
version "2.1.0"
470-
resolved "https://registry.yarnpkg.com/@maxmind/geoip2-node/-/geoip2-node-2.1.0.tgz#9b311ee80b265daf5f59b9a69bb70d6f7e0be15f"
471-
integrity sha512-mN7YRe1gwEt0PXC9gv3xChRvsFq226HgngEadTUtpK84+R8t5bc5IFiC4YJz+ogIpWBUuQBeekqpuWcWT4HYdg==
469+
version "2.1.1"
470+
resolved "https://registry.yarnpkg.com/@maxmind/geoip2-node/-/geoip2-node-2.1.1.tgz#03bc08633d63a08789e0d891e5effb8ad8413634"
471+
integrity sha512-vG+GeNMVb9Z27Y9V1tte2ExgcYZ+FCLtOOynbypyP5Pe7JGL0QI7NCRKAu9zgaQ7KxSKbJG8etb+r/CSEfElFw==
472472
dependencies:
473473
camelcase-keys "^6.0.1"
474474
ip6addr "^0.2.3"
@@ -519,9 +519,9 @@
519519
integrity sha512-FyD2meJpDPjyNQejSjvnhpgI/azsQkA4lGbuu5BQZfjvJ9cbRZXzeWL2HceCekW4lixO9JPesIIQkSoLjeJHNQ==
520520

521521
"@sinonjs/commons@^1.7.0":
522-
version "1.8.1"
523-
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.1.tgz#e7df00f98a203324f6dc7cc606cad9d4a8ab2217"
524-
integrity sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==
522+
version "1.8.2"
523+
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.2.tgz#858f5c4b48d80778fde4b9d541f27edc0d56488b"
524+
integrity sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==
525525
dependencies:
526526
type-detect "4.0.8"
527527

@@ -643,22 +643,15 @@
643643
"@types/lodash" "*"
644644

645645
"@types/lodash@*":
646-
version "4.14.167"
647-
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.167.tgz#ce7d78553e3c886d4ea643c37ec7edc20f16765e"
648-
integrity sha512-w7tQPjARrvdeBkX/Rwg95S592JwxqOjmms3zWQ0XZgSyxSLdzWaYH3vErBhdVS/lRBX7F8aBYcYJYTr5TMGOzw==
646+
version "4.14.168"
647+
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.168.tgz#fe24632e79b7ade3f132891afff86caa5e5ce008"
648+
integrity sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q==
649649

650650
"@types/minimist@^1.2.0":
651651
version "1.2.1"
652652
resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.1.tgz#283f669ff76d7b8260df8ab7a4262cc83d988256"
653653
integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg==
654654

655-
"@types/nock@^11.1.0":
656-
version "11.1.0"
657-
resolved "https://registry.yarnpkg.com/@types/nock/-/nock-11.1.0.tgz#0a8c1056a31ba32a959843abccf99626dd90a538"
658-
integrity sha512-jI/ewavBQ7X5178262JQR0ewicPAcJhXS/iFaNJl0VHLfyosZ/kwSrsa6VNQNSO8i9d8SqdRgOtZSOKJ/+iNMw==
659-
dependencies:
660-
nock "*"
661-
662655
"@types/node@*", "@types/node@^14.0.5":
663656
version "14.14.21"
664657
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.21.tgz#d934aacc22424fe9622ebf6857370c052eae464e"
@@ -1951,9 +1944,9 @@ fast-deep-equal@^3.1.1:
19511944
integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
19521945

19531946
fast-glob@^3.1.1:
1954-
version "3.2.4"
1955-
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
1956-
integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
1947+
version "3.2.5"
1948+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661"
1949+
integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==
19571950
dependencies:
19581951
"@nodelib/fs.stat" "^2.0.2"
19591952
"@nodelib/fs.walk" "^1.2.3"
@@ -3971,7 +3964,7 @@ nice-try@^1.0.4:
39713964
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
39723965
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
39733966

3974-
nock@*, nock@^13.0.2:
3967+
nock@^13.0.2:
39753968
version "13.0.5"
39763969
resolved "https://registry.yarnpkg.com/nock/-/nock-13.0.5.tgz#a618c6f86372cb79fac04ca9a2d1e4baccdb2414"
39773970
integrity sha512-1ILZl0zfFm2G4TIeJFW0iHknxr2NyA+aGCMTjDVUsBY4CkMRispF1pfIYkTRdAR/3Bg+UzdEuK0B6HczMQZcCg==
@@ -4364,9 +4357,9 @@ parent-module@^1.0.0:
43644357
callsites "^3.0.0"
43654358

43664359
parse-json@^5.0.0:
4367-
version "5.1.0"
4368-
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646"
4369-
integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==
4360+
version "5.2.0"
4361+
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
4362+
integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
43704363
dependencies:
43714364
"@babel/code-frame" "^7.0.0"
43724365
error-ex "^1.3.1"

0 commit comments

Comments
 (0)