Skip to content

Commit 4a61016

Browse files
authored
chore: bump up to 0.8.0 and remove changelog file (#127)
* chore: bump up to 0.8.0 and remove changelog file * ci: bump up GHA
1 parent bf52544 commit 4a61016

File tree

4 files changed

+10
-83
lines changed

4 files changed

+10
-83
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ jobs:
3131
matrix:
3232
node-version: [ 10, 12, 14, 16, 18 ]
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v4
3535
with:
3636
submodules: true
3737

38-
- uses: actions/cache@v2
38+
- uses: actions/cache@v4
3939
with:
4040
path: ~/.npm
4141
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
runs-on: ubuntu-latest
3030
timeout-minutes: 5
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333
with:
3434
submodules: true
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v4
3636
with:
3737
path: ~/.npm
3838
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -70,11 +70,11 @@ jobs:
7070
env:
7171
SW_NODE_VERSION: ${{ matrix.node-version }}
7272
steps:
73-
- uses: actions/checkout@v2
73+
- uses: actions/checkout@v4
7474
with:
7575
submodules: true
7676

77-
- uses: actions/cache@v2
77+
- uses: actions/cache@v4
7878
with:
7979
path: ~/.npm
8080
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

CHANGELOG.md

Lines changed: 2 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,3 @@
1-
# 0.7.0
1+
## Change Logs
22

3-
* Add deadline config for trace request (#118)
4-
5-
# 0.6.0
6-
7-
* Add missing build doc by @kezhenxu94 in https://github.com/apache/skywalking-nodejs/pull/92
8-
* Fix invalid url error in axios plugin by @kezhenxu94 in https://github.com/apache/skywalking-nodejs/pull/93
9-
* Ignore no requests if ignoreSuffix is empty by @michaelzangl in https://github.com/apache/skywalking-nodejs/pull/94
10-
* Escape HTTP method in regexp by @michaelzangl in https://github.com/apache/skywalking-nodejs/pull/95
11-
* docs: grammar improvements by @BFergerson in https://github.com/apache/skywalking-nodejs/pull/97
12-
* fix: entry span url in endponts using Express middleware/router objects by @BFergerson in https://github.com/apache/skywalking-nodejs/pull/96
13-
* chore: use openapi format for endpoint uris by @BFergerson in https://github.com/apache/skywalking-nodejs/pull/98
14-
* AWS DynamoDB, Lambda, SQS and SNS plugins, webpack by @tom-pytel in https://github.com/apache/skywalking-nodejs/pull/100
15-
* Fix nits by @wu-sheng in https://github.com/apache/skywalking-nodejs/pull/101
16-
* Update AxiosPlugin for v1.0+ by @tom-pytel in https://github.com/apache/skywalking-nodejs/pull/102
17-
18-
# 0.5.1
19-
- Fix `sw` header is not validated and might cause service unavailable. (#90)
20-
21-
# 0.5.0
22-
- Bump up grpc-node to 1.6.7 to fix CVE-2022-25878 (#85)
23-
- Fix issue #9165 express router entry duplicated (#84)
24-
- Fix skywalking s3 upload error #8824 (#82)
25-
- Improved ignore path regex (#81)
26-
- Upgrade data collect protocol (#78)
27-
- Fix wrong instance properties (#77)
28-
- Fix wrong command in release doc (#76)
29-
30-
# 0.4.0
31-
32-
- Fix mysql2 plugin install error. (#74)
33-
- Update IORedis Plugin, fill `dbinstance` tag as host if `condition.select` doesn't exist. (#73)
34-
- Experimental AWS Lambda Function support. (#70)
35-
- Upgrade dependencies to fix vulnerabilities. (#68)
36-
- Add lint pre-commit hook and migrate to eslint. (#66, #67)
37-
- Bump up gRPC version, and use its new release repository. (#65)
38-
- Regard `baseURL` when in Axios Plugin. (#63)
39-
- Add an API to access the trace id. (#60)
40-
- Use agent test tool snapshot Docker image instead of building in CI. (#59)
41-
- Wrapped IORedisPlugin call in try/catch. (#58)
42-
43-
# 0.3.0
44-
45-
- Add ioredis plugin. (#53)
46-
- Endpoint cold start detection and marking. (#52)
47-
- Add mysql2 plugin. (#54)
48-
- Add AzureHttpTriggerPlugin. (#51)
49-
- Add Node 15 into test matrix. (#45)
50-
- Segment reference and reporting overhaul. (#50)
51-
- Add http ignore by method. (#49)
52-
- Add secure connection option. (#48)
53-
- BugFix: wrong context during many async spans. (#46)
54-
- Add Node Mongoose Plugin. (#44)
55-
56-
# 0.2.0
57-
58-
- Add AMQPLib plugin (RabbitMQ). (#34)
59-
- Add MongoDB plugin. (#33)
60-
- Add PgPlugin - PosgreSQL. (#31)
61-
- Add MySQLPlugin to plugins. (#30)
62-
- Add http protocol of host to http plugins. (#28)
63-
- Add tag `http.method` to plugins. (#26)
64-
- Bugfix: child spans created on immediate `cb` from op. (#41)
65-
- Bugfix: async and preparing child entry/exit. (#36)
66-
- Bugfix: tsc error of dist lib. (#24)
67-
- Bugfix: AxiosPlugin async() / resync(). (#21)
68-
- Bugfix: some requests of express / axios are not close correctly. (#20)
69-
- Express plugin uses http wrap explicitly if http plugin disabled. (#42)
70-
71-
# 0.1.0
72-
73-
- Initialize project core codes.
74-
- Built-in http/https plugin.
75-
- Express plugin.
76-
- Axios plugin.
3+
Head to the [release page](https://github.com/apache/skywalking-nodejs/releases) for the detailed changes.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skywalking-backend-js",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "The NodeJS agent for Apache SkyWalking",
55
"homepage": "skywalking.apache.org",
66
"main": "lib/index.js",
@@ -16,7 +16,7 @@
1616
"test": "DEBUG=testcontainers* jest",
1717
"format": "prettier --write \"src/**/*.ts\"",
1818
"clean": "(rm -rf src/proto || true) && (rm -rf src/proto || true) && (rm -rf lib || true)",
19-
"package-src": "tar -zcvf skywalking-nodejs-src-$npm_package_version.tgz --exclude bin --exclude .git --exclude .idea --exclude .DS_Store --exclude .github --exclude node_modules --exclude skywalking-nodejs-src-$npm_package_version.tgz .",
19+
"package-src": "touch skywalking-nodejs-src-$npm_package_version.tgz && tar -zcvf skywalking-nodejs-src-$npm_package_version.tgz --exclude bin --exclude .git --exclude .idea --exclude .DS_Store --exclude .github --exclude node_modules --exclude skywalking-nodejs-src-$npm_package_version.tgz .",
2020
"release-src": "npm run prepare && npm run package-src && gpg --batch --yes --armor --detach-sig skywalking-nodejs-src-$npm_package_version.tgz && shasum -a 512 skywalking-nodejs-src-$npm_package_version.tgz > skywalking-nodejs-src-$npm_package_version.tgz.sha512"
2121
},
2222
"files": [

0 commit comments

Comments
 (0)