Skip to content
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/eventhub/event-hubs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 6.0.3 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 6.0.2 (2026-01-07)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@azure/event-hubs",
"sdk-type": "client",
"version": "6.0.2",
"version": "6.0.3",
"description": "Azure Event Hubs SDK for JS.",
"author": "Microsoft Corporation",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions sdk/eventhub/event-hubs/samples/v6/javascript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ npm install
node sendBufferedEvents.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env EVENTHUB_FQDN="<eventhub fqdn>" EVENTHUB_NAME="<eventhub name>" node sendBufferedEvents.js
npx cross-env EVENTHUB_FQDN="<eventhub fqdn>" EVENTHUB_NAME="<eventhub name>" node sendBufferedEvents.js
```

## Next Steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@
"rhea-promise": "^3.0.0",
"@azure/core-amqp": "^4.3.2",
"@azure/keyvault-secrets": "^4.9.0",
"@azure/identity": "^4.8.0",
"@azure/identity": "^4.13.0",
"ws": "^8.2.0",
"https-proxy-agent": "^7.0.0"
},
"devDependencies": {
"cross-env": "latest"
}
}
4 changes: 2 additions & 2 deletions sdk/eventhub/event-hubs/samples/v6/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ npm run build
node dist/sendBufferedEvents.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env EVENTHUB_FQDN="<eventhub fqdn>" EVENTHUB_NAME="<eventhub name>" node dist/sendBufferedEvents.js
npx cross-env EVENTHUB_FQDN="<eventhub fqdn>" EVENTHUB_NAME="<eventhub name>" node dist/sendBufferedEvents.js
```

## Next Steps
Expand Down
7 changes: 4 additions & 3 deletions sdk/eventhub/event-hubs/samples/v6/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,15 @@
"rhea-promise": "^3.0.0",
"@azure/core-amqp": "^4.3.2",
"@azure/keyvault-secrets": "^4.9.0",
"@azure/identity": "^4.8.0",
"@azure/identity": "^4.13.0",
"ws": "^8.2.0",
"https-proxy-agent": "^7.0.0"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"@types/node": "^20.0.0",
"typescript": "~5.8.2",
"rimraf": "latest"
"cross-env": "latest",
"rimraf": "latest",
"typescript": "~5.9.3"
}
}
2 changes: 1 addition & 1 deletion sdk/eventhub/event-hubs/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/event-hubs",
version: "6.0.2",
version: "6.0.3",
};

/**
Expand Down
Loading