@opentelemetry/instrumentation-tedious 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -1
- package/LICENSE +1 -1
- package/README.md +1 -1
- package/build/src/version.d.ts +1 -1
- package/build/src/version.js +1 -1
- package/package.json +14 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/open-telemetry/opentelemetry-js-contrib/compare/instrumentation-tedious-v0.1.0...instrumentation-tedious-v0.2.0) (2022-05-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add supported node versions for all packages ([#973](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/973)) ([baaacbd](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/baaacbdd35ca4baab0afae64647aa8c0380ee4b7))
|
|
9
|
+
* use Otel SDK 1.2/0.28 ([#984](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/984)) ([098c2ed](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/098c2ed6f9c5ab7bd865685018c0777245aab3b7))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* remove forcing RUN_MSSQL_TESTS to be true in tests ([#965](https://github.com/open-telemetry/opentelemetry-js-contrib/issues/965)) ([bcbdeb7](https://github.com/open-telemetry/opentelemetry-js-contrib/commit/bcbdeb7231e2ad208421c8c61085cec881dc0867))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Dependencies
|
|
18
|
+
|
|
19
|
+
* The following workspace dependencies were updated
|
|
20
|
+
* devDependencies
|
|
21
|
+
* @opentelemetry/contrib-test-utils bumped from 0.29.0 to ^0.30.0
|
|
22
|
+
|
|
3
23
|
## 0.1.0 (2022-01-24)
|
|
4
24
|
|
|
5
25
|
|
|
@@ -14,4 +34,4 @@
|
|
|
14
34
|
|
|
15
35
|
* The following workspace dependencies were updated
|
|
16
36
|
* devDependencies
|
|
17
|
-
* @opentelemetry/contrib-test-utils bumped from ^0.28.0 to ^0.29.0
|
|
37
|
+
* @opentelemetry/contrib-test-utils bumped from ^0.28.0 to ^0.29.0
|
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright [
|
|
189
|
+
Copyright [2022] OpenTelemetry Authors
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
This module provides automatic instrumentation for [`tedious`](https://github.com/tediousjs/tedious).
|
|
7
7
|
|
|
8
8
|
For automatic instrumentation see the
|
|
9
|
-
[`@opentelemetry/sdk-trace-node`](https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-node) package.
|
|
9
|
+
[`@opentelemetry/sdk-trace-node`](https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-sdk-trace-node) package.
|
|
10
10
|
|
|
11
11
|
Compatible with OpenTelemetry JS API and SDK `1.0+`.
|
|
12
12
|
|
package/build/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.2.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/build/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentelemetry/instrumentation-tedious",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "OpenTelemetry instrumentation for `tedious`",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/src/index.d.ts",
|
|
7
7
|
"repository": "open-telemetry/opentelemetry-js-contrib",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"clean": "rimraf build/*",
|
|
10
|
-
"
|
|
11
|
-
"compile": "npm run version:update && tsc -p .",
|
|
10
|
+
"compile": "tsc -p .",
|
|
12
11
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
13
12
|
"lint": "eslint . --ext .ts",
|
|
14
|
-
"precompile": "tsc --version && lerna run version --scope @opentelemetry/instrumentation-tedious --include-dependencies",
|
|
13
|
+
"precompile": "tsc --version && lerna run version:update --scope @opentelemetry/instrumentation-tedious --include-dependencies",
|
|
15
14
|
"prewatch": "npm run precompile",
|
|
16
15
|
"prepare": "npm run compile",
|
|
17
16
|
"tdd": "npm run test -- --watch-extensions ts --watch",
|
|
@@ -34,7 +33,7 @@
|
|
|
34
33
|
"author": "OpenTelemetry Authors",
|
|
35
34
|
"license": "Apache-2.0",
|
|
36
35
|
"engines": {
|
|
37
|
-
"node": ">=
|
|
36
|
+
"node": ">=10.0.0"
|
|
38
37
|
},
|
|
39
38
|
"files": [
|
|
40
39
|
"build/src/**/*.js",
|
|
@@ -45,29 +44,28 @@
|
|
|
45
44
|
"access": "public"
|
|
46
45
|
},
|
|
47
46
|
"peerDependencies": {
|
|
48
|
-
"@opentelemetry/api": "^1.0.
|
|
47
|
+
"@opentelemetry/api": "^1.0.0"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@opentelemetry/api": "1.0.
|
|
52
|
-
"@opentelemetry/context-async-hooks": "1.0
|
|
53
|
-
"@opentelemetry/contrib-test-utils": "^0.
|
|
54
|
-
"@opentelemetry/sdk-trace-base": "1.0
|
|
50
|
+
"@opentelemetry/api": "^1.0.0",
|
|
51
|
+
"@opentelemetry/context-async-hooks": "1.2.0",
|
|
52
|
+
"@opentelemetry/contrib-test-utils": "^0.30.0",
|
|
53
|
+
"@opentelemetry/sdk-trace-base": "1.2.0",
|
|
55
54
|
"@types/mocha": "7.0.2",
|
|
56
|
-
"@types/node": "
|
|
57
|
-
"codecov": "3.8.3",
|
|
55
|
+
"@types/node": "16.11.21",
|
|
58
56
|
"gts": "3.1.0",
|
|
59
|
-
"mocha": "
|
|
57
|
+
"mocha": "7.2.0",
|
|
60
58
|
"nyc": "15.1.0",
|
|
61
59
|
"rimraf": "3.0.2",
|
|
62
|
-
"tedious": "
|
|
60
|
+
"tedious": "14.1.0",
|
|
63
61
|
"test-all-versions": "5.0.1",
|
|
64
62
|
"ts-mocha": "8.0.0",
|
|
65
63
|
"typescript": "4.3.5"
|
|
66
64
|
},
|
|
67
65
|
"dependencies": {
|
|
68
|
-
"@opentelemetry/instrumentation": "^0.
|
|
66
|
+
"@opentelemetry/instrumentation": "^0.28.0",
|
|
69
67
|
"@opentelemetry/semantic-conventions": "^1.0.0",
|
|
70
68
|
"@types/tedious": "^4.0.6"
|
|
71
69
|
},
|
|
72
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "f89da7d080d2aaecacd8728d647e8eff4c9248a9"
|
|
73
71
|
}
|