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] prepare for December release #12797

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
4 changes: 4 additions & 0 deletions sdk/core/abort-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 1.0.2 (2020-12-09)

Updates the `tslib` dependency to version 2.x.

## 1.0.1 (2019-12-04)

Fixes the [bug 6271](https://github.com/Azure/azure-sdk-for-js/issues/6271) that can occur with angular prod builds due to triple-slash directives.
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/abort-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/abort-controller",
"sdk-type": "client",
"version": "1.0.1",
"version": "1.0.2",
"description": "Microsoft Azure SDK for JavaScript - Aborter",
"main": "./dist/index.js",
"module": "dist-esm/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-amqp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 2.0.1 (Unreleased)
## 2.0.1 (2020-12-09)

- Fixes the bug reported in issue [12610](https://github.com/Azure/azure-sdk-for-js/issues/12610).
Previously, `retry` would still sleep one more time after all retry attempts were exhausted before returning.
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/core-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.1.4 (Unreleased)
## 1.1.4 (2020-12-09)

- Updated to use OpenTelemetry 0.10.2 via `@azure/core-tracing`

Expand Down
1 change: 0 additions & 1 deletion sdk/core/core-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@
"dependencies": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-tracing": "1.0.0-preview.9",
"@opentelemetry/api": "^0.10.2",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xirzec Just a sanity check, but we shouldn't be depending on @opentelemetry/api in our packages (except core-tracing), right?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We gotta, since you can't configured known exports in rollup except for direct dependencies.

If you remove this, rollup will die because it can't figure out that "@opentelemetry/api" in its config refers to a transitive dependency. @bterlson tried to fix this in rollup, but ultimately it got too messy for an easy fix.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh interesting, alright, added it back 😢

"tslib": "^2.0.0"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion sdk/core/core-lro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Release History

## 1.0.3 (Unreleased)
## 1.0.3 (2020-12-09)

- Updates the `tslib` dependency to version 2.x.

## 1.0.2 (2020-04-28)

- Moved `@opentelemetry/types` to the `devDependencies`.

## 1.0.1 (2020-02-28)
Expand Down
4 changes: 3 additions & 1 deletion sdk/core/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 1.0.1 (Unreleased)
## 1.0.1 (2020-12-09)

- Updates the `tslib` dependency to version 2.x.

## 1.0.0 (2019-10-29)

Expand Down