Skip to content

Commit cb52e29

Browse files
authored
Merge pull request #1188 from danger/fb/release-10.8.0
Release 10.8.0
2 parents ac8d0e8 + cf48b28 commit cb52e29

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ jobs:
88
steps:
99
# Check out, and set up the node/ruby infra
1010
- uses: actions/checkout@v1
11-
- uses: actions/setup-node@v1
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: '14'
1214

1315
# Get local dependencies & test
1416
- run: yarn install

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ cache:
88
matrix:
99
include:
1010
# Normal CI test runs :D
11-
- node_js: "10"
11+
- node_js: "14"
1212

13-
- node_js: "10"
13+
- node_js: "14"
1414
after_script:
1515
- echo "Validating TypeScript definition file"
1616
- yarn build
@@ -23,13 +23,13 @@ matrix:
2323
- yarn flow check
2424

2525
# Checks every example dangerfile can run in `danger runner`.
26-
- node_js: "10"
26+
- node_js: "14"
2727
script:
2828
- yarn build
2929
- node scripts/run-fixtures.js
3030

3131
# Runs both the CI and PR with a custom process to ensure apps like swift/rust work
32-
- node_js: "10.13"
32+
- node_js: "14"
3333
script:
3434
- yarn build
3535
- node distribution/commands/danger-ci.js --process "ruby scripts/danger_runner.rb"

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717

1818
<!-- Your comment above this -->
1919

20+
# 10.8.0
21+
22+
- Feature: `danger local --outputJSON` for [#1177](https://github.com/danger/danger-js/pull/1177) [@orta]
23+
- Fix: Updates `jsonpointer` for [#1174](https://github.com/danger/danger-js/pull/1174) [@unfernandito]
24+
- Fix: Updates `parse-link-header` for CVE-2021-23490 [#1190](https://github.com/danger/danger-js/pull/1190) [@fbartho]
25+
2026
# 10.7.1
2127

2228
- Updates micromatch dependencies for CVE-2021-23440

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "danger",
3-
"version": "10.7.1",
3+
"version": "10.8.0",
44
"description": "Unit tests for Team Culture",
55
"main": "distribution/danger.js",
66
"typings": "distribution/danger.d.ts",
@@ -165,7 +165,7 @@
165165
"parse-diff": "^0.7.0",
166166
"parse-git-config": "^2.0.3",
167167
"parse-github-url": "^1.0.2",
168-
"parse-link-header": "^1.0.1",
168+
"parse-link-header": "^2.0.0",
169169
"pinpoint": "^1.1.0",
170170
"prettyjson": "^1.2.1",
171171
"readline-sync": "^1.4.9",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5305,10 +5305,10 @@ jsonify@~0.0.0:
53055305
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73"
53065306
integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=
53075307

5308-
jsonpointer@^4.0.1:
5309-
version "4.0.1"
5310-
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-4.0.1.tgz#4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"
5311-
integrity sha1-T9kss04OnbPInIYi7PUfm5eMbLk=
5308+
jsonpointer@^5.0.0:
5309+
version "5.0.0"
5310+
resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.0.tgz#f802669a524ec4805fa7389eadbc9921d5dc8072"
5311+
integrity sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==
53125312

53135313
jsonwebtoken@^8.4.0:
53145314
version "8.4.0"
@@ -6790,10 +6790,10 @@ parse-json@^4.0.0:
67906790
error-ex "^1.3.1"
67916791
json-parse-better-errors "^1.0.1"
67926792

6793-
parse-link-header@^1.0.1:
6794-
version "1.0.1"
6795-
resolved "https://registry.yarnpkg.com/parse-link-header/-/parse-link-header-1.0.1.tgz#bedfe0d2118aeb84be75e7b025419ec8a61140a7"
6796-
integrity sha1-vt/g0hGK64S+deewJUGeyKYRQKc=
6793+
parse-link-header@^2.0.0:
6794+
version "2.0.0"
6795+
resolved "https://registry.yarnpkg.com/parse-link-header/-/parse-link-header-2.0.0.tgz#949353e284f8aa01f2ac857a98f692b57733f6b7"
6796+
integrity sha512-xjU87V0VyHZybn2RrCX5TIFGxTVZE6zqqZWMPlIKiSKuWh/X5WZdt+w1Ki1nXB+8L/KtL+nZ4iq+sfI6MrhhMw==
67976797
dependencies:
67986798
xtend "~4.0.1"
67996799

0 commit comments

Comments
 (0)