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

## 1.0.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 1.0.0 (2025-09-30)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/storagediscovery/arm-storagediscovery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@azure/arm-storagediscovery",
"version": "1.0.0",
"version": "1.0.1",
"description": "A generated SDK for StorageDiscoveryClient.",
"engines": {
"node": ">=20.0.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function createStorageDiscovery(
const endpointUrl =
options.endpoint ?? getArmEndpoint(options.cloudSetting) ?? "https://management.azure.com";
const prefixFromOptions = options?.userAgentOptions?.userAgentPrefix;
const userAgentInfo = `azsdk-js-arm-storagediscovery/1.0.0`;
const userAgentInfo = `azsdk-js-arm-storagediscovery/1.0.1`;
Copy link
Preview

Copilot AI Oct 2, 2025

Choose a reason for hiding this comment

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

[nitpick] The SDK version is hard-coded here and must be manually kept in sync with package.json. To reduce risk of divergence, consider sourcing the version from a central constant (e.g., generated from package.json at build time) or using an existing internal version utility if available, so future version bumps do not require parallel manual edits.

Copilot uses AI. Check for mistakes.

const userAgentPrefix = prefixFromOptions
? `${prefixFromOptions} azsdk-js-api ${userAgentInfo}`
: `azsdk-js-api ${userAgentInfo}`;
Expand Down
Loading