This repository was archived by the owner on Nov 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -13,34 +13,34 @@ cache:
1313matrix :
1414 include :
1515 - name : ' deploy'
16- node_js : ' 10 '
16+ node_js : ' 12 '
1717 script : npm pack
1818 after_success :
1919 - npm install -g @zeus-ci/cli
2020 - zeus upload -t "application/tar+npm" *.tgz
2121 - name : ' lint and codecov'
22- node_js : ' 10 '
22+ node_js : ' 12 '
2323 script :
2424 - yarn lint
2525 - yarn codecov
26+ - name : ' unit tests [node v12]'
27+ node_js : ' 12'
28+ script : yarn test
2629 - name : ' unit tests [node v10]'
2730 node_js : ' 10'
2831 script : yarn test
2932 - name : ' unit tests [node v8]'
3033 node_js : ' 8'
3134 script : yarn test
32- - name : ' unit tests [node v6 ]'
33- node_js : ' 6 '
34- script : yarn test
35+ - name : ' integration tests [node v12 ]'
36+ node_js : ' 12 '
37+ script : yarn test:integration
3538 - name : ' integration tests [node v10]'
3639 node_js : ' 10'
3740 script : yarn test:integration
3841 - name : ' integration tests [node v8]'
3942 node_js : ' 8'
4043 script : yarn test:integration
41- - name : ' integration tests [node v6]'
42- node_js : ' 6'
43- script : yarn test:integration
4444
4545notifications :
4646 webhooks :
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## v1.10.1
3+ ## v1.11.0
4+
5+ ** This release sets ` node.engine: >=8 ` which makes it incompatible with Node v6**
6+ If you need to support Node v6, please pin your dependency to ` 1.10.0 `
7+ and use selective version resolution: https://classic.yarnpkg.com/en/docs/selective-version-resolutions/
48
59- meta: Bump sentry-cli to ` 1.52.2 `
10+ - meta: Drop support for ` node v6 ` due to new ` sentry-cli ` requiring ` node >=8 `
11+ - chore: Fix setCommits types (#169 )
612
713## v1.10.0
814
Original file line number Diff line number Diff line change 1010 "main" : " src/index.js" ,
1111 "types" : " index.d.ts" ,
1212 "engines" : {
13- "node" : " >= 6.0.0 "
13+ "node" : " >= 8 "
1414 },
1515 "dependencies" : {
1616 "@sentry/cli" : " ^1.52.2"
You can’t perform that action at this time.
0 commit comments