Re: [PR] Bump multidict from 4.7.6 to 6.0.4 in /gremlin-python/src/main/python [tinkerpop]

2024-01-15 Thread via GitHub


dependabot[bot] closed pull request #2404: Bump multidict from 4.7.6 to 6.0.4 
in /gremlin-python/src/main/python
URL: https://github.com/apache/tinkerpop/pull/2404


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump multidict from 4.7.6 to 6.0.4 in /gremlin-python/src/main/python [tinkerpop]

2024-01-15 Thread via GitHub


dependabot[bot] commented on PR #2404:
URL: https://github.com/apache/tinkerpop/pull/2404#issuecomment-1892572949

   Looks like multidict is up-to-date now, so this is no longer needed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump multidict from 4.7.6 to 6.0.4 in /gremlin-python/src/main/python [tinkerpop]

2024-01-15 Thread via GitHub


Cole-Greer commented on PR #2404:
URL: https://github.com/apache/tinkerpop/pull/2404#issuecomment-1892572413

   @dependabot rebase


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



Re: [PR] Bump multidict from 4.7.6 to 6.0.4 in /gremlin-python/src/main/python [tinkerpop]

2023-12-15 Thread via GitHub


codecov-commenter commented on PR #2404:
URL: https://github.com/apache/tinkerpop/pull/2404#issuecomment-1858015905

   ## 
[Codecov](https://app.codecov.io/gh/apache/tinkerpop/pull/2404?src=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 Report
   All modified and coverable lines are covered by tests :white_check_mark:
   > Comparison is base 
[(`d4fc477`)](https://app.codecov.io/gh/apache/tinkerpop/commit/d4fc477a5c89906626e4290ecca335cbb7e1b367?el=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 75.16% compared to head 
[(`974a672`)](https://app.codecov.io/gh/apache/tinkerpop/pull/2404?src=pr=desc_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache)
 71.23%.
   
   
   Additional details and impacted files
   
   
   ```diff
   @@  Coverage Diff  @@
   ## 3.6-dev#2404  +/-   ##
   =
   - Coverage  75.16%   71.23%   -3.93% 
   =
 Files   1057   25-1032 
 Lines  63470 3772   -59698 
 Branches69360-6936 
   =
   - Hits   47705 2687   -45018 
   + Misses 13191  898   -12293 
   + Partials2574  187-2387 
   ```
   
   
   
   
   
   [:umbrella: View full report in Codecov by 
Sentry](https://app.codecov.io/gh/apache/tinkerpop/pull/2404?src=pr=continue_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache).
   
   :loudspeaker: Have feedback on the report? [Share it 
here](https://about.codecov.io/codecov-pr-comment-feedback/?utm_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump multidict from 4.7.6 to 6.0.4 in /gremlin-python/src/main/python [tinkerpop]

2023-12-15 Thread via GitHub


dependabot[bot] opened a new pull request, #2404:
URL: https://github.com/apache/tinkerpop/pull/2404

   Bumps [multidict](https://github.com/aio-libs/multidict) from 4.7.6 to 6.0.4.
   
   Release notes
   Sourced from https://github.com/aio-libs/multidict/releases;>multidict's 
releases.
   
   6.0.4
   Bugfixes
   
   Fixed a type annotations regression introduced in v6.0.2 under Python 
versions 3.10. It was caused by importing certain types only available in 
newer versions. ((https://redirect.github.com/aio-libs/multidict/issues/798;>#798))
   
   6.0.3
   Features
   
   Declared the official support for Python 3.11 — by 
:user:mlegner. ((https://redirect.github.com/aio-libs/multidict/issues/872;>#872))
   
   v6.0.2
   Bugfixes
   
   Revert (https://redirect.github.com/aio-libs/multidict/issues/644;>#644), 
restore type annotations to as-of 5.2.0 version. ((https://redirect.github.com/aio-libs/multidict/issues/688;>#688))
   
   v6.0.1
   Bugfixes
   
   
   Restored back MultiDict, CIMultiDict, 
MultiDictProxy, and
   CIMutiDictProxy generic type arguments; they are parameterized 
by value type, but the
   key type is fixed by container class.
   MultiDict[int] means MutableMultiMapping[str, 
int]. The key type of
   MultiDict is always str, while all str-like keys 
are accepted by API and
   converted to str internally.
   The same is true for CIMultiDict[int] which means 
MutableMultiMapping[istr, int]. str-like keys are accepted but 
converted to istr internally. ((https://redirect.github.com/aio-libs/multidict/issues/682;>#682))
   
   
   v6.0.0
   Features
   
   
   Use METH_FASTCALL where it makes sense.
   MultiDict.add() is 2.2 times faster now, 
CIMultiDict.add() is 1.5 times faster.
   The same boost is applied to get*(), setdefault(), 
and pop*() methods. ((https://redirect.github.com/aio-libs/multidict/issues/681;>#681))
   
   
   Bugfixes
   
   Fixed type annotations for keys of multidict mapping classes. ((https://redirect.github.com/aio-libs/multidict/issues/644;>#644))
   Support Multidict[int] for pure-python version.
   __class_getitem__ is already provided by C Extension, making it 
work with the pure-extension too. ((https://redirect.github.com/aio-libs/multidict/issues/678;>#678))
   
   
   
   ... (truncated)
   
   
   Changelog
   Sourced from https://github.com/aio-libs/multidict/blob/master/CHANGES.rst;>multidict's
 changelog.
   
   6.0.4 (2022-12-24)
   Bugfixes
   
   Fixed a type annotations regression introduced in v6.0.2 under Python 
versions 3.10. It was caused by importing certain types only available in 
newer versions. (:issue:798)
   
   6.0.3 (2022-12-03)
   Features
   
   Declared the official support for Python 3.11 — by 
:user:mlegner. (:issue:872)
   
   6.0.2 (2022-01-24)
   Bugfixes
   
   Revert :issue:644, restore type annotations to as-of 5.2.0 
version. (:issue:688)
   
   6.0.1 (2022-01-23)
   Bugfixes
   
   
   Restored back MultiDict, CIMultiDict, 
MultiDictProxy, and
   CIMutiDictProxy generic type arguments; they are parameterized 
by value type, but the
   key type is fixed by container class.
   MultiDict[int] means MutableMultiMapping[str, 
int]. The key type of
   MultiDict is always str, while all str-like keys 
are accepted by API and
   converted to str internally.
   The same is true for CIMultiDict[int] which means 
MutableMultiMapping[istr, int]. str-like keys are accepted but 
converted to istr internally. (:issue:682)
   
   
   6.0.0 (2022-01-22)
   Features
   
   
   ... (truncated)
   
   
   Commits
   
   https://github.com/aio-libs/multidict/commit/47ac8a18ccfee3578c0a92a2651325fc9dd3ae72;>47ac8a1
 Bump the project version to 6.0.4
   https://github.com/aio-libs/multidict/commit/34ce3a651fbe7170d0f80205a8b62ff424be2d2d;>34ce3a6
 Revert collections import (https://redirect.github.com/aio-libs/multidict/issues/798;>#798)
   https://github.com/aio-libs/multidict/commit/437f2c4981ca736547913cabc58c992e9bfb3603;>437f2c4
 Add CodeQL workflow for GitHub code scanning (https://redirect.github.com/aio-libs/multidict/issues/786;>#786)
   https://github.com/aio-libs/multidict/commit/a611551460681ec0799d648df2f332ce01a172fb;>a611551
 Bump isort from 5.11.3 to 5.11.4 (https://redirect.github.com/aio-libs/multidict/issues/801;>#801)
   https://github.com/aio-libs/multidict/commit/c0959b63106efce9f278aed9f4d77272a25fc8cf;>c0959b6
 Bump towncrier from 22.8.0 to 22.12.0 (https://redirect.github.com/aio-libs/multidict/issues/800;>#800)
   https://github.com/aio-libs/multidict/commit/dfd9328e0dd3f44fefed339852a9e35566d54215;>dfd9328
 Bump isort from 5.11.2 to 5.11.3 (https://redirect.github.com/aio-libs/multidict/issues/799;>#799)
   https://github.com/aio-libs/multidict/commit/c7e78ed1c3f95307e3764374b5177a3b6778a9cb;>c7e78ed
 Bump isort from 5.11.1 to 5.11.2 (https://redirect.github.com/aio-libs/multidict/issues/797;>#797)
   https://github.com/aio-libs/multidict/commit/273a07ccb03c9301220fdde9788a57e8578e835c;>273a07c
 Bump isort