Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core-tracing] Update to OpenTelemetry 0.6 #7998

Merged
merged 38 commits into from
Apr 23, 2020
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
113e8e4
Move to core-tracing to OpenTelemetry 0.5
xirzec Mar 24, 2020
513a49a
Migrate all packages to OpenTelemetry 0.5
xirzec Mar 24, 2020
4b4533c
Bump version of core-tracing
xirzec Mar 24, 2020
d7d5691
Bump cache version
xirzec Mar 24, 2020
37cb01b
Fixup changelog
xirzec Mar 25, 2020
ac2011a
Fix build breaks
xirzec Mar 25, 2020
a06d2e5
Fix named export
xirzec Mar 25, 2020
f2b1a77
Revert using OT noop
xirzec Mar 25, 2020
8e455ba
fix build break
xirzec Mar 25, 2020
3f4d0f4
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Mar 26, 2020
3bb121d
update lockfil
xirzec Mar 26, 2020
2b85d20
Create new tracing interfaces
xirzec Mar 27, 2020
f508508
Try to adopt
xirzec Mar 27, 2020
15d6c1c
Fix build breaks
xirzec Mar 27, 2020
2109b5b
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Mar 27, 2020
e2d872b
Update lockfile
xirzec Mar 27, 2020
5fa208d
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Mar 27, 2020
ad0301d
Update lockfile
xirzec Mar 28, 2020
7cb934f
Merge branch 'master' into OT05
xirzec Mar 28, 2020
5d40a9b
Merge branch 'master' into OT05
xirzec Mar 30, 2020
04e4699
Update lockfile
xirzec Mar 30, 2020
4b49cf7
Fix test break
xirzec Mar 30, 2020
d203333
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Apr 16, 2020
e53ce32
fixup
xirzec Apr 16, 2020
3bbb73c
update lockfile
xirzec Apr 16, 2020
b04875e
Fix identity and search
xirzec Apr 16, 2020
76c875a
Fix form recognizer
xirzec Apr 16, 2020
d96896b
Update min version of core-http
xirzec Apr 17, 2020
00be357
Update to OpenTelemetry 0.6.1
xirzec Apr 17, 2020
3fee5c8
Merge remote-tracking branch 'origin' into pr/xirzec/7998
ramya-rao-a Apr 20, 2020
a01b8eb
Update sdk/core/core-tracing/CHANGELOG.md
xirzec Apr 21, 2020
0831e8b
Update sdk/core/core-tracing/src/utils/cache.ts
xirzec Apr 21, 2020
938ea38
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Apr 22, 2020
1ed0928
Fix merge conflicts
xirzec Apr 22, 2020
e09ff90
Fix broken eventhubs test
xirzec Apr 22, 2020
bd0a000
Ensure datalake depends on latest blob
xirzec Apr 23, 2020
3aed715
Merge remote-tracking branch 'upstream/master' into OT05
xirzec Apr 23, 2020
ab0796a
Update deps
xirzec Apr 23, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 52 additions & 19 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions sdk/appconfiguration/app-configuration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
"@azure/core-asynciterator-polyfill": "^1.0.0",
"@azure/core-http": "^1.0.0",
"@azure/core-paging": "^1.1.0",
"@azure/core-tracing": "1.0.0-preview.7",
"@opentelemetry/types": "^0.2.0",
"@azure/core-tracing": "1.0.0-preview.8",
"@opentelemetry/api": "^0.5.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@azure/identity": "1.1.0-preview1",
"@azure/identity": "1.1.0-preview.2",
ramya-rao-a marked this conversation as resolved.
Show resolved Hide resolved
"@microsoft/api-extractor": "^7.5.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-multi-entry": "^3.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT License.

import { getTracer } from "@azure/core-tracing";
import { Span, SpanOptions, SpanKind, CanonicalCode } from "@opentelemetry/types";
import { Span, SpanOptions, SpanKind, CanonicalCode } from "@opentelemetry/api";

import { RestError } from "@azure/core-http";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { Spanner } from "../src/internal/tracingHelpers";
import { RestError } from "@azure/core-http";
import { getTracer } from "@azure/core-tracing";
import { SpanOptions, SpanKind, CanonicalCode } from "@opentelemetry/types";
import { SpanOptions, SpanKind, CanonicalCode } from "@opentelemetry/api";
import * as assert from "assert";

interface FakeOptions {
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-amqp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
},
"devDependencies": {
"@azure/eslint-plugin-azure-sdk": "^2.0.1",
"@azure/identity": "1.1.0-preview1",
"@azure/identity": "1.1.0-preview.2",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-inject": "^4.0.0",
"@rollup/plugin-json": "^4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/core-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"sideEffects": false,
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-tracing": "1.0.0-preview.7",
"@opentelemetry/types": "^0.2.0",
"@azure/core-tracing": "1.0.0-preview.8",
"@opentelemetry/api": "^0.5.1",
"tslib": "^1.10.0"
},
"devDependencies": {
Expand Down
Loading