Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Commit 1241ade

Browse files
authored
Merge branch 'master' into feature/throws-over-32kb
2 parents 255fe26 + d2c565d commit 1241ade

File tree

4 files changed

+282
-2769
lines changed

4 files changed

+282
-2769
lines changed

.circleci/config.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ workflows:
2626
static_analysis:
2727
jobs:
2828
- test
29-
- size:
30-
requires:
31-
- test
3229
- coverage:
3330
requires:
3431
- test
@@ -100,13 +97,6 @@ jobs:
10097
- checkout
10198
- attach_workspace: { at: . }
10299
- run: yarn run report-coverage
103-
size:
104-
docker:
105-
- image: circleci/node:10-browsers
106-
steps:
107-
- checkout
108-
- attach_workspace: { at: . }
109-
- run: yarn run size
110100
snyk:
111101
docker:
112102
- image: circleci/node:10-browsers

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v3.5.0 / 2021-1-5
2+
==========================
3+
* Update axios to fix the Server-Side Request Forgery vulnerability (#259)
4+
5+
16
v3.4.1-beta.3 / 2020-10-26
27
==========================
38
* Update axios to fix the infinite retry bug (#255)

package.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "analytics-node",
3-
"version": "3.4.0-beta.3",
3+
"version": "3.5.0",
44
"description": "The hassle-free way to integrate analytics into any Node.js application",
55
"license": "MIT",
66
"repository": "segmentio/analytics-node",
@@ -12,16 +12,9 @@
1212
"engines": {
1313
"node": ">=4"
1414
},
15-
"size-limit": [
16-
{
17-
"limit": "25 KB",
18-
"path": "index.js"
19-
}
20-
],
2115
"scripts": {
2216
"circle-lint": ".buildscript/circle.sh",
2317
"dependencies": "yarn",
24-
"size": "size-limit",
2518
"test": "standard && nyc ava --timeout=20s&& .buildscript/e2e.sh",
2619
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
2720
"np": "np --no-publish",
@@ -41,7 +34,7 @@
4134
],
4235
"dependencies": {
4336
"@segment/loosely-validate-event": "^2.0.0",
44-
"axios": "^0.19.2",
37+
"axios": "^0.21.1",
4538
"axios-retry": "^3.0.2",
4639
"lodash.isstring": "^4.0.1",
4740
"md5": "^2.2.1",
@@ -61,8 +54,13 @@
6154
"nyc": "^14.1.1",
6255
"pify": "^4.0.1",
6356
"sinon": "^7.3.2",
64-
"size-limit": "^1.3.5",
6557
"snyk": "^1.171.1",
6658
"standard": "^12.0.1"
59+
},
60+
"resolutions": {
61+
"kind-of": "^6.0.3",
62+
"lodash": "^4.17.19",
63+
"set-value": "^2.0.1",
64+
"yargs-parser": "^13.1.2"
6765
}
6866
}

0 commit comments

Comments
 (0)