azure-search-openai-demo
azure-search-openai-demo copied to clipboard
Bump the python-requirements group across 1 directory with 56 updates
Bumps the python-requirements group with 56 updates in the / directory:
Updates aiohappyeyeballs from 2.4.0 to 2.4.2
Release notes
Sourced from aiohappyeyeballs's releases.
v2.4.2 (2024-09-27)
Fix
v2.4.1 (2024-09-26)
Fix
Changelog
Sourced from aiohappyeyeballs's changelog.
v2.4.2 (2024-09-27)
Fix
v2.4.1 (2024-09-26)
Fix
Commits
04dbbe52.4.2c5a4023fix: copy staggered from standard lib for python 3.12+ (#95)04c42b42.4.15f80b79fix: avoid passing loop to staggered.staggered_race (#94)b5192adchore(pre-commit.ci): pre-commit autoupdate (#92)097c9fachore(pre-commit.ci): pre-commit autoupdate (#91)fdd35acchore: fix trivial typo in readme7038b2dchore: update readme to include license information (#90)e45003fchore(pre-commit.ci): pre-commit autoupdate (#88)- See full diff in compare view
Updates aiohttp from 3.10.5 to 3.10.8
Release notes
Sourced from aiohttp's releases.
3.10.8
Bug fixes
Fixed cancellation leaking upwards on timeout -- by :user:
bdraco.Related issues and pull requests on GitHub: #9326.
3.10.7
Bug fixes
Fixed assembling the :class:
~yarl.URLfor web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.Related issues and pull requests on GitHub: #9309.
Miscellaneous internal changes
Improved performance of determining if a URL is absolute -- by :user:
bdraco.The property :attr:
~yarl.URL.absoluteis more performant than the methodURL.is_absolute()and preferred when newer versions of yarl are used.Related issues and pull requests on GitHub: #9171.
Replaced code that can now be handled by
yarl-- by :user:bdraco.Related issues and pull requests on GitHub: #9301.
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.10.8 (2024-09-28)
Bug fixes
Fixed cancellation leaking upwards on timeout -- by :user:
bdraco.Related issues and pull requests on GitHub: :issue:
9326.
3.10.7 (2024-09-27)
Bug fixes
Fixed assembling the :class:
~yarl.URLfor web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.Related issues and pull requests on GitHub: :issue:
9309.Miscellaneous internal changes
Improved performance of determining if a URL is absolute -- by :user:
bdraco.The property :attr:
~yarl.URL.absoluteis more performant than the methodURL.is_absolute()and preferred when newer versions of yarl are used.Related issues and pull requests on GitHub: :issue:
9171.Replaced code that can now be handled by
yarl-- by :user:bdraco.Related issues and pull requests on GitHub:
... (truncated)
Commits
8a7ce94Release 3.10.8 (#9330)a308f74[PR #9326/fe26ae2 backport][3.10] Fix TimerContext not uncancelling the curre...52e0b91Fix custom cookies example (#9321) (#9324)609c6e3Increment version to 3.10.8.dev0f9a9e85Release 3.10.7 (#9320)8220ced[PR #9309/e4028333 backport][3.10] Fix building the URL in BaseRequest when t...d32d580[PR #9301/c240b52 backport][3.10] Replace code that can now be handled by yar...fd5ece6Bump yarl to 1.13.0 (#9302) (#9304)d6d2bcc[PR #9294/552dea53 backport][3.10] Backport type fix from #9226 (#9299)e6bcfbe[PR #9171/0462ae6b backport][3.10] Switch to usingyarl.URL.absoluteover `...- Additional commits viewable in compare view
Updates anyio from 4.4.0 to 4.6.0
Release notes
Sourced from anyio's releases.
4.6.0
- Dropped support for Python 3.8 (as #698 cannot be resolved without cancel message support)
- Fixed 100% CPU use on asyncio while waiting for an exiting task group to finish while said task group is within a cancelled cancel scope (#695)
- Fixed cancel scopes on asyncio not propagating
CancelledErroron exit when the enclosing cancel scope has been effectively cancelled (#698)- Fixed asyncio task groups not yielding control to the event loop at exit if there were no child tasks to wait on
- Fixed inconsistent task uncancellation with asyncio cancel scopes belonging to a task group when said task group has child tasks running
4.5.0
- Improved the performance of
anyio.Lockandanyio.Semaphoreon asyncio (even up to 50 %)- Added the
fast_acquireparameter toanyio.Lockandanyio.Semaphoreto further boost performance at the expense of safety (acquire()will not yield control back if there is no contention)- Added support for the
from_uri(),full_match(),parsermethods/properties inanyio.Path, newly added in Python 3.13 (#737)- Added support for more keyword arguments for
run_process()andopen_process():startupinfo,creationflags,pass_fds,user,group,extra_groupsandumask(#742)- Improved the type annotations and support for
PathLikeinrun_process()andopen_process()to allow for path-like arguments, just likesubprocess.Popen- Changed the
ResourceWarningfrom an unclosed memory object stream to include its address for easier identification- Changed
start_blocking_portal()to always use daemonic threads, to accommodate the "loitering event loop" use case- Bumped the minimum version of Trio to v0.26.1
- Fixed
__repr__()ofMemoryObjectItemReceiver, whenitemis not defined (#767; PR by@Danipulok)- Fixed
to_process.run_sync()failing to initialize if__main__.__file__pointed to a file in a nonexistent directory (#696)- Fixed
AssertionError: feed_data after feed_eofon asyncio when a subprocess is closed early, before its output has been read (#490)- Fixed
TaskInfo.has_pending_cancellation()on asyncio not respecting shielded scopes (#771; PR by@gschaffner)- Fixed
SocketStream.receive()returningbytearrayinstead ofbyteswhen using asyncio withProactorEventLoop(Windows) (#776)- Fixed quitting the debugger in a pytest test session while in an active task group failing the test instead of exiting the test session (because the exit exception arrives in an exception group)
- Fixed support for Linux abstract namespaces in UNIX sockets that was broken in v4.2 (#781 <agronholm/anyio#781>_; PR by
@tapetersen)- Fixed
KeyboardInterrupt(ctrl+c) hanging the asyncio pytest runner
Changelog
Sourced from anyio's changelog.
Version history
This library adheres to
Semantic Versioning 2.0 <http://semver.org/>_.4.6.0
- Dropped support for Python 3.8 (as
[#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_ cannot be resolved without cancel message support)- Fixed 100% CPU use on asyncio while waiting for an exiting task group to finish while said task group is within a cancelled cancel scope (
[#695](https://github.com/agronholm/anyio/issues/695) <https://github.com/agronholm/anyio/issues/695>_)- Fixed cancel scopes on asyncio not propagating
CancelledErroron exit when the enclosing cancel scope has been effectively cancelled ([#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_)- Fixed asyncio task groups not yielding control to the event loop at exit if there were no child tasks to wait on
- Fixed inconsistent task uncancellation with asyncio cancel scopes belonging to a task group when said task group has child tasks running
4.5.0
- Improved the performance of
anyio.Lockandanyio.Semaphoreon asyncio (even up to 50 %)- Added the
fast_acquireparameter toanyio.Lockandanyio.Semaphoreto further boost performance at the expense of safety (acquire()will not yield control back if there is no contention)- Added support for the
from_uri(),full_match(),parsermethods/properties inanyio.Path, newly added in Python 3.13 ([#737](https://github.com/agronholm/anyio/issues/737) <https://github.com/agronholm/anyio/issues/737>_)- Added support for more keyword arguments for
run_process()andopen_process():startupinfo,creationflags,pass_fds,user,group,extra_groupsandumask([#742](https://github.com/agronholm/anyio/issues/742) <https://github.com/agronholm/anyio/issues/742>_)- Improved the type annotations and support for
PathLikeinrun_process()andopen_process()to allow for path-like arguments, just likesubprocess.Popen- Changed the
ResourceWarningfrom an unclosed memory object stream to include its address for easier identification- Changed
start_blocking_portal()to always use daemonic threads, to accommodate the "loitering event loop" use case- Bumped the minimum version of Trio to v0.26.1
- Fixed
__repr__()ofMemoryObjectItemReceiver, whenitemis not defined ([#767](https://github.com/agronholm/anyio/issues/767) <https://github.com/agronholm/anyio/pull/767>_; PR by@Danipulok)- Fixed
to_process.run_sync()failing to initialize if__main__.__file__pointed to a file in a nonexistent directory ([#696](https://github.com/agronholm/anyio/issues/696) <https://github.com/agronholm/anyio/issues/696>_)- Fixed
AssertionError: feed_data after feed_eofon asyncio when a subprocess is closed early, before its output has been read ([#490](https://github.com/agronholm/anyio/issues/490) <https://github.com/agronholm/anyio/issues/490>_)
... (truncated)
Commits
8cce749Bumped up the version01a37c6Fixed TaskGroup and CancelScope exit issues on asyncio (#774)7f35ce7Bumped up the version108cc83[pre-commit.ci] pre-commit autoupdate (#788)d1aea98Fixed KeyboardInterrupt hanging the asyncio test runner (#779)c1aff53[pre-commit.ci] pre-commit autoupdate (#785)89d8b4cUse sphinx_rtd_theme also as an extension4e9f18dEnabled uvloop to be used in the test suite on Python 3.137de6441Pin Sphinx to a compatible version with sphinx-rtd-theme41647f4Fixed feed_data after feed_eof assertion errors on asyncio (#752)- Additional commits viewable in compare view
Updates azure-ai-documentintelligence from 1.0.0b3 to 1.0.0b4
Release notes
Sourced from azure-ai-documentintelligence's releases.
azure-ai-documentintelligence_1.0.0b4
1.0.0b4 (2024-09-05)
Features Added
- Added support for the Analyze Batch Documents API:
- Added LRO operation
begin_analyze_batch_documents()toDocumentIntelligenceClient.- Added models
AnalyzeBatchDocumentsRequest,AnalyzeBatchResultandAnalyzeBatchOperationDetail.- Added support for different kinds of output in the Analyze Document API:
- Added operations
get_analyze_result_figure()andget_analyze_result_pdf()toDocumentIntelligenceClient.- Added optional kwarg
outputto LRO operationbegin_analyze_document()overloads inDocumentIntelligenceClient.- Added enum
AnalyzeOutputOptionto specify output kind, eitherfigures.- Added property
idto modelDocumentFigure.- Added support for the Copy Classifier API:
- Added operations
authorize_classifier_copy()andbegin_copy_classifier_to()toDocumentIntelligenceAdministrationClient.- Added models
AuthorizeClassifierCopyRequestandClassifierCopyAuthorization.- Added optional kwarg
pagesto LRO operationbegin_classify_document()overloads inDocumentIntelligenceClient.- Added new kind
GENERATIVEto enumDocumentBuildMode.- Added property
warningsto modelAnalyzeResult.- Added properties
classifier_id,split, andtraining_hoursto modelDocumentModelDetails.- Added properties
model_id,confidence_threshold,features,query_fieldsandmax_documents_to_analyzeto modelDocumentTypeDetails.- Added property
allow_overwriteto modelBuildDocumentClassifierRequest.- Added properties
allow_overwriteandmax_training_hoursto modelBuildDocumentModelRequest.- Added properties
classifier_id,splitanddoc_typesto modelComposeDocumentModelRequest.- Added support for getting
operation_idviadetailsproperty in the new return typesAnalyzeDocumentLROPollerandAsyncAnalyzeDocumentLROPollerin operationbegin_analyze_document().Breaking Changes
- Removed support for extracting lists from analyzed documents:
- Removed models
DocumentListandDocumentListItem.- Removed property
listsfrom modelAnalyzeResult.- Changes to the Compose Document API:
- Removed model
ComponentDocumentModelDetails.- Removed property
component_modelsfrom modelComposeDocumentModelRequest.ComposeDocumentModelRequestnow requires a dictionary ofDocumentTypeDetailsinstances and a classifier ID to be constructed.- Removed model
QuotaDetails.- Removed property
custom_neural_document_model_buildsfrom modelResourceDetails.- Changed the required property
field_schemafromDocumentTypeDetailsto be optional.Other Changes
- Changed the default service API version to
2024-07-31-preview.- Improved performance by about
1.5Xfaster when deserializingJSONto anAnalyzeResultobject compared to last version1.0.0b3.
Commits
6b5ce2d[DI] Add tests and samples for new API (#37197)d85e6c3Revert "update the package namespaces for all packages in the artifact direct...58ac142Increment package version after release of azure-monitor-opentelemetry (#37218)526dca6[Core] Add new token class and protocols (#36565)5cf3b46[ServiceBus] unskip complete message over diff recvr test for uamqp (#37192)66ccfb8update job run condition for Analyze job (#37212)78857ecHandle CG Failures (#37204)16aa1e2Replace aka.ms with pypi.org link (#37215)5eba2a8Update dev_requirements.txt (#37213)407e15f[AutoRelease] t2-billing-2024-09-02-52526(can only be merged by SDK owner) (#...- Additional commits viewable in compare view
Updates azure-core from 1.30.2 to 1.31.0
Release notes
Sourced from azure-core's releases.
azure-core_1.31.0
1.31.0 (2024-09-12)
Features Added
- Added azure.core.AzureClouds enum to represent the different Azure clouds.
- Added two new credential protocol classes,
SupportsTokenInfoandAsyncSupportsTokenInfo, to offer more extensibility in supporting various token acquisition scenarios. #36565
- Each new protocol class defines a
get_token_infomethod that returns anAccessTokenInfoobject.- Added a new
TokenRequestOptionsclass, which is aTypedDictwith optional parameters, that can be used to define options for token requests through theget_token_infomethod. #36565- Added a new
AccessTokenInfoclass, which is returned byget_token_infoimplementations. This class contains the token, its expiration time, and optional additional information like when a token should be refreshed. #36565BearerTokenCredentialPolicyandAsyncBearerTokenCredentialPolicynow first check if a credential has theget_token_infomethod defined. If so, theget_token_infomethod is used to acquire a token. Otherwise, theget_tokenmethod is used. #36565
- These policies now also check the
refresh_onattribute when determining if a new token request should be made.Other Changes
- The Azure Core OpenTelemetry tracing plugin will now be the preferred tracing plugin over the OpenCensus plugin. If both plugins are installed and
opentelemetryis imported, then OpenTelemetry will be used to trace Azure SDK operations. #35050
Commits
72ed2a5Fix broken links (#37300)f1d725cUpdate typing (#37294)3e5e59c[Core] Adjust auth tests to avoid false CredScan flags (#37267)526dca6[Core] Add new token class and protocols (#36565)7c06207NO_CI verifytypes enabled by defaulte27d899azure_cloud_setting (#30825)db31db6set-pyproject (#36794)85eb9eeUpdate various credential mocks (#36620)2bce0a6Test-Proxy enabled by default (#36573)547d35c[Core] add parallel=1 as perf scenario for core (#36582)- Additional commits viewable in compare view
Updates azure-identity from 1.17.1 to 1.18.0
Release notes
Sourced from azure-identity's releases.
azure-identity_1.18.0
1.18.0 (2024-09-19)
Features Added
- All credentials now implement the
SupportsTokenInfoorAsyncSupportsTokenInfoprotocol. Each credential now has aget_token_infomethod which returns anAccessTokenInfoobject. Theget_token_infomethod is an alternative method toget_tokenthat improves support for more complex authentication scenarios. (#36882)
- Information on when a token should be refreshed is now saved in
AccessTokenInfo(if available).Other Changes
- Added identity config validation to
ManagedIdentityCredentialto avoid non-deterministic states (e.g. bothresource_idandobject_idare specified). (#36950)- Additional validation was added for
ManagedIdentityCredentialin Azure Cloud Shell environments. (#36438)- Bumped minimum dependency on
azure-coreto>=1.31.0.azure-identity_1.18.0b2
1.18.0b2 (2024-08-09)
Features Added
Commits
7e9ddf8[Identity] Prepare release (#37439)ddd5c27[Identity] Implement new protocol for all credentials (#36882)b2043fa[Identity] Update instance discovery error message (#36932)548ea62Add cloud shell validation (#37278)e74ad46Edit pass on Azure Identity README (#37274)5ae05fc[Identity] Adjust CI setup script (#37238)828a14d[Identity] Update credential docstrings (#37207)513989e[Identity] Validate identity config for MICredential (#36950)347c625[Identity] Stop using deprecated datetime methods (#36952)8a6980cPop client_secret to protect pipeline (#36947)- Additional commits viewable in compare view
Updates azure-monitor-opentelemetry from 1.6.1 to 1.6.2
Release notes
Sourced from azure-monitor-opentelemetry's releases.
azure-monitor-opentelemetry_1.6.2
1.6.2 (2024-09-05)
Bugs Fixed
- Update OTel sdk and instrumentations to fix fastapi bug (#37206)
Commits
2a017beUpdate otel to fix fastapi (#37206)2a3f7b4Addtracer_providerkwarg toAzureMonitorTraceExporter(#36363)5055a13Update README.md (#37051)4ddfd5cCorrect util duration variables (#36982)7c06207NO_CI verifytypes enabled by defaultb78a670[Monitor Query] Fix server timeout live tests (#36916)131e9abRefactor statsbeat utils (#36824)db31db6set-pyproject (#36794)e5b455b[Monitor][Query] Adjust server timeout live tests (#36719)956e5adRefactors for constants (#36696)- Additional commits viewable in compare view
Updates azure-monitor-opentelemetry-exporter from 1.0.0b28 to 1.0.0b30
Release notes
Sourced from azure-monitor-opentelemetry-exporter's releases.
azure-monitor-opentelemetry-exporter_1.0.0b30
1.0.0b30 (2024-09-20)
Bugs Fixed
- Fix setting custom
TracerProviderbug (#37469)azure-monitor-opentelemetry-exporter_1.0.0b29
1.0.0b29 (2024-09-10)
Features Added
- Allow passing in of custom
TracerProviderforAzureMonitorTraceExporter(#36363)- Support AAD Auth for live metrics (#37258)
Other Changes
Commits
68fc715Update CHANGELOG.md (#37506)9d55b7fFix setting customTracerProviderbug with no globalTracerProvider(#37469)22208ceAdd aad auth samples to distro (#37352)197df58Increment package version after release of azure-monitor-opentelemetry-export...8e9762dRelease exporter (#37273)156a08aSupport AAD auth for live metrics (#37258)58ac142Increment package version after release of azure-monitor-opentelemetry (#37218)2a017beUpdate otel to fix fastapi (#37206)2a3f7b4Addtracer_providerkwarg toAzureMonitorTraceExporter(#36363)5055a13Update README.md (#37051)- Additional commits viewable in compare view
Updates azure-storage-blob from 12.22.0 to 12.23.1
Release notes
Sourced from azure-storage-blob's releases.
azure-storage-blob_12.23.1
12.23.1 (2024-09-25)
Features Added
- Added support for decryption of Blobs encrypted using client-side encryption version 2.1.
azure-storage-blob_12.23.0
12.23.0 (2024-09-17)
Features Added
- Stable release of features from 12.23.0b1
Bugs Fixed
- Fixed an issue with batch APIs when using Azurite.
azure-storage-blob_12.23.0b1
12.23.0b1 (2024-08-07)
Features Added
- Added support for service version 2024-11-04.
Other Changes
- Bumped minimum
azure-coredependency to 1.30.0.
Commits
d16564e[Storage] CSE V2.1 Decryption Patch Release Changelog (#37572)b989e00[Storage] Changes to decryption codepath to allow v2.1 (#37455)a60b09ebump versions after stg 95 ga release (#37437)c34465e[Storage] [STG 95] STG 95 GA Release Changelogs (#37414)ee9ea21Improve README by linking to documentation per client (#37064)797ff21fix paid burst testing (#36995)ca110c9[Storage] HttpResponse changes (new generated code) (#36546)21774d5[Storage] Update Blob mypy.ini (#36991)50f0fa2disable verifytypes for file-datalake (#36962)76328e9[Storage] Fix batch APIs for Azurite (#36862)- Additional commits viewable in compare view
Updates azure-storage-file-datalake from 12.16.0 to 12.17.0
Release notes
Sourced from azure-storage-file-datalake's releases.
azure-storage-file-datalake_12.17.0
12.17.0 (2024-09-17)
Features Added
- Stable release of features from 12.17.0b1
azure-storage-file-datalake_12.17.0b1
12.17.0b1 (2024-08-07)
Features Added
- Added support for service version 2024-11-04.
Other Changes
- Bumped minimum
azure-coredependency to 1.30.0.
Commits
c34465e[Storage] [STG 95] STG 95 GA Release Changelogs (#37414)e4cabf3Remove jsonpath-ng Dependency (#37418)5731696Fixed the issue thatencryptionKeywas lost during serialization (#37410)37543c4Sync eng/common directory with azure-sdk-tools for PR 8974 (#37417)9a8f379[Evaluation] Rename parameter nameproject_scopetoazure_ai_project(#37...6e5a7d6[SB] fixing link flow issues (#36879)0a8dfb5Auto-generated baselines by 1ES Pipeline Templates (#37396)6b52a53[evaluation] ci: Re-enable python3.12 in test matrix (#37399)86d97f6fix assignee for release-helper (#37407)4396007[release helper]Update assignee for release issue of Go SDK (#37402)- Additional commits viewable in compare view
Updates certifi from 2024.7.4 to 2024.8.30
Commits
325c2fd2024.08.30 (#304)d66bf5fBump actions/upload-artifact from 4.3.5 to 4.3.6 (#302)2150f23Bump actions/upload-artifact from 4.3.4 to 4.3.5 (#301)fc9b771Bump actions/setup-python from 5.1.0 to 5.1.1 (#300)965b239Bump actions/download-artifact from 4.1.7 to 4.1.8 (#297)c1f50ccBump actions/upload-artifact from 4.3.3 to 4.3.4 (#296)- See full diff in compare view
Updates cffi from 1.17.0 to 1.17.1
Release notes
Sourced from cffi's releases.
v1.17.1
- Fix failing
distutils.msvc9compilerimports under Windows (#118).ffibuilder.emit_python_code()andffibuiler.emit_c_code()accept file-like objects (#115).ffiplatformcalls are bypassed byffibuilder.emit_python_code()andffibuilder.emit_c_code()(#81).Full Changelog: https://github.com/python-cffi/cffi/compare/v1.17.0...v1.17.1
Commits
38bd6berelease 1.17.1ba10180update whatsnew.rst for 1.17.1 (#121)61deb5fadd yet another flag to recompile() to avoid calling ffiplatform (#81)1c292c1Handle distutils without distutils.msvc9compiler.MSVCCompiler class (#118)182ffc4Allow writing generated code to a file-like object. (#115)- See full diff in compare view
Updates fixedint from 0.1.6 to 0.2.0
Changelog
Sourced from fixedint's changelog.
v0.2.0, 2020-09-16: Add type hints (GH #4) Removed the broken MutableFixedInt.itruediv Added base argument to FixedInt constructor
Commits
Updates httpx[http2] from 0.27.0 to 0.27.2
Release notes
Sourced from httpx[http2]'s releases.
Version 0.27.2
0.27.2 (27th August, 2024)
Fixed
- Reintroduced supposedly-private
URLTypesshortcut. (#2673)Version 0.27.1
0.27.1 (27th August, 2024)
Added
- Support for
zstdcontent decoding us...Description has been truncated