René's URL Explorer Experiment


Title: ci(deps): bump typing-extensions from 4.15.0 to 4.16.0 by dependabot[bot] · Pull Request #1242 · appium/python-client · GitHub

Open Graph Title: ci(deps): bump typing-extensions from 4.15.0 to 4.16.0 by dependabot[bot] · Pull Request #1242 · appium/python-client

X Title: ci(deps): bump typing-extensions from 4.15.0 to 4.16.0 by dependabot[bot] · Pull Request #1242 · appium/python-client

Description: Bumps typing-extensions from 4.15.0 to 4.16.0. Release notes Sourced from typing-extensions's releases. 4.16.0 No changes since 4.16.0rc2. Changes since 4.15.0: Make typing_extensions.TypeAliasType's __module__ attribute writable. Backport of CPython PR #149172. Fix setting of __required_keys__ and __optional_keys__ when inheriting keys with the same name. Add support for AsyncIterator, io.Reader, io.Writer and os.PathLike protocols as bases for other protocols. Fix incorrect behaviour on Python 3.9 and Python 3.10 that meant that calling isinstance with typing_extensions.Concatenate[...] or typing_extensions.Unpack[...] as the first argument could have a different result in some situations depending on whether or not a profiling function had been set using sys.setprofile. This affected both CPython and PyPy implementations. Patch by Brian Schubert. Fix __init_subclass__() behavior in the presence of multiple inheritance involving an @deprecated-decorated base class. Backport of CPython PR #138210 by Brian Schubert. Raise TypeError when attempting to subclass typing_extensions.ParamSpec on Python 3.9. The typing implementation has always raised an error, and the typing_extensions implementation has raised an error on Python 3.10+ since typing_extensions v4.6.0. Patch by Brian Schubert. Add the bound, covariant, contravariant, and infer_variance parameters to TypeVarTuple. Officially support the bound, covariant, contravariant and infer_variance parameters to ParamSpec. Improve the validation of these parameters at runtime. Rename typing_extensions.Sentinel to typing_extensions.sentinel, following the name that has been adopted for builtins.sentinel on Python 3.15. typing_extensions.Sentinel is retained as a soft-deprecated alias for backwards compatibility. Add support for pickling sentinels. Sentinels now preserve their identity when copied or deep-copied. Deprecate passing name as a keyword argument or repr as a positional argument to the sentinel constructor. The default repr of a sentinel X = sentinel("X") is now X rather than . Deprecate arbitrary attribute assignments to sentinels. Deprecate subclassing sentinels. Add support for Python 3.15. Avoid a DeprecationWarning when deprecated is applied to a coroutine function on Python 3.14.0. 4.16.0rc2 Changes since 4.16.0rc1: Avoid a DeprecationWarning when deprecated is applied to a coroutine function on Python 3.14.0. Changes since 4.15.0: Make typing_extensions.TypeAliasType's __module__ attribute writable. Backport of CPython PR #149172. Fix setting of __required_keys__ and __optional_keys__ when inheriting keys with the same name. Add support for AsyncIterator, io.Reader, io.Writer and os.PathLike protocols as bases for other protocols. Fix incorrect behaviour on Python 3.9 and Python 3.10 that meant that calling isinstance with typing_extensions.Concatenate[...] or typing_extensions.Unpack[...] as the first argument could have a different result in some situations depending on whether or not a profiling function had been set using sys.setprofile. This affected both CPython and PyPy implementations. Patch by Brian Schubert. Fix __init_subclass__() behavior in the presence of multiple inheritance involving an @deprecated-decorated base class. Backport of CPython PR #138210 by Brian Schubert. Raise TypeError when attempting to subclass typing_extensions.ParamSpec on Python 3.9. The typing implementation has always raised an error, and the typing_extensions implementation has raised an error on Python 3.10+ since typing_extensions v4.6.0. Patch by Brian Schubert. Add the bound, covariant, contravariant, and infer_variance parameters to TypeVarTuple. Officially support the bound, covariant, contravariant and infer_variance parameters to ParamSpec. Improve the validation of these parameters at runtime. Rename typing_extensions.Sentinel to typing_extensions.sentinel, following the name that has been adopted for builtins.sentinel on Python 3.15. typing_extensions.Sentinel is retained as a soft-deprecated alias for backwards compatibility. Add support for pickling sentinels. Sentinels now preserve their identity when copied or deep-copied. Deprecate passing name as a keyword argument or repr as a positional argument to the sentinel constructor. The default repr of a sentinel X = sentinel("X") is now X rather than . Deprecate arbitrary attribute assignments to sentinels. Deprecate subclassing sentinels. Add support for Python 3.15. 4.16.0rc1 Make typing_extensions.TypeAliasType's __module__ attribute writable. Backport of CPython PR #149172. Fix setting of __required_keys__ and __optional_keys__ when inheriting keys with the same name. ... (truncated) Changelog Sourced from typing-extensions's changelog. Release 4.16.0 (July 2, 2025) No user-facing changes since 4.16.0rc2. Release 4.16.0rc2 (June 25, 2026) Avoid a DeprecationWarning when deprecated is applied to a coroutine function on Python 3.14.0. Release 4.16.0rc1 (June 24, 2026) Make typing_extensions.TypeAliasType's __module__ attribute writable. Backport of CPython PR #149172. Fix setting of __required_keys__ and __optional_keys__ when inheriting keys with the same name. Add support for AsyncIterator, io.Reader, io.Writer and os.PathLike protocols as bases for other protocols. Fix incorrect behaviour on Python 3.9 and Python 3.10 that meant that calling isinstance with typing_extensions.Concatenate[...] or typing_extensions.Unpack[...] as the first argument could have a different result in some situations depending on whether or not a profiling function had been set using sys.setprofile. This affected both CPython and PyPy implementations. Patch by Brian Schubert. Fix __init_subclass__() behavior in the presence of multiple inheritance involving an @deprecated-decorated base class. Backport of CPython PR #138210 by Brian Schubert. Raise TypeError when attempting to subclass typing_extensions.ParamSpec on Python 3.9. The typing implementation has always raised an error, and the typing_extensions implementation has raised an error on Python 3.10+ since typing_extensions v4.6.0. Patch by Brian Schubert. Add the bound, covariant, contravariant, and infer_variance parameters to TypeVarTuple. Officially support the bound, covariant, contravariant and infer_variance parameters to ParamSpec. Improve the validation of these parameters at runtime. Rename typing_extensions.Sentinel to typing_extensions.sentinel, following the name that has been adopted for builtins.sentinel on Python 3.15. typing_extensions.Sentinel is retained as a soft-deprecated alias for backwards compatibility. Add support for pickling sentinels. Sentinels now preserve their identity when copied or deep-copied. Deprecate passing name as a keyword argument or repr as a positional argument to the sentinel constructor. The default repr of a sentinel X = sentinel("X") is now X rather than . Deprecate arbitrary attribute assignments to sentinels. Deprecate subclassing sentinels. Add support for Python 3.15. Commits f29cd28 Prepare relase 4.16.0 (#774) 4317461 Bump version to 4.16.0rc2.dev (#772) 4f71098 Prepare release 4.16.0rc2 (#771) 37ed08a Remove use of asyncio.coroutines.iscoroutinefunction() (#769) 8dcc559 Improve TypedDict documentation (#770) 224f8d5 Post-release followups for 3.16.0rc1 (#767) 777de3e Prepare release 4.16.0rc1 (#766) 890be90 Type variable tuple variance (#741) 0e05458 Pin SQLAlchemy third-party tests to pytest==9.0.3 (#765) d277746 docs: add version compatibility table (#733) Additional commits viewable in compare view

Open Graph Description: Bumps typing-extensions from 4.15.0 to 4.16.0. Release notes Sourced from typing-extensions's releases. 4.16.0 No changes since 4.16.0rc2. Changes since 4.15.0: Make typing_extensions.TypeAl...

X Description: Bumps typing-extensions from 4.15.0 to 4.16.0. Release notes Sourced from typing-extensions's releases. 4.16.0 No changes since 4.16.0rc2. Changes since 4.15.0: Make typing_extensions.Ty...

Opengraph URL: https://github.com/appium/python-client/pull/1242

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:2bec9b37-a4db-f4d3-fffc-fc22fa6671d8
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idE178:2AF233:1EFE883:2938976:6A5D5A0B
html-safe-noncec52d0137cbc072d5b1dfcb730907c1be6a2dab2426dcbbd60c3dc7f35fc8598c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMTc4OjJBRjIzMzoxRUZFODgzOjI5Mzg5NzY6NkE1RDVBMEIiLCJ2aXNpdG9yX2lkIjoiNTY1MjcyNTE3NzI0MTEzMTUzMSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacae68d6e2caa5fdef510fdb68d19aa6a1c7f61589ad8c645919e6c45e446da144
hovercard-subject-tagpull_request:3977688598
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/appium/python-client/pull/1242/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps typing-extensions from 4.15.0 to 4.16.0. Release notes Sourced from typing-extensions's releases. 4.16.0 No changes since 4.16.0rc2. Changes since 4.15.0: Make typing_extensions.TypeAl...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None5290d7e14309ad1e76106a9c4237bd1041517e83ea182c8ab756752cb0c6940b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/appium/python-client git https://github.com/appium/python-client.git
octolytics-dimension-user_id3221291
octolytics-dimension-user_loginappium
octolytics-dimension-repository_id18525395
octolytics-dimension-repository_nwoappium/python-client
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id18525395
octolytics-dimension-repository_network_root_nwoappium/python-client
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release9c975978430e9ad293956f2bbdaf153b1bd84a99
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/appium/python-client/pull/1242/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fappium%2Fpython-client%2Fpull%2F1242%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fappium%2Fpython-client%2Fpull%2F1242%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=appium%2Fpython-client
Reloadhttps://github.com/appium/python-client/pull/1242/files
Reloadhttps://github.com/appium/python-client/pull/1242/files
Reloadhttps://github.com/appium/python-client/pull/1242/files
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
appium https://github.com/appium
python-clienthttps://github.com/appium/python-client
Notifications https://github.com/login?return_to=%2Fappium%2Fpython-client
Fork 570 https://github.com/login?return_to=%2Fappium%2Fpython-client
Star 1.8k https://github.com/login?return_to=%2Fappium%2Fpython-client
Code https://github.com/appium/python-client
Issues 24 https://github.com/appium/python-client/issues
Pull requests 4 https://github.com/appium/python-client/pulls
Actions https://github.com/appium/python-client/actions
Wiki https://github.com/appium/python-client/wiki
Security and quality 0 https://github.com/appium/python-client/security
Insights https://github.com/appium/python-client/pulse
Code https://github.com/appium/python-client
Issues https://github.com/appium/python-client/issues
Pull requests https://github.com/appium/python-client/pulls
Actions https://github.com/appium/python-client/actions
Wiki https://github.com/appium/python-client/wiki
Security and quality https://github.com/appium/python-client/security
Insights https://github.com/appium/python-client/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fappium%2Fpython-client%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fappium%2Fpython-client%2Fissues%2Fnew%2Fchoose
KazuCocoahttps://github.com/KazuCocoa
masterhttps://github.com/appium/python-client/tree/master
dependabot/uv/typing-extensions-4.16.0https://github.com/appium/python-client/tree/dependabot/uv/typing-extensions-4.16.0
Conversation 0 https://github.com/appium/python-client/pull/1242
Commits 1 https://github.com/appium/python-client/pull/1242/commits
Checks 11 https://github.com/appium/python-client/pull/1242/checks
Files changed https://github.com/appium/python-client/pull/1242/files
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
ci(deps): bump typing-extensions from 4.15.0 to 4.16.0 https://github.com/appium/python-client/pull/1242/files#top
Show all changes 1 commit https://github.com/appium/python-client/pull/1242/files
387f57f ci(deps): bump typing-extensions from 4.15.0 to 4.16.0 dependabot[bot] Jul 18, 2026 https://github.com/appium/python-client/pull/1242/commits/387f57fed93eecff06985b31243c3c89a4902b82
Clear filters https://github.com/appium/python-client/pull/1242/files
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
uv.lockhttps://github.com/appium/python-client/pull/1242/files#diff-84321598744d84dbee2318e634c74c9aae39a1c253f1c4bd17ebf9ef2f807b11
View file https://github.com/appium/python-client/blob/387f57fed93eecff06985b31243c3c89a4902b82/uv.lock
Open in desktop https://desktop.github.com
how customized files appear on GitHubhttps://docs.github.com/github/administering-a-repository/customizing-how-changed-files-appear-on-github
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
Please reload this pagehttps://github.com/appium/python-client/pull/1242/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.