Skip to content

Commit 2320807

Browse files
Merge branch 'main' into ayushhgarg/regrbatch
2 parents 70defd4 + 944d880 commit 2320807

97 files changed

Lines changed: 15891 additions & 207 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@
818818
/.github/CODEOWNERS @lmazuel @kashifkhan @Azure/azure-sdk-eng
819819
/.github/copilot-instructions.md @l0lawrence @praveenkuttappan @maririos
820820
/.github/prompts/ @mccoyp @l0lawrence @benbp
821-
/.github/skills/ @mccoyp @l0lawrence @benbp
821+
/.github/skills/ @mccoyp @l0lawrence @benbp @Azure/azsdk-cli
822822
/sdk/pullrequest.yml @danieljurek @mikeharder @benbp
823823

824824
/.config/1espt/ @benbp @mikeharder

eng/emitter-package-lock.json

Lines changed: 181 additions & 134 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/emitter-package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
"@typespec/streams": "~0.83.0",
1515
"@typespec/xml": "~0.83.0",
1616
"@typespec/openapi3": "1.13.0",
17-
"@typespec/http-client-python": "^0.31.1",
18-
"@azure-tools/openai-typespec": "1.20.0",
19-
"@azure-tools/typespec-autorest": "~0.69.0",
17+
"@typespec/http-client-python": "^0.32.0",
18+
"@azure-tools/openai-typespec": "1.20.1",
19+
"@azure-tools/typespec-autorest": "~0.69.1",
2020
"@azure-tools/typespec-azure-core": "~0.69.0",
21-
"@azure-tools/typespec-azure-resource-manager": "~0.69.0",
22-
"@azure-tools/typespec-azure-rulesets": "~0.69.0",
21+
"@azure-tools/typespec-azure-resource-manager": "~0.69.1",
22+
"@azure-tools/typespec-azure-rulesets": "~0.69.1",
2323
"@azure-tools/typespec-client-generator-core": "~0.69.0",
2424
"@azure-tools/typespec-liftr-base": "0.14.0"
2525
}

sdk/cosmos/azure-cosmos/api.md

Lines changed: 5392 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
apiMdSha256: de3b8c0f2a0405fac7152d562c982bf98bf7bb546c46f05e39164574e47f7f7a
2+
parserVersion: 0.3.28
3+
pythonVersion: 3.13.14
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
{
22
"ignoreWords": [
3+
"acked",
4+
"activityid",
35
"hdrh",
46
"hdrhistogram",
57
"dedup",
68
"deduped",
79
"deduping",
810
"dedupe",
911
"dedups",
12+
"llsn",
1013
"perfdb",
1114
"perfresults",
1215
"pkrange",
1316
"ppcb",
1417
"reindexing",
18+
"rerank",
1519
"reranker",
16-
"toctou"
20+
"responsecontinuationtokenlimitinkb",
21+
"toctou",
22+
"ufffd"
1723
]
1824
}

sdk/cosmos/azure-cosmos/tests/test_crud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ def test_get_resource_with_dictionary_and_object(self):
19821982
def test_delete_all_items_by_partition_key(self):
19831983
# create container via setup client (control-plane)
19841984
created_collection = self._create_container_for_test(
1985-
container_id='test_delete_all_items_by_partition_key ' + str(uuid.uuid4()),
1985+
container_id='test_delete_all_items_by_partition_key_' + str(uuid.uuid4()),
19861986
partition_key=PartitionKey(path='/pk', kind='Hash')
19871987
)
19881988
# Create two partition keys

sdk/cosmos/azure-cosmos/tests/test_crud_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1726,7 +1726,7 @@ async def test_get_resource_with_dictionary_and_object_async(self):
17261726
async def test_delete_all_items_by_partition_key_async(self):
17271727
# create container via setup client (control-plane)
17281728
created_collection = await self._create_container_for_test(
1729-
container_id='test_delete_all_items_by_partition_key ' + str(uuid.uuid4()),
1729+
container_id='test_delete_all_items_by_partition_key_' + str(uuid.uuid4()),
17301730
partition_key=PartitionKey(path='/pk', kind='Hash')
17311731
)
17321732
# Create two partition keys

sdk/cosmos/azure-cosmos/tests/test_crud_response_payload_on_write_disabled.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2638,7 +2638,7 @@ def test_delete_all_items_by_partition_key(self):
26382638

26392639
# create container via setup client (control-plane)
26402640
created_collection = key_db.create_container(
2641-
id='test_delete_all_items_by_partition_key ' + str(uuid.uuid4()),
2641+
id='test_delete_all_items_by_partition_key_' + str(uuid.uuid4()),
26422642
partition_key=PartitionKey(path='/pk', kind='Hash')
26432643
)
26442644
data_collection = data_db.get_container_client(created_collection.id)

sdk/cosmos/azure-cosmos/tests/test_crud_response_payload_on_write_disabled_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2329,7 +2329,7 @@ async def test_delete_all_items_by_partition_key_async(self):
23292329

23302330
# create container via setup client (control-plane)
23312331
created_collection = await key_db.create_container(
2332-
id='test_delete_all_items_by_partition_key ' + str(uuid.uuid4()),
2332+
id='test_delete_all_items_by_partition_key_' + str(uuid.uuid4()),
23332333
partition_key=PartitionKey(path='/pk', kind='Hash')
23342334
)
23352335
data_collection = data_db.get_container_client(created_collection.id)

0 commit comments

Comments
 (0)