Skip to content
This repository was archived by the owner on Nov 19, 2023. It is now read-only.

Commit 500d308

Browse files
committed
version bump 2.0.19 after upgrade
1 parent cf05d13 commit 500d308

File tree

5 files changed

+45
-34
lines changed

5 files changed

+45
-34
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build Workflow
2+
"on":
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
Build:
11+
runs-on: "${{ matrix.os }}"
12+
strategy:
13+
matrix:
14+
os:
15+
- ubuntu-20.04
16+
node-version:
17+
- 16.x
18+
steps:
19+
- name: "Set up Node.js ${{ matrix.node-version }}"
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: "${{ matrix.node-version }}"
23+
- uses: actions/checkout@v2
24+
- run: bash build/travis_install
25+
- run: make
26+
- run: "npm run coverage:codecov"

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![npm version](https://badge.fury.io/js/asyncctx.svg)](https://badge.fury.io/js/asyncctx)
2-
[![Build Status](https://api.travis-ci.com/gms1/node-async-context.svg?branch=master)](https://travis-ci.com/gms1/node-async-context)
2+
[![Build Workflow](https://github.com/gms1/node-async-context/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/gms1/node-async-context/actions/workflows/build.yml)
33
[![Coverage Status](https://codecov.io/gh/gms1/node-async-context/branch/master/graph/badge.svg)](https://codecov.io/gh/gms1/node-async-context)
44
[![Dependency Status](https://david-dm.org/gms1/node-async-context.svg)](https://david-dm.org/gms1/node-async-context)
55
[![Known Vulnerabilities](https://snyk.io/test/github/gms1/node-async-context/badge.svg)](https://snyk.io/test/github/gms1/node-async-context)
@@ -69,7 +69,7 @@ process.nextTick(() => {
6969

7070
| Release | Notes |
7171
| --------- | --------------------------------------------------------------------------------------- |
72-
| 2.0.18 | deprecated in favour of AsyncLocalStorage |
72+
| 2.0.18-19 | deprecated in favour of AsyncLocalStorage |
7373
| 2.0.12-17 | maintenance release, nodejs 14 support |
7474
| 2.0.11 | #54: fixed memory leak for chaining asynchronous calls infinitely; thanks to Reko Tiira |
7575
| 2.0.10 | maintenance release |

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "asyncctx",
3-
"version": "2.0.18",
3+
"version": "2.0.19",
44
"description": "an asynchronous execution context for TypeScript/JavaScript",
55
"main": "./index.js",
66
"types": "./index.d.ts",
@@ -47,28 +47,28 @@
4747
"prettier": "prettier --write 'src/**/*.ts'"
4848
},
4949
"devDependencies": {
50-
"@compodoc/compodoc": "^1.1.14",
51-
"@types/fs-extra": "^9.0.12",
52-
"@types/jasmine": "^3.8.2",
53-
"@types/node": "^16.6.1",
54-
"@typescript-eslint/eslint-plugin": "^4.29.2",
55-
"@typescript-eslint/parser": "^4.29.2",
50+
"@compodoc/compodoc": "^1.1.19",
51+
"@types/fs-extra": "^9.0.13",
52+
"@types/jasmine": "^4.0.3",
53+
"@types/node": "^17.0.24",
54+
"@typescript-eslint/eslint-plugin": "^5.19.0",
55+
"@typescript-eslint/parser": "^5.19.0",
5656
"codecov": "^3.8.3",
57-
"eslint": "^7.32.0",
58-
"eslint-config-prettier": "^8.3.0",
59-
"eslint-plugin-deprecation": "^1.2.1",
60-
"eslint-plugin-import": "^2.24.0",
61-
"eslint-plugin-jsdoc": "^36.0.7",
57+
"eslint": "^8.13.0",
58+
"eslint-config-prettier": "^8.5.0",
59+
"eslint-plugin-deprecation": "^1.3.2",
60+
"eslint-plugin-import": "^2.26.0",
61+
"eslint-plugin-jsdoc": "^39.2.2",
6262
"eslint-plugin-no-null": "^1.0.2",
6363
"eslint-plugin-prefer-arrow": "^1.2.3",
64-
"fs-extra": "^10.0.0",
65-
"jasmine": "^3.8.0",
64+
"fs-extra": "^10.1.0",
65+
"jasmine": "^4.1.0",
6666
"jasmine-spec-reporter": "^7.0.0",
6767
"nyc": "^15.1.0",
6868
"prettier": "^1.19.1",
6969
"rimraf": "^3.0.2",
70-
"ts-node": "^10.2.0",
71-
"typescript": "^4.3.5"
70+
"ts-node": "^10.7.0",
71+
"typescript": "^4.6.3"
7272
},
7373
"typescript": {
7474
"definition": "./index.d.ts"

0 commit comments

Comments
 (0)