Skip to content

Commit 7a38d46

Browse files
committed
[#167] Release v0.9
1 parent 4b16a72 commit 7a38d46

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

.npmignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22
node_modules
33
test
44
demo
5+
.idea/
6+
grpc/
57

68
# CI
79
coverage
810
.eslintrc.js
911
.eslintignore
1012
.node-version
1113
checkstyle-results.xml
14+
checkstyle-result.xml
1215
.github
1316
.vscode
1417

CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Changelog
22
All notable changes to Pinpoint Node.js agent will be documented in this file.
33

4-
## [0.9.0-next.1] - 2021-06-10
4+
## [0.9.0-next.3] - 2024-01-11
55
### Added
66
- #86 Express with method name
7-
- #101 middleware code level visibility
8-
<img width="1241" alt="Screen Shot 2021-12-13 at 11 15 20 PM" src="https://user-images.githubusercontent.com/616895/145830104-07774978-f56b-4090-b6e9-eeff0d880945.png">
9-
10-
## [0.9.0-next.0] - 2021-05-27
11-
### Added
7+
- #155 SQL UID
8+
- #140 AsyncLocalStorage above node@16.4
9+
- #150 location and filename and linenumber
1210
- #87 HTTP param
11+
### Fixed
12+
- #101 Nested Async call
1313

1414
## [0.8.3] - 2021-11-19
1515
### Fixed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ PINPOINT_CONTAINER | false | Whether to use docker or kubernetes. If the PINPOIN
6363
PINPOINT_TRACE_EXCLUSION_URL_PATTERN | | comma-separated string. ex) `/health_check,/admin/**` or [Unit tests](https://github.com/pinpoint-apm/pinpoint-node-agent/blob/01fcbdefe5a0ffba9c957bee0da3fb7397638182/test/utils/ant-path-matcher.test.js#L332)
6464
PINPOINT_TRACE_EXCLUSION_URL_CACHE_SIZE | | If the app is designed so that the pathname of the URL is fixed, if the cache size is set, the pathname of the frequently used URL does not match with patterns. In case of using query for pathname like `/user/1000`, cache is unnecessarily. [Unit tests](https://github.com/pinpoint-apm/pinpoint-node-agent/blob/01fcbdefe5a0ffba9c957bee0da3fb7397638182/test/utils/ant-path-matcher.test.js#L447)
6565
PINPOINT_PROFILER_SQL_STAT | false | SQL uid
66+
PINPOINT_TRACE_LOCATION_AND_FILENAME_OF_CALL_SITE | false | CallSite line number and filename
6667

6768
### Agent ID
6869
The agent ID is used as the identifier per the server or node. You need to set the hostname or node identifier(The maximum length is 24) on the server.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"description": "Pinpoint node agent provided by NAVER",
1313
"repository": {
1414
"type": "git",
15-
"url": "https://github.com/pinpoint-apm/pinpoint-node-agent"
15+
"url": "git+https://github.com/pinpoint-apm/pinpoint-node-agent.git"
1616
},
1717
"contributors": [
18-
"Yongseok Kang <feelform@gmail.com> (https://github.com/feelform)"
18+
"Yongseok <feelform@gmail.com> (https://github.com/feelform)"
1919
],
2020
"license": "Apache-2.0",
2121
"bugs": {

0 commit comments

Comments
 (0)