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

Post release automated changes for servicebus releases #18045

Merged
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 10 additions & 0 deletions sdk/servicebus/service-bus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 7.4.0-beta.2 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 7.4.0-beta.1 (2021-10-04)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/servicebus/service-bus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/service-bus",
"sdk-type": "client",
"author": "Microsoft Corporation",
"version": "7.4.0-beta.1",
"version": "7.4.0-beta.2",
"license": "MIT",
"description": "Azure Service Bus SDK for JavaScript",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/servicebus/service-bus/",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/servicebus/service-bus",
"dependencies": {
"@azure/service-bus": "latest",
"@azure/service-bus": "next",
"dotenv": "latest",
"ws": "^7.1.1",
"https-proxy-agent": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicebus/service-bus/samples/v7/javascript/sample.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used in most samples. Retrieve these values from a storage account in the Azure Portal.
# Used in most samples. Retrieve these values from a service-bus namespace in the Azure Portal.
SERVICEBUS_ENDPOINT="<service bus namespace>.servicebus.windows.net"
SERVICEBUS_CONNECTION_STRING="<connection string>"

Expand All @@ -23,4 +23,4 @@ AZURE_CLIENT_ID=<ID of the user/service principal to authenticate as>
AZURE_CLIENT_SECRET=<client secret used to authenticate to Azure AD>

# To run the useProxy sample, set up an HTTP proxy and enter your information:
# HTTP_PROXY=http://localhost:3128
# HTTP_PROXY=http://localhost:3128
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/servicebus/service-bus",
"dependencies": {
"@azure/service-bus": "latest",
"@azure/service-bus": "next",
"dotenv": "latest",
"ws": "^7.1.1",
"https-proxy-agent": "^5.0.0",
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicebus/service-bus/samples/v7/typescript/sample.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used in most samples. Retrieve these values from a storage account in the Azure Portal.
# Used in most samples. Retrieve these values from a service-bus namespace in the Azure Portal.
SERVICEBUS_ENDPOINT="<service bus namespace>.servicebus.windows.net"
SERVICEBUS_CONNECTION_STRING="<connection string>"

Expand All @@ -23,4 +23,4 @@ AZURE_CLIENT_ID=<ID of the user/service principal to authenticate as>
AZURE_CLIENT_SECRET=<client secret used to authenticate to Azure AD>

# To run the useProxy sample, set up an HTTP proxy and enter your information:
# HTTP_PROXY=http://localhost:3128
# HTTP_PROXY=http://localhost:3128
2 changes: 1 addition & 1 deletion sdk/servicebus/service-bus/src/util/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
export const packageJsonInfo = {
name: "@azure/service-bus",
version: "7.4.0-beta.1"
version: "7.4.0-beta.2"
};

/**
Expand Down