openfun / jitsi-magnify

An authentication and room management system for Jitsi built with Django/React
MIT License
23 stars 6 forks source link

⬆️(dependencies) update python dependencies #230

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lxml (source, changelog) ==4.9.2 -> ==4.9.3 age adoption passing confidence
pytest (source, changelog) ==7.3.2 -> ==7.4.0 age adoption passing confidence
sentry-sdk (changelog) ==1.25.1 -> ==1.27.0 age adoption passing confidence

Release Notes

lxml/lxml (lxml) ### [`v4.9.3`](https://togithub.com/lxml/lxml/blob/HEAD/CHANGES.txt#493-2023-07-05) [Compare Source](https://togithub.com/lxml/lxml/compare/lxml-4.9.2...lxml-4.9.3) \================== ## Bugs fixed - `lxml.objectify` accepted non-decimal numbers like `²²²` as integers. - A memory leak in `lxml.html.clean` was resolved by switching to Cython 0.29.34+. - [GH#348](https://togithub.com/GH/lxml/issues/348): URL checking in the HTML cleaner was improved. Patch by Tim McCormack. - [GH#371](https://togithub.com/GH/lxml/issues/371), [GH#373](https://togithub.com/GH/lxml/issues/373): Some regex strings were changed to raw strings to fix Python warnings. Patches by Jakub Wilk and Anthony Sottile. ## Other changes - Wheels include zlib 1.2.13, libxml2 2.10.3 and libxslt 1.1.38 (zlib 1.2.12, libxml2 2.10.3 and libxslt 1.1.37 on Windows). - Built with Cython 0.29.36 to adapt to changes in Python 3.12.
pytest-dev/pytest (pytest) ### [`v7.4.0`](https://togithub.com/pytest-dev/pytest/releases/tag/7.4.0) [Compare Source](https://togithub.com/pytest-dev/pytest/compare/7.3.2...7.4.0) # pytest 7.4.0 (2023-06-23) ## Features - [#​10901](https://togithub.com/pytest-dev/pytest/issues/10901): Added `ExceptionInfo.from_exception() `{.interpreted-text role="func"}, a simpler way to create an `~pytest.ExceptionInfo`{.interpreted-text role="class"} from an exception. This can replace `ExceptionInfo.from_exc_info() `{.interpreted-text role="func"} for most uses. ## Improvements - [#​10872](https://togithub.com/pytest-dev/pytest/issues/10872): Update test log report annotation to named tuple and fixed inconsistency in docs for `pytest_report_teststatus`{.interpreted-text role="hook"} hook. - [#​10907](https://togithub.com/pytest-dev/pytest/issues/10907): When an exception traceback to be displayed is completely filtered out (by mechanisms such as `__tracebackhide__`, internal frames, and similar), now only the exception string and the following message are shown: "All traceback entries are hidden. Pass \[--full-trace]{.title-ref} to see hidden and internal frames.". Previously, the last frame of the traceback was shown, even though it was hidden. - [#​10940](https://togithub.com/pytest-dev/pytest/issues/10940): Improved verbose output (`-vv`) of `skip` and `xfail` reasons by performing text wrapping while leaving a clear margin for progress output. Added `TerminalReporter.wrap_write()` as a helper for that. - [#​10991](https://togithub.com/pytest-dev/pytest/issues/10991): Added handling of `%f` directive to print microseconds in log format options, such as `log-date-format`. - [#​11005](https://togithub.com/pytest-dev/pytest/issues/11005): Added the underlying exception to the cache provider's path creation and write warning messages. - [#​11013](https://togithub.com/pytest-dev/pytest/issues/11013): Added warning when `testpaths`{.interpreted-text role="confval"} is set, but paths are not found by glob. In this case, pytest will fall back to searching from the current directory. - [#​11043](https://togithub.com/pytest-dev/pytest/issues/11043): When \[--confcutdir]{.title-ref} is not specified, and there is no config file present, the conftest cutoff directory (\[--confcutdir]{.title-ref}) is now set to the `rootdir `{.interpreted-text role="ref"}. Previously in such cases, \[conftest.py]{.title-ref} files would be probed all the way to the root directory of the filesystem. If you are badly affected by this change, consider adding an empty config file to your desired cutoff directory, or explicitly set \[--confcutdir]{.title-ref}. - [#​11081](https://togithub.com/pytest-dev/pytest/issues/11081): The `norecursedirs`{.interpreted-text role="confval"} check is now performed in a `pytest_ignore_collect`{.interpreted-text role="hook"} implementation, so plugins can affect it. If after updating to this version you see that your \[norecursedirs]{.title-ref} setting is not being respected, it means that a conftest or a plugin you use has a bad \[pytest_ignore_collect]{.title-ref} implementation. Most likely, your hook returns \[False]{.title-ref} for paths it does not want to ignore, which ends the processing and doesn't allow other plugins, including pytest itself, to ignore the path. The fix is to return \[None]{.title-ref} instead of \[False]{.title-ref} for paths your hook doesn't want to ignore. - [#​8711](https://togithub.com/pytest-dev/pytest/issues/8711): `caplog.set_level() `{.interpreted-text role="func"} and `caplog.at_level() `{.interpreted-text role="func"} will temporarily enable the requested `level` if `level` was disabled globally via `logging.disable(LEVEL)`. ## Bug Fixes - [#​10831](https://togithub.com/pytest-dev/pytest/issues/10831): Terminal Reporting: Fixed bug when running in `--tb=line` mode where `pytest.fail(pytrace=False)` tests report `None`. - [#​11068](https://togithub.com/pytest-dev/pytest/issues/11068): Fixed the `--last-failed` whole-file skipping functionality ("skipped N files") for `non-python test files `{.interpreted-text role="ref"}. - [#​11104](https://togithub.com/pytest-dev/pytest/issues/11104): Fixed a regression in pytest 7.3.2 which caused to `testpaths`{.interpreted-text role="confval"} to be considered for loading initial conftests, even when it was not utilized (e.g. when explicit paths were given on the command line). Now the `testpaths` are only considered when they are in use. - [#​1904](https://togithub.com/pytest-dev/pytest/issues/1904): Fixed traceback entries hidden with `__tracebackhide__ = True` still being shown for chained exceptions (parts after "... the above exception ..." message). - [#​7781](https://togithub.com/pytest-dev/pytest/issues/7781): Fix writing non-encodable text to log file when using `--debug`. ## Improved Documentation - [#​9146](https://togithub.com/pytest-dev/pytest/issues/9146): Improved documentation for `caplog.set_level() `{.interpreted-text role="func"}. ## Trivial/Internal Changes - [#​11031](https://togithub.com/pytest-dev/pytest/issues/11031): Enhanced the CLI flag for `-c` to now include `--config-file` to make it clear that this flag applies to the usage of a custom config file.
getsentry/sentry-python (sentry-sdk) ### [`v1.27.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1270) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.26.0...1.27.0) ##### Various fixes & improvements - Support for SQLAlchemy 2.0 ([#​2200](https://togithub.com/getsentry/sentry-python/issues/2200)) by [@​antonpirker](https://togithub.com/antonpirker) - Add instrumentation of `aiohttp` client requests ([#​1761](https://togithub.com/getsentry/sentry-python/issues/1761)) by [@​md384](https://togithub.com/md384) - Add Django template tag for adding Sentry tracing information ([#​2222](https://togithub.com/getsentry/sentry-python/issues/2222)) by [@​antonpirker](https://togithub.com/antonpirker) - By adding `{{ sentry_trace_meta }}` to your Django templates we will include Sentry trace information as a meta tag in the rendered HTML to allow your frontend to pick up and continue the trace started in the backend. - Update Flask HTML meta helper ([#​2203](https://togithub.com/getsentry/sentry-python/issues/2203)) by [@​antonpirker](https://togithub.com/antonpirker) - Take trace ID always from propagation context ([#​2209](https://togithub.com/getsentry/sentry-python/issues/2209)) by [@​antonpirker](https://togithub.com/antonpirker) - Fix trace context in event payload ([#​2205](https://togithub.com/getsentry/sentry-python/issues/2205)) by [@​antonpirker](https://togithub.com/antonpirker) - Use new top level API in `trace_propagation_meta` ([#​2202](https://togithub.com/getsentry/sentry-python/issues/2202)) by [@​antonpirker](https://togithub.com/antonpirker) - Do not overwrite existing baggage on outgoing requests ([#​2191](https://togithub.com/getsentry/sentry-python/issues/2191), [#​2214](https://togithub.com/getsentry/sentry-python/issues/2214)) by [@​sentrivana](https://togithub.com/sentrivana) - Set the transaction/span status from an OTel span ([#​2115](https://togithub.com/getsentry/sentry-python/issues/2115)) by [@​daniil-konovalenko](https://togithub.com/daniil-konovalenko) - Fix propagation of OTel `NonRecordingSpan` ([#​2187](https://togithub.com/getsentry/sentry-python/issues/2187)) by [@​hartungstenio](https://togithub.com/hartungstenio) - Fix `TaskLockedException` handling in Huey integration ([#​2206](https://togithub.com/getsentry/sentry-python/issues/2206)) by [@​Zhenay](https://togithub.com/Zhenay) - Add message format configuration arguments to Loguru integration ([#​2208](https://togithub.com/getsentry/sentry-python/issues/2208)) by [@​Gwill](https://togithub.com/Gwill) - Profiling: Add client reports for profiles ([#​2207](https://togithub.com/getsentry/sentry-python/issues/2207)) by [@​Zylphrex](https://togithub.com/Zylphrex) - CI: Fix CI ([#​2220](https://togithub.com/getsentry/sentry-python/issues/2220)) by [@​antonpirker](https://togithub.com/antonpirker) - Dependencies: Bump `checkouts/data-schemas` from `7fdde87` to `1b85152` ([#​2218](https://togithub.com/getsentry/sentry-python/issues/2218)) by [@​dependabot](https://togithub.com/dependabot) - Dependencies: Bump `mypy` from 1.3.0 to 1.4.1 ([#​2194](https://togithub.com/getsentry/sentry-python/issues/2194)) by [@​dependabot](https://togithub.com/dependabot) - Docs: Change API doc theme ([#​2210](https://togithub.com/getsentry/sentry-python/issues/2210)) by [@​sentrivana](https://togithub.com/sentrivana) - Docs: Allow (some) autocompletion for top-level API ([#​2213](https://togithub.com/getsentry/sentry-python/issues/2213)) by [@​sentrivana](https://togithub.com/sentrivana) - Docs: Revert autocomplete hack ([#​2224](https://togithub.com/getsentry/sentry-python/issues/2224)) by [@​sentrivana](https://togithub.com/sentrivana) ### [`v1.26.0`](https://togithub.com/getsentry/sentry-python/blob/HEAD/CHANGELOG.md#1260) [Compare Source](https://togithub.com/getsentry/sentry-python/compare/1.25.1...1.26.0) ##### Various fixes & improvements - Tracing without performance ([#​2136](https://togithub.com/getsentry/sentry-python/issues/2136)) by [@​antonpirker](https://togithub.com/antonpirker) - Load tracing information from environment ([#​2176](https://togithub.com/getsentry/sentry-python/issues/2176)) by [@​antonpirker](https://togithub.com/antonpirker) - Auto-enable HTTPX integration if HTTPX installed ([#​2177](https://togithub.com/getsentry/sentry-python/issues/2177)) by [@​sentrivana](https://togithub.com/sentrivana) - Support for SOCKS proxies ([#​1050](https://togithub.com/getsentry/sentry-python/issues/1050)) by [@​Roguelazer](https://togithub.com/Roguelazer) - Wrap `parse_url` calls in `capture_internal_exceptions` ([#​2162](https://togithub.com/getsentry/sentry-python/issues/2162)) by [@​sentrivana](https://togithub.com/sentrivana) - Run 2.7 tests in CI again ([#​2181](https://togithub.com/getsentry/sentry-python/issues/2181)) by [@​sentrivana](https://togithub.com/sentrivana) - Crons: Do not support sub-minute cron intervals ([#​2172](https://togithub.com/getsentry/sentry-python/issues/2172)) by [@​antonpirker](https://togithub.com/antonpirker) - Profile: Add function name to profiler frame cache ([#​2164](https://togithub.com/getsentry/sentry-python/issues/2164)) by [@​Zylphrex](https://togithub.com/Zylphrex) - Dependencies: bump checkouts/data-schemas from `0ed3357` to `7fdde87` ([#​2165](https://togithub.com/getsentry/sentry-python/issues/2165)) by [@​dependabot](https://togithub.com/dependabot) - Update changelog ([#​2163](https://togithub.com/getsentry/sentry-python/issues/2163)) by [@​sentrivana](https://togithub.com/sentrivana)

Configuration

📅 Schedule: Branch creation - "before 7am on monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.