Skip to content

Commit 3340f85

Browse files
authored
Mypy fix (Azure#38565)
* Mypy fix * update
1 parent 4c67ca7 commit 3340f85

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

sdk/search/azure-search-documents/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131

3232
- Updated the API version to "2024-1-01-preview"
3333

34+
11.5.2 (2024-10-31)
35+
36+
### Bugs Fixed
37+
38+
- Fixed the issue that encryptionKey was lost during serialization. #37521
39+
3440
## 11.6.0b6 (2024-10-08)
3541

3642
### Bugs Fixed

sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models_py3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6629,7 +6629,7 @@ def __init__(
66296629
*,
66306630
name: str,
66316631
lower_case_terms: bool = True,
6632-
pattern: str = "\W+",
6632+
pattern: str = r"\W+",
66336633
flags: Optional[Union[str, "_models.RegexFlags"]] = None,
66346634
stopwords: Optional[List[str]] = None,
66356635
**kwargs: Any
@@ -6854,7 +6854,7 @@ def __init__(
68546854
self,
68556855
*,
68566856
name: str,
6857-
pattern: str = "\W+",
6857+
pattern: str = r"\W+",
68586858
flags: Optional[Union[str, "_models.RegexFlags"]] = None,
68596859
group: int = -1,
68606860
**kwargs: Any

0 commit comments

Comments
 (0)