-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Post release automated changes for cosmosdb releases #36704
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
base: main
Are you sure you want to change the base?
Post release automated changes for cosmosdb releases #36704
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR contains post-release automated changes for the @azure/cosmos package version 4.8.1. The changes prepare the repository for the next development cycle after the 4.8.0 release.
Key changes:
- Version bumped from 4.8.0 to 4.8.1 in package.json and constants.ts
- Added new unreleased section in CHANGELOG.md for 4.8.1
- Automated code formatting applied to sample files (trailing commas, spacing, line breaks)
- Dependency updates: @azure/identity upgraded from ^4.8.0 to ^4.13.0, TypeScript upgraded from ~5.8.2 to ~5.9.3
- Added cross-env as devDependency to sample packages
- Removed FabricAadScopeOverride sample files from both TypeScript and JavaScript
- Updated README files to reflect current sample inventory
Reviewed Changes
Copilot reviewed 14 out of 14 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| sdk/cosmosdb/cosmos/src/common/constants.ts | Updates SDK version constant from 4.8.0 to 4.8.1 |
| sdk/cosmosdb/cosmos/package.json | Bumps package version to 4.8.1 |
| sdk/cosmosdb/cosmos/CHANGELOG.md | Adds unreleased 4.8.1 section with standard subsections |
| sdk/cosmosdb/cosmos/samples/v4/typescript/src/ThroughputBucket.ts | Applies automated formatting (trailing commas, spacing) |
| sdk/cosmosdb/cosmos/samples/v4/typescript/src/FabricAadScopeOverride.ts | Removes FabricAadScopeOverride sample |
| sdk/cosmosdb/cosmos/samples/v4/typescript/src/Data/Families.json | Removes trailing blank line |
| sdk/cosmosdb/cosmos/samples/v4/typescript/src/ContainerManagement.ts | Condenses multi-line query chain to single line |
| sdk/cosmosdb/cosmos/samples/v4/typescript/package.json | Updates @azure/identity to ^4.13.0, TypeScript to ~5.9.3, adds cross-env |
| sdk/cosmosdb/cosmos/samples/v4/typescript/README.md | Updates sample table to add PriorityLevel and ThroughputBucket entries |
| sdk/cosmosdb/cosmos/samples/v4/javascript/package.json | Updates @azure/identity to ^4.13.0, adds cross-env |
| sdk/cosmosdb/cosmos/samples/v4/javascript/ThroughputBucket.js | Applies automated formatting (trailing commas, spacing) |
| sdk/cosmosdb/cosmos/samples/v4/javascript/README.md | Updates sample table to add PriorityLevel and ThroughputBucket entries |
| sdk/cosmosdb/cosmos/samples/v4/javascript/FabricAadScopeOverride.js | Removes FabricAadScopeOverride sample |
| sdk/cosmosdb/cosmos/samples/v4/javascript/Data/Families.json | Removes trailing blank line |
| | [HierarchicalPartitioning.ts][hierarchicalpartitioning] | Shows various operations on containers with Hierarchical Partitioning. | | ||
| | [IndexManagement.ts][indexmanagement] | Shows various ways to manage indexing items or changing container index policies. | | ||
| | [ItemManagement.ts][itemmanagement] | Demonstrates item creation, read, delete and reading all items belonging to a container. | | ||
| | [PriorityLevel.ts][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations Shows how Low/High priority levels affect request throttling behavior | |
Copilot
AI
Nov 20, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing period after 'operations'. The description should read: 'Demonstrates using Priority Level support with various Cosmos DB operations. Shows how Low/High priority levels affect request throttling behavior'
| | [PriorityLevel.ts][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations Shows how Low/High priority levels affect request throttling behavior | | |
| | [PriorityLevel.ts][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations. Shows how Low/High priority levels affect request throttling behavior | |
| | [HierarchicalPartitioning.js][hierarchicalpartitioning] | Shows various operations on containers with Hierarchical Partitioning. | | ||
| | [IndexManagement.js][indexmanagement] | Shows various ways to manage indexing items or changing container index policies. | | ||
| | [ItemManagement.js][itemmanagement] | Demonstrates item creation, read, delete and reading all items belonging to a container. | | ||
| | [PriorityLevel.js][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations Shows how Low/High priority levels affect request throttling behavior | |
Copilot
AI
Nov 20, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing period after 'operations'. The description should read: 'Demonstrates using Priority Level support with various Cosmos DB operations. Shows how Low/High priority levels affect request throttling behavior'
| | [PriorityLevel.js][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations Shows how Low/High priority levels affect request throttling behavior | | |
| | [PriorityLevel.js][prioritylevel] | Demonstrates using Priority Level support with various Cosmos DB operations. Shows how Low/High priority levels affect request throttling behavior | |
Post release automated changes for azure-cosmos