Commit Graph

4979 Commits

Author SHA1 Message Date
Wang Mingyu
5ded36bc80 python3-pydantic: upgrade 1.10.2 -> 1.10.4
Changelog:
Change dependency to typing-extensions>=4.2.0, #4885

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
b73867b9d7 python3-pillow: upgrade 9.3.0 -> 9.4.0
License-Updated: copyright year updated to 2023

Changelog:
==========
 Fixed null pointer dereference crash with malformed font #6846
 Return from ImagingFill early if image has a zero dimension #6842
 Reversed deprecations for Image constants, except for duplicate Resampling attributes #6830
 Improve exception traceback readability #6836
 Do not attempt to read IFD1 if absent #6840
 Fixed writing int as ASCII tag #6800
 If available, use wl-paste or xclip for grabclipboard() on Linux #6783
 Added signed option when saving JPEG2000 images #6709
 Patch OpenJPEG to include ARM64 fix #6718
 Added support for I;16 modes in putdata() #6825
 Added conversion from RGBa to RGB #6708
 Added DDS support for uncompressed L and LA images #6820
 Added LightSource tag values to ExifTags #6749
 Fixed PyAccess after changing ICO size #6821
 Do not use EXIF from info when saving PNG images #6819
 Fixed saving EXIF data to MPO #6817
 Added Exif hide_offsets() #6762
 Only compare to previous frame when checking for duplicate GIF frames while saving #6787
 Always initialize all plugins in registered_extensions() #6811
 Ignore non-opaque WebP background when saving as GIF #6792
 Only set tile in ImageFile __setstate__ #6793
 When reading BLP, do not trust JPEG decoder to determine image is CMYK #6767
 Added IFD enum to ExifTags #6748
 Fixed bug combining GIF frame durations #6779
 Support saving JPEG comments #6774
 Added getxmp() to WebPImagePlugin #6758
 Added "exact" option when saving WebP #6747
 Use fractional coordinates when drawing text #6722
 Fixed writing int as BYTE tag #6740
 Added MP Format Version when saving MPO #6735
 Added Interop to ExifTags #6724
 CVE-2007-4559 patch when building on Windows #6704
 Fix compiler warning: accessing 64 bytes in a region of size 48 #6714
 Use verbose flag for pip install #6713

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
35adb080a8 python3-mock: upgrade 4.0.3 -> 5.0.0
Changelog:
==========
-gh-98624: Add a mutex to unittest.mock.NonCallableMock to protect concurrent
 access to mock attributes.
-bpo-43478: Mocks can no longer be used as the specs for other Mocks. As a
 result, an already-mocked object cannot have an attribute mocked using
 autospec=True or be the subject of a create_autospec call. This can uncover
 bugs in tests since these Mock-derived Mocks will always pass certain tests
 (e.g. isinstance) and builtin assert functions (e.g. assert_called_once_with)
 will unconditionally pass.
-bpo-45156: Fixes infinite loop on unittest.mock.seal() of mocks created by
 create_autospec().
-bpo-41403: Make mock.patch() raise a TypeError with a relevant error message
 on invalid arg. Previously it allowed a cryptic AttributeError to escape.
-gh-91803: Fix an error when using a method of objects mocked with
 unittest.mock.create_autospec() after it was sealed with unittest.mock.seal() function.
-bpo-41877: AttributeError for suspected misspellings of assertions on mocks are
 now pointing out that the cause are misspelled assertions and also what to do
 if the misspelling is actually an intended attribute name. The unittest.mock
 document is also updated to reflect the current set of recognised misspellings.
-bpo-43478: Mocks can no longer be provided as the specs for other Mocks.
 As a result, an already-mocked object cannot be passed to mock.Mock().
 This can uncover bugs in tests since these Mock-derived Mocks will always pass
 certain tests (e.g. isinstance) and builtin assert functions
 (e.g. assert_called_once_with) will unconditionally pass.
-bpo-45010: Remove support of special method __div__ in unittest.mock.
 It is not used in Python 3.
-gh-84753: inspect.iscoroutinefunction() now properly returns True when an
 instance of unittest.mock.AsyncMock is passed to it. This makes it consistent
 with behavior of asyncio.iscoroutinefunction(). Patch by Mehdi ABAAKOUK.
-bpo-46852: Remove the undocumented private float.__set_format__() method,
 previously known as float.__setformat__() in Python 3.7. Its docstring
 said: "You probably don't want to use this function. It exists mainly to be
 used in Python's test suite." Patch by Victor Stinner.
-gh-98086: Make sure patch.dict() can be applied on async functions.
-gh-100287: Fix the interaction of unittest.mock.seal() with unittest.mock.AsyncMock.
-gh-83076: Instantiation of Mock() and AsyncMock() is now 3.8x faster.
-bpo-41877: A check is added against misspellings of autospect, auto_spec and
 set_spec being passed as arguments to patch, patch.object and create_autospec.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
4f4cd2694e python3-lz4: upgrade 4.0.2 -> 4.3.2
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
59d731e679 python3-dateparser: upgrade 1.1.4 -> 1.1.5
Changelog:
==========
Parse short versions of day, month, and year (#1103)
Add a test for "in 1d" (#1104)
Update languages_info (#1107)
Add a workaround for zipimporter not having exec_module before Python 3.10 (#1069)
Stabilize tests at midnight (#1111)
Add a test case for French (#1110)
Remove the requirements-build file (#1113)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
3f365b5caa python3-bitarray: upgrade 2.6.1 -> 2.6.2
Changelog:
==========
  * optimize 'richcompare()' for opposite endianness
  * improve some docstrings add tests

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Wang Mingyu
d049cc1052 python3-bidict: upgrade 0.22.0 -> 0.22.1
Changelog:
==========
-Only include the source code in the source distribution. This reduces the
 size of the source distribution from 200kB to 30kB.
-Fix the return type hint of bidict.inverted() to return an Iterator, rather
 than an Iterable.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-06 11:38:16 -08:00
Leon Anavi
0810ffd3c5 python3-croniter: Upgrade 1.3.7 -> 1.3.8
Upgrade to release 1.3.8:

- Add Python 3.11 support and move docs files to main folder

License-Update: File moved to main directory, no changes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-04 17:13:22 -08:00
Leon Anavi
f8aa644088 python3-zeroconf: Upgrade 0.39.4 -> 0.47.1
Upgrade to release 0.47.1:

- The equality checks for DNSPointer and DNSService should be case
  insensitive
- Optimize equality checks for DNS records
- Optimize the dns cache
- Optimize construction of outgoing packets
- Optimize dns objects by adding pxd files
- Optimize incoming parser by reducing call stack
- Optimize incoming parser by using unpack_from
- Optimize incoming parser by adding pxd files
- Fix project name in pyproject.toml
- Drop async_timeout requirement for python 3.11+

License-Update: Use PKG-INFO to check the license

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-04 17:13:21 -08:00
Leon Anavi
0bd718af4e python3-watchdog: Upgrade 2.2.0 -> 2.2.1
Upgrade to release 2.2.1:

- Enable mypy to discover type hints as specified in PEP 561
- [ci] Set the expected Python version when building release files
- [ci] Update actions versions in use
- [watchmedo] [regression] Fix usage of missing signal.SIGHUP
  attribute on non-Unix OSes

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2023-01-04 17:13:21 -08:00
Khem Raj
0c3d0146a4 python3-grpcio: Define -D_LARGEFILE64_SOURCE only for musl
On glibc this breaks build when using 64bit time_t since zlib ends up
undefining _FILE_OFFSET_BITS when -D_LARGEFILE64_SOURCE is defined

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-31 10:40:32 -08:00
Wang Mingyu
4b69ca4f39 python3-supervisor: upgrade 4.2.4 -> 4.2.5
Changelog:
==========
-Fixed a bug where the XML-RPC method supervisor.startProcess() would return 500
 Internal Server Error instead of an XML-RPC fault response if the command could
 not be parsed.
-Fixed a bug on Python 2.7 where a UnicodeDecodeError may have occurred when
 using the web interface.
-Removed use of urllib.parse functions splithost, splitport, and splittype
 deprecated in Python 3.8.
-Removed use of asynchat and asyncore deprecated in Python 3.10.
-The return value of the XML-RPC method supervisor.getAllConfigInfo() now
 includes the directory, uid, and serverurl of the program.
-If a subprocess exits with a unexpected exit code (one not listed in
 exitcodes= in a [program:x] section) then the exit will now be logged at
 the WARN level instead of INFO.
-supervisorctl shutdown now shows an error message if an argument is given.
-File descriptors are now closed using the faster os.closerange() instead of
 calling os.close() in a loop.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
fa4e825054 python3-sentry-sdk: upgrade 1.12.0 -> 1.12.1
Changelog:
Fix link errors to OTel spans (#1787)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
2360fc7fd0 python3-pymisp: upgrade 2.4.166 -> 2.4.167
Changelog:
=========
- Bump objects.
- Bump changelog.
- Bump version.
- Bump objects.
- Bump dependencies, move to poetry 1.3.
- Bump certifi.
- Bump deps.
- Bump deps.
- Re-order classes.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
22a0d0bbff python3-traitlets: upgrade 5.7.1 -> 5.8.0
Changelog:
==========
 Shell command-line tab-completion via argcomplete #811
 Expose more attributes for typing #817
 Fix lint #814
 Additional Application examples and docs #811

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
d3dd8742be python3-multidict: upgrade 6.0.3 -> 6.0.4
Changelog:
==========
-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.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
9ac83bbfe3 python3-isort: upgrade 5.11.3 -> 5.11.4
Changelog:
==========
 Fixed #2038 (again): stop installing documentation files to top-level site-packages
 CI: only run release workflows for upstream (#2052)
 Tests: remove obsolete toml import from the test suite (#1978)
 CI: bump Poetry 1.3.1 (#2058)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
6a1b55176e python3-imageio: upgrade 2.22.4 -> 2.23.0
Changelog:
==========
Feature
--------
  Add support for Python 3.11 (#920) (e4146a1)

Other
-------
  Exclude py3.11 on windows (#917) (c57e31c)
  GitHub Actions add Python 3.11 to the testing (#916) (8d49551)
  Add migration instructions for as_gray in new pillow plugin. (#913) (b3b040a)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
785cc75d54 python3-bitarray: upgrade 2.6.0 -> 2.6.1
Changelog:
==========
 * add documentation on shift operators, #181
 * fix typo in iterable initializer description, #179
 * optimize 'richcompare()'

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
a4f6e682a6 python3-coverage: upgrade 6.5.0 -> 7.0.1
Changelog:
==========
-When checking if a file mapping resolved to a file that exists, we weren't
 considering files in .whl files. This is now fixed, closing issue 1511.
-File pattern rules were too strict, forbidding plus signs and curly braces
 in directory and file names. This is now fixed, closing issue 1513.
-Unusual Unicode or control characters in source files could prevent reporting.
 This is now fixed, closing issue 1512.
-The PyPy wheel now installs on PyPy 3.7, 3.8, and 3.9, closing issue 1510.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
32a830774f python3-autobahn: upgrade 22.7.1 -> 22.12.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
cb26b94f38 python3-asgiref: upgrade 3.5.2 -> 3.6.0
Changelog:
===========
* Two new functions are added to the "asgiref.sync" module: "iscoroutinefunction()"
  and "markcoroutinefunction()".

  Python 3.12 deprecates "asyncio.iscoroutinefunction()" as an alias for
  "inspect.iscoroutinefunction()", whilst also removing the "_is_coroutine" marker.
  The latter is replaced with the "inspect.markcoroutinefunction" decorator.

  The new "asgiref.sync" functions are compatibility shims for these
  functions that can be used until Python 3.12 is the minimum supported
  version.

  **Note** that these functions are considered **beta**, and as such, whilst
  not likely, are subject to change in a point release, until the final release
  of Python 3.12. They are included in "asgiref" now so that they can be
  adopted by Django 4.2, in preparation for support of Python 3.12.

* The "loop" argument to "asgiref.timeout.timeout" is deprecated. As per other
  "asyncio" based APIs, the running event loop is used by default. Note that
  "asyncio" provides timeout utilities from Python 3.11, and these should be
  preferred where available.

* Support for the "ASGI_THREADS" environment variable, used by
  "SyncToAsync", is removed. In general, a running event-loop is not
  available to `asgiref` at import time, and so the default thread pool
  executor cannot be configured. Protocol servers, or applications, should set
  the default executor as required when configuring the event loop at
  application startup.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
768876c47a python3-cytoolz: upgrade 0.12.0 -> 0.12.1
Changelog:
==========
  Support Python 3.11 (including wheels)
  Drop Python 3.5 support

License-Update: Copyright year updated to 2022

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
888a2de917 python3-alembic: upgrade 1.9.0 -> 1.9.1
Changelog:
===========
-Fixed issue where server default compare would not work for string defaults
 that contained backslashes, due to mis-rendering of these values when comparing
 their contents.
-Implemented basic server default comparison for the Oracle backend; previously,
 Oracle's formatting of reflected defaults prevented any matches from occurring.
-Adjusted SQLite's compare server default implementation to better handle
 defaults with or without parens around them, from both the reflected and the
 local metadata side.
-Adjusted SQL Server's compare server default implementation to better handle
 defaults with or without parens around them, from both the reflected and the
 local metadata side.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-27 16:03:06 -08:00
Wang Mingyu
5257e7a839 python3-isort: upgrade 5.10.1 -> 5.11.3
Changelog:
===========
 Fixed #2007: settings for py3.11 (#2040)
 Fixed #2038: packaging pypoetry (#2042)
 Docs: renable portray (#2043)
 Ci: add minimum GitHub token permissions for workflows (#1969)
 Ci: general CI improvements (#2041)
 Ci: add release workflow (#2026)
 Hotfix #2034: isort --version is not accurate on 5.11.x releases (#2034)
 Hotfix #2031: only call colorama.init if colorama is available (#2032)
 Added official support for Python 3.11 (#1996, #2008, #2011)
 Dropped support for Python 3.6 (#2019)
 Fixed problematic tests (#2021, #2022)
 Fixed #1960: Rich compatibility (#1961)
 Fixed #1945, #1986: Python 4.0 upper bound dependency resolving issues
 Fixed Pyodide CDN URL (#1991)
 Docs: clarify description of use_parentheses (#1941)
 Fixed #1976: black compatibility for .pyi files
 Implemented #1683: magic trailing comma option (#1876)
 Add missing space in unrecoverable exception message (#1933)
 Fixed #1895: skip-gitignore: use allow list, not deny list
 Fixed #1917: infinite loop for unmatched parenthesis (#1919)
 Docs: shared profiles (#1896)
 Fixed build-backend values in the example plugins (#1892)
 Remove reference to jamescurtin/isort-action (#1885)
 Split long cython import lines (#1931)
 Update plone profile: copy of black, plus three settings. (#1926)
 Fixed #1815, #1862: Add a command-line flag to sort all re-exports (#1863)
 Fixed #1854: lines_before_imports appending lines after comments (#1861)
 Remove redundant multi_line_output = 3 from "Compatibility with black" (#1858)
 Add tox config example (#1856)
 Docs: add examples for frozenset and tuple settings (#1822)
 Docs: add multiple config documentation (#1850)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:23 -08:00
Wang Mingyu
e0d2f0e4d6 python3-sqlalchemy: upgrade 1.4.44 -> 1.4.45
Changelog:
https://docs.sqlalchemy.org/en/20/changelog/changelog_14.html#change-1.4.45

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
7a3aa8533b python3-traitlets: upgrade 5.7.0 -> 5.7.1
Changelog:
fix: some descriptors raise AttributeError #812

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
97c8c2921e python3-sentry-sdk: upgrade 1.11.1 -> 1.12.0
Changelog:
=========
Basic OTel support
-------------------
This adds support to automatically integrate OpenTelemetry performance tracing with Sentry.

Various fixes & improvements
-------------------------------
    Tox Cleanup (#1749)
    CI: Fix Github action checks (#1780)
    Profiling: Introduce active thread id on scope (#1764)
    Profiling: Eagerly hash stack for profiles (#1755)
    Profiling: Resolve inherited method class names (#1756)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
010015b8eb python3-pydicti: upgrade 1.1.6 -> 1.2.0
Changelog:
add type hints

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
77f323224f python3-pyproj: upgrade 3.4.0 -> 3.4.1
Changelog:
=========
 WHL: Add win32 to build_wheels matrix (pull #1169)
 BUG: Changed so that the setup.cfg depends on the version code in the __init__.py instead of the other way around (issuue #1155)
 BUG: Fix CRS.to_cf() for Pole rotation GRIB convention (pull #1167)
 BUG: Fix CRS.to_authority() memory leak (pull #1178)
 REF: Use upper case EPSG code when creating CRS (pull #1162)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
c71058fcd1 python3-pychromecast: upgrade 13.0.2 -> 13.0.4
Changelog:
==========
Correct timeout in call to poll.poll (#687)
Revert "Revert "Fix error with select when python process exceeds 1024 open file descriptors"" (#686)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
6f4cd259da python3-pycurl: upgrade 7.45.1 -> 7.45.2
Changelog:
This release fixes several minor issues and adds support for several libcurl options.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
a4f2c7388d python3-pycares: upgrade 4.2.2 -> 4.3.0
Changelog:
=========
  Bump cibuildwheel to build for Python 3.11 + CI total time speedups
  Fix tests that depended on external sites
  Complete the Python 3.11 support
  Drop CPython 3.6
  Improve test compatibility with pytest
  Update c-ares submodule to 1.18.1

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
6f5adac2bf python3-protobuf: upgrade 4.21.11 -> 4.21.12
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
91036391dc python3-google-api-python-client: upgrade 2.69.0 -> 2.70.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
84627d2688 python3-eth-account: upgrade 0.7.0 -> 0.8.0
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
16af8d7819 python3-gmpy2: upgrade 2.1.3 -> 2.1.5
Changelog:
Fixes to build Apple Silicon binary builds

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Wang Mingyu
99fb5d0229 python3-alembic: upgrade 1.8.1 -> 1.9.0
Changelog:
==========
feature
--------
 [feature] [commands] Added new Alembic command alembic check. This performs the widely
 requested feature of running an "autogenerate" comparison between the
 current database and the MetaData that's currently set up for
 autogenerate, returning an error code if the two do not match, based on
 current autogenerate settings. Pull request courtesy Nathan Louie.

bug
-------
 [bug] [tests] Fixed issue in tox.ini file where changes in the tox 4.0 series to the
 format of "passenv" caused tox to not function correctly, in particular
 raising an error as of tox 4.0.6.

 [bug] [typing] Fixed typing issue where revision.process_revision_directives
 was not fully typed; additionally ensured all Callable and Dict
 arguments to EnvironmentContext.configure() include parameters in
 the typing declaration.

 Additionally updated the codebase for Mypy 0.990 compliance.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-23 08:52:22 -08:00
Roger Knecht
d50e9ebee0 python3-rapidjson: add recipe
Add a recipe for the python bindings of the rapidjson library.

Signed-off-by: Roger Knecht <roger@norberthealth.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-13 09:18:18 -08:00
Wang Mingyu
49be258f92 python3-yamlloader: upgrade 1.1.0 -> 1.2.2
Changelog:
add Python 3.11 support

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
5d6cc874c1 python3-yarl: upgrade 1.8.1 -> 1.8.2
Changelog:
Add support for python3.11

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
68d670ea45 python3-pytest-xdist: upgrade 3.0.2 -> 3.1.0
Changelog:
==========

Features
---------
    #789: Users can now set a default distribution mode in their configuration file:

Removals
--------
    #842: Python 3.6 is no longer supported.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
9a14806ecb python3-pymisp: upgrade 2.4.165.1 -> 2.4.166
Changelog:
==========
New
----
- Basic support for listing, enabling and disabling decaying models.
- [tests] Test for local tags.

Changes
--------
- [types] added azure-application-id.

Fix
-----
- [describetypes] updated with the latest output from MISP.
- [types] added missing type value.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
8bab5a22cc python3-pychromecast: upgrade 13.0.1 -> 13.0.2
Changelogg:
============
 Adding support for reported unknown devices (#680)
 Add Chromecast Ultra and Chromecast HD to the recognised devices (#679)
 Fix error with select when python process exceeds 1024 open file descriptors (#676)
 Include URL and UUID in Home Assistant controller messages (#613)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
1abf2a309e python3-watchdog: upgrade 2.1.9 -> 2.2.0
Changelog:
==========
[build] Wheels are now available for Python 3.11 (#932)
[documentation] HTML documentation builds are now tested for errors (#902)
[documentation] Fix typos here, and there (#910)
[fsevents2] The fsevents2 observer is now deprecated (#909)
[tests] The error message returned by musl libc for error code -1 is now allowed (#923)
[utils] Remove unnecessary code in dirsnapshot.py (#930)
[watchmedo] Handle shutdown events from SIGHUP (#912)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
61a8441b96 python3-multidict: upgrade 6.0.2 -> 6.0.3
Changelog:
Declared the official support for Python 3.11

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
3b48314689 python3-gmpy2: upgrade 2.1.2 -> 2.1.3
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
14939a289e python3-google-api-python-client: upgrade 2.68.0 -> 2.69.0
Changelog:
Fix media upload URI when API endpoint is overridden with client_opions.api_endpoint

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
812eaf1612 python3-cbor2: upgrade 5.4.5 -> 5.4.6
Changelog:
Fix MemoryError when decoding Tags on 32bit architecture.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00
Wang Mingyu
2382a96da8 python3-asttokens: upgrade 2.2.0 -> 2.2.1
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2022-12-12 11:17:23 -08:00