Skip to content

Commit

Permalink
v0.10.0 proposal (open-telemetry#199)
Browse files Browse the repository at this point in the history
* chore: gitignore

* chore: tmp

* chore: upgrading to ver. 0.11.0, few small fixes

* chore: changelog v0.10.0

* chore: renaming package name "plugins-node-all" to "plugins-node-core-and-contrib"

* chore: fixing react plugin tests

* chore: updating changelog

* chore: updating changelog

* chore: renaming plugins-node-all to plugins-node-core-and-contrib
  • Loading branch information
obecny committed Sep 9, 2020
1 parent b856e10 commit 6430737
Show file tree
Hide file tree
Showing 52 changed files with 296 additions and 448 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,3 @@ package.json.lerna_backup

*.iml
.idea

39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,45 @@ All notable changes to this project will be documented in this file.

## Unreleased

## 0.10.0

#### :bug: Bug Fix
* [#186](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/186) [size/XS] fix: fixes broken readme links ([@michaelgoin](https://github.com/michaelgoin))

#### :tada: New Plugins
* [#171](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/171) feat: Hapi auto-instrumentation ([@carolinee21](https://github.com/carolinee21))
* [#144](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/144) feat: adding Koa instrumentation ([@carolinee21](https://github.com/carolinee21))

#### :rocket: Enhancement
* Other
* [#183](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/183) [mysql] implement semantic conventions ([@naseemkullah](https://github.com/naseemkullah))
* [#196](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/196) fix: new version with TextMapPropagator interface ([@jufab](https://github.com/jufab))
* [#184](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/184) chore: moved plugins-node-all into contrib repo from opentelemetry-js ([@michaelgoin](https://github.com/michaelgoin))
* [#187](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/187) [mongodb] implement semantic db conventions ([@naseemkullah](https://github.com/naseemkullah))
* [#172](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/172) [Plugin User Interaction]: Improve causality of spans from bubbled events ([@johnbley](https://github.com/johnbley))
* [#164](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/164) feat: Add React Plugin ([@thgao](https://github.com/thgao))
* [#170](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/170) fix: various compilation errors ([@naseemkullah](https://github.com/naseemkullah))
* `opentelemetry-test-utils`
* [#167](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/167) ioredis and redis DB semantic conventions ([@naseemkullah](https://github.com/naseemkullah))

#### :house: Internal
* [#194](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/194) Ioredis cleanup ([@naseemkullah](https://github.com/naseemkullah))
* [#195](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/195) redis cleanup ([@naseemkullah](https://github.com/naseemkullah))
* [#192](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/192) Handful of document-load fixes ([@johnbley](https://github.com/johnbley))
* [#191](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/191) Zone.js fixed failing build ([@obecny](https://github.com/obecny))
* [#174](https://github.com/open-telemetry/opentelemetry-js-contrib/pull/174) feat(opentelemetry-plugin-pg): omit pg.values by default ([@sergioregueira](https://github.com/sergioregueira))

#### Committers: 9
* Bartlomiej Obecny ([@obecny](https://github.com/obecny))
* John Bley ([@johnbley](https://github.com/johnbley))
* Julien Fabre ([@jufab](https://github.com/jufab))
* Michael Goin ([@michaelgoin](https://github.com/michaelgoin))
* Naseem ([@naseemkullah](https://github.com/naseemkullah))
* Sergio Regueira ([@sergioregueira](https://github.com/sergioregueira))
* Shivkanya Andhare ([@shivkanya9146](https://github.com/shivkanya9146))
* Tina Gao ([@thgao](https://github.com/thgao))
* [@carolinee21](https://github.com/carolinee21)

## 0.9.0

#### :rocket: (Enhancement)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ OpenTelemetry can collect tracing data automatically using plugins. Vendors/User

Multiple plugins may be leveraged via metapackages.

- [@opentelemetry/plugins-node-all][otel-plugins-node-all] - all officially supported core and contrib plugins.
- [@opentelemetry/plugins-node-core-and-contrib][otel-plugins-node-core-and-contrib] - all officially supported core and contrib plugins.

## Contributing

Expand Down Expand Up @@ -111,4 +111,4 @@ Apache 2.0 - See [LICENSE][license-url] for more information.
[otel-plugin-user-interaction]: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/master/plugins/web/opentelemetry-plugin-user-interaction
[otel-plugin-xml-http-request]: https://github.com/open-telemetry/opentelemetry-js/tree/master/packages/opentelemetry-plugin-xml-http-request
[otel-plugin-express]: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/master/plugins/node/opentelemetry-plugin-express
[otel-plugins-node-all]: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/master/metapackages/plugins-node-all
[otel-plugins-node-core-and-contrib]: https://github.com/open-telemetry/opentelemetry-js-contrib/tree/master/metapackages/plugins-node-core-and-contrib
14 changes: 7 additions & 7 deletions examples/dns/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dns-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of DNS integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand All @@ -26,12 +26,12 @@
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/exporter-jaeger": "^0.10.1",
"@opentelemetry/exporter-zipkin": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-dns": "^0.9.0",
"@opentelemetry/tracing": "^0.10.1"
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-dns": "^0.10.0",
"@opentelemetry/tracing": "^0.11.0"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js#readme",
"devDependencies": {
Expand Down
16 changes: 8 additions & 8 deletions examples/express/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "express-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of Express integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand All @@ -28,13 +28,13 @@
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/exporter-jaeger": "^0.10.1",
"@opentelemetry/exporter-zipkin": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-express": "^0.9.0",
"@opentelemetry/plugin-http": "^0.10.1",
"@opentelemetry/tracing": "^0.10.1",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-express": "^0.10.0",
"@opentelemetry/plugin-http": "^0.11.0",
"@opentelemetry/tracing": "^0.11.0",
"axios": "^0.19.0",
"express": "^4.17.1"
},
Expand Down
14 changes: 7 additions & 7 deletions examples/grpc-census-prop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-census-prop-example",
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of using propagator-grpc-census-binary",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -34,12 +34,12 @@
"@opencensus/instrumentation-grpc": "0.0.21",
"@opencensus/nodejs": "0.0.21",
"@opencensus/propagation-binaryformat": "0.0.21",
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/core": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-grpc": "^0.10.1",
"@opentelemetry/propagator-grpc-census-binary": "^0.9.0",
"@opentelemetry/tracing": "^0.10.1",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/core": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-grpc": "^0.11.0",
"@opentelemetry/propagator-grpc-census-binary": "^0.10.0",
"@opentelemetry/tracing": "^0.11.0",
"grpc": "^1.24.2",
"node-pre-gyp": "0.12.0"
},
Expand Down
44 changes: 0 additions & 44 deletions examples/grpc_dynamic_codegen/package.json

This file was deleted.

16 changes: 8 additions & 8 deletions examples/hapi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hapi-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of Hapi auto-instrumentation with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -32,13 +32,13 @@
},
"dependencies": {
"@hapi/hapi": "^19.2.0",
"@opentelemetry/api": "^0.10.2",
"@opentelemetry/exporter-jaeger": "^0.10.2",
"@opentelemetry/exporter-zipkin": "^0.10.2",
"@opentelemetry/hapi-instrumentation": "^0.9.0",
"@opentelemetry/node": "^0.10.2",
"@opentelemetry/plugin-http": "^0.9.0",
"@opentelemetry/tracing": "^0.10.2",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/hapi-instrumentation": "^0.10.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-http": "^0.11.0",
"@opentelemetry/tracing": "^0.11.0",
"axios": "^0.19.0"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib#readme",
Expand Down
12 changes: 6 additions & 6 deletions examples/ioredis/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ioredis-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of HTTP integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand All @@ -28,11 +28,11 @@
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/exporter-jaeger": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-ioredis": "^0.9.0",
"@opentelemetry/tracing": "^0.10.1",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-ioredis": "^0.10.0",
"@opentelemetry/tracing": "^0.11.0",
"ioredis": "^4.14.1"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js#readme"
Expand Down
16 changes: 8 additions & 8 deletions examples/koa/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "koa-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of Koa and @koa/router integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -32,13 +32,13 @@
},
"dependencies": {
"@koa/router": "^9.3.1",
"@opentelemetry/api": "^0.10.2",
"@opentelemetry/exporter-jaeger": "^0.10.2",
"@opentelemetry/exporter-zipkin": "^0.10.2",
"@opentelemetry/node": "^0.10.2",
"@opentelemetry/plugin-http": "^0.10.2",
"@opentelemetry/koa-instrumentation": "^0.9.0",
"@opentelemetry/tracing": "^0.10.2",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/koa-instrumentation": "^0.10.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-http": "^0.11.0",
"@opentelemetry/tracing": "^0.11.0",
"axios": "^0.19.0",
"koa": "^2.13.0"
},
Expand Down
44 changes: 0 additions & 44 deletions examples/mongodb/package.json

This file was deleted.

16 changes: 8 additions & 8 deletions examples/mysql/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mysql-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of mysql integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand All @@ -28,13 +28,13 @@
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/exporter-jaeger": "^0.10.1",
"@opentelemetry/exporter-zipkin": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-http": "^0.10.1",
"@opentelemetry/plugin-mysql": "^0.9.0",
"@opentelemetry/tracing": "^0.10.1",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-http": "^0.11.0",
"@opentelemetry/plugin-mysql": "^0.10.0",
"@opentelemetry/tracing": "^0.11.0",
"mysql": "*"
},
"homepage": "https://github.com/open-telemetry/opentelemetry-js#readme",
Expand Down
18 changes: 9 additions & 9 deletions examples/postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "postgres-example",
"private": true,
"version": "0.9.0",
"version": "0.10.0",
"description": "Example of Postgres integration with OpenTelemetry",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -30,14 +30,14 @@
"url": "https://github.com/open-telemetry/opentelemetry-js/issues"
},
"dependencies": {
"@opentelemetry/api": "^0.10.1",
"@opentelemetry/exporter-jaeger": "^0.10.1",
"@opentelemetry/exporter-zipkin": "^0.10.1",
"@opentelemetry/node": "^0.10.1",
"@opentelemetry/plugin-http": "^0.10.1",
"@opentelemetry/plugin-pg": "^0.9.0",
"@opentelemetry/plugin-pg-pool": "^0.9.0",
"@opentelemetry/tracing": "^0.10.1",
"@opentelemetry/api": "^0.11.0",
"@opentelemetry/exporter-jaeger": "^0.11.0",
"@opentelemetry/exporter-zipkin": "^0.11.0",
"@opentelemetry/node": "^0.11.0",
"@opentelemetry/plugin-http": "^0.11.0",
"@opentelemetry/plugin-pg": "^0.10.0",
"@opentelemetry/plugin-pg-pool": "^0.10.0",
"@opentelemetry/tracing": "^0.11.0",
"express": "^4.17.1",
"pg": "^7.12.1"
},
Expand Down
Loading

0 comments on commit 6430737

Please sign in to comment.