@opentelemetry/instrumentation-ioredis 0.27.0 → 0.27.1
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 +15 -0
- package/build/src/version.d.ts +1 -1
- package/build/src/version.js +1 -1
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.27.1](https://www.github.com/open-telemetry/opentelemetry-js-contrib/compare/instrumentation-ioredis-v0.27.0...instrumentation-ioredis-v0.27.1) (2022-01-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* rename lerna's --include-filtered-dependencies option ([#817](https://www.github.com/open-telemetry/opentelemetry-js-contrib/issues/817)) ([cf268e7](https://www.github.com/open-telemetry/opentelemetry-js-contrib/commit/cf268e7a92b7800ad6dbec9ca77466f9ee03ee1a))
|
|
9
|
+
* use localhost for services in CI ([#816](https://www.github.com/open-telemetry/opentelemetry-js-contrib/issues/816)) ([f497313](https://www.github.com/open-telemetry/opentelemetry-js-contrib/commit/f4973133e86549bbca301983085cc67788a10acd))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* devDependencies
|
|
16
|
+
* @opentelemetry/contrib-test-utils bumped from ^0.28.0 to ^0.29.0
|
|
17
|
+
|
|
3
18
|
## [0.27.0](https://www.github.com/open-telemetry/opentelemetry-js-contrib/compare/instrumentation-ioredis-v0.26.0...instrumentation-ioredis-v0.27.0) (2021-11-30)
|
|
4
19
|
|
|
5
20
|
|
package/build/src/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.27.
|
|
1
|
+
export declare const VERSION = "0.27.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/build/src/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentelemetry/instrumentation-ioredis",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.1",
|
|
4
4
|
"description": "OpenTelemetry ioredis automatic instrumentation package.",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"types": "build/src/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"clean": "rimraf build/*",
|
|
16
16
|
"lint": "eslint . --ext .ts",
|
|
17
17
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
18
|
-
"precompile": "tsc --version && lerna run version --scope @opentelemetry/instrumentation-ioredis --include-
|
|
18
|
+
"precompile": "tsc --version && lerna run version --scope @opentelemetry/instrumentation-ioredis --include-dependencies",
|
|
19
19
|
"prewatch": "npm run precompile",
|
|
20
20
|
"version:update": "node ../../../scripts/version-update.js",
|
|
21
21
|
"compile": "npm run version:update && tsc -p .",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"prepare": "npm run compile"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
|
-
"
|
|
26
|
+
"instrumentation",
|
|
27
27
|
"ioredis",
|
|
28
|
-
"redis",
|
|
29
28
|
"nodejs",
|
|
30
|
-
"
|
|
29
|
+
"opentelemetry",
|
|
31
30
|
"profiling",
|
|
32
|
-
"
|
|
31
|
+
"redis",
|
|
32
|
+
"tracing"
|
|
33
33
|
],
|
|
34
34
|
"author": "OpenTelemetry Authors",
|
|
35
35
|
"license": "Apache-2.0",
|
|
@@ -53,11 +53,12 @@
|
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@opentelemetry/api": "1.0.2",
|
|
55
55
|
"@opentelemetry/context-async-hooks": "1.0.1",
|
|
56
|
-
"@opentelemetry/contrib-test-utils": "^0.
|
|
56
|
+
"@opentelemetry/contrib-test-utils": "^0.29.0",
|
|
57
57
|
"@opentelemetry/sdk-trace-base": "1.0.1",
|
|
58
58
|
"@opentelemetry/sdk-trace-node": "1.0.1",
|
|
59
59
|
"@types/mocha": "7.0.2",
|
|
60
60
|
"@types/node": "14.17.9",
|
|
61
|
+
"@types/sinon": "^10.0.6",
|
|
61
62
|
"codecov": "3.8.3",
|
|
62
63
|
"cross-env": "7.0.3",
|
|
63
64
|
"gts": "3.1.0",
|
|
@@ -65,6 +66,7 @@
|
|
|
65
66
|
"mocha": "7.2.0",
|
|
66
67
|
"nyc": "15.1.0",
|
|
67
68
|
"rimraf": "3.0.2",
|
|
69
|
+
"sinon": "^12.0.1",
|
|
68
70
|
"test-all-versions": "5.0.1",
|
|
69
71
|
"ts-mocha": "8.0.0",
|
|
70
72
|
"typescript": "4.3.5"
|
|
@@ -74,5 +76,5 @@
|
|
|
74
76
|
"@opentelemetry/semantic-conventions": "^1.0.0",
|
|
75
77
|
"@types/ioredis": "4.26.6"
|
|
76
78
|
},
|
|
77
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "edfc04cbe3e7faaa365724ddc26bf702b68cc008"
|
|
78
80
|
}
|