edgarrmondragon / citric

A client to the LimeSurvey Remote Control API 2, written in modern Python.
https://citric.rtfd.io
MIT License
26 stars 8 forks source link

chore(deps-dev): bump the development-dependencies group with 6 updates #1019

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps the development-dependencies group with 6 updates:

Package From To
faker 19.6.2 19.12.1
mypy 1.5.1 1.6.1
pytest 7.4.2 7.4.3
semver 3.0.1 3.0.2
types-requests 2.31.0.7 2.31.0.10
xdoctest 1.1.1 1.1.2

Updates faker from 19.6.2 to 19.12.1

Release notes

Sourced from faker's releases.

Release v19.12.1

See CHANGELOG.md.

Release v19.12.0

See CHANGELOG.md.

Release v19.11.1

See CHANGELOG.md.

Release v19.11.0

See CHANGELOG.md.

Release v19.10.0

See CHANGELOG.md.

Release v19.9.1

See CHANGELOG.md.

Release v19.9.0

See CHANGELOG.md.

Release v19.8.1

See CHANGELOG.md.

Release v19.8.0

See CHANGELOG.md.

Release v19.7.0

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v19.12.1 - 2023-10-31

v19.12.0 - 2023-10-24

v19.11.1 - 2023-10-24

  • Fix handling for finnish ssn where min_age and max_age are the same. Thanks @​Pakkanen1.

v19.11.0 - 2023-10-18

v19.10.0 - 2023-10-11

  • Update names and phone numbers for cs_CZ. Thanks @​george0st.

v19.9.1 - 2023-10-11

  • Revert "fix type error in pyfloat when max_value is None" from v19.6.2.

v19.9.0 - 2023-10-10

  • Use DE base for de_CH AddressProvider. Thanks @​nchiapol.

v19.8.1 - 2023-10-10

  • Fix person Latvian provider.

v19.8.0 - 2023-10-09

v19.7.0 - 2023-10-09

Commits


Updates mypy from 1.5.1 to 1.6.1

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Unreleased

Stubgen will now include __all__ in its output if it is in the input file (PR 16356).

Other Notable Changes and Fixes

...

Acknowledgements

...

Mypy 1.6

Tuesday, 10 October 2023

We’ve just uploaded mypy 1.6 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Introduce Error Subcodes for Import Errors

Mypy now uses the error code import-untyped if an import targets an installed library that doesn’t support static type checking, and no stub files are available. Other invalid imports produce the import-not-found error code. They both are subcodes of the import error code, which was previously used for both kinds of import-related errors.

Use --disable-error-code=import-untyped to only ignore import errors about installed libraries without stubs. This way mypy will still report errors about typos in import statements, for example.

If you use --warn-unused-ignore or --strict, mypy will complain if you use # type: ignore[import] to ignore an import error. You are expected to use one of the more specific error codes instead. Otherwise, ignoring the import error code continues to silence both errors.

This feature was contributed by Shantanu (PR 15840, PR 14740).

Remove Support for Targeting Python 3.6 and Earlier

Running mypy with --python-version 3.6, for example, is no longer supported. Python 3.6 hasn’t been properly supported by mypy for some time now, and this makes it explicit. This was contributed by Nikita Sobolev (PR 15668).

Selective Filtering of --disallow-untyped-calls Targets

Using --disallow-untyped-calls could be annoying when using libraries with missing type information, as mypy would generate many errors about code that uses the library. Now you can use --untyped-calls-exclude=acme, for example, to disable these errors about calls targeting functions defined in the acme package. Refer to the documentation for more information.

This feature was contributed by Ivan Levkivskyi (PR 15845).

Improved Type Inference between Callable Types

Mypy now does a better job inferring type variables inside arguments of callable types. For example, this code fragment now type checks correctly:

def f(c: Callable[[T, S], None]) -> Callable[[str, T, S], None]: ...
def g(*x: int) -> None: ...

</tr></table>

... (truncated)

Commits


Updates pytest from 7.4.2 to 7.4.3

Release notes

Sourced from pytest's releases.

pytest 7.4.3 (2023-10-24)

Bug Fixes

  • #10447: Markers are now considered in the reverse mro order to ensure base class markers are considered first -- this resolves a regression.

  • #11239: Fixed := in asserts impacting unrelated test cases.

  • #11439: Handled an edge case where :data:sys.stderr might already be closed when :ref:faulthandler is tearing down.

Commits
  • 2390610 Tweak changelog.rst
  • a0714aa Prepare release version 7.4.3
  • 44ad1c9 [7.4.x] fix #10447 - consider marks in reverse mro order to give base classes...
  • 5dc7725 [7.4.x] Ensure logging tests always cleanup after themselves (#11541)
  • a517827 [7.4.x] Configure ReadTheDocs to fail on warnings (#11540)
  • 21fe071 [7.4.x] fix for ValueError raised in faulthandler teardown code (#11455)
  • f8bb857 Force terminal width when running tests (#11425) (#11432)
  • 1944dc0 [7.4.x] Fix --import-mode=importlib when root contains __init__.py file (#1...
  • 946634c Merge pull request #11419 from nicoddemus/backport-11414-to-7.4.x
  • d849a3e [7.4.x] fix: closes #11343's [attr-defined] type errors (#11421)
  • Additional commits viewable in compare view


Updates semver from 3.0.1 to 3.0.2

Release notes

Sourced from semver's releases.

3.0.2

Documentation: https://python-semver.rtfd.io/en/3.0.2/ PyPI: https://pypi.org/project/semver/3.0.2/ Full Changelog: https://github.com/python-semver/python-semver/compare/3.0.1...3.0.2 Full Changelog between last 2 release and 3: https://github.com/python-semver/python-semver/compare/3.0.1...3.0.2

What's Changed

New Contributors

Full Changelog: https://github.com/python-semver/python-semver/compare/3.0.1...3.0.2

Changelog

Sourced from semver's changelog.

Version 3.0.2

:Released: 2023-10-09 :Maintainer:

Bug Fixes

  • :pr:418: Replace :class:~collection.OrderedDict with :class:dict.

    The dict datatype is ordered since Python 3.7. As we do not support Python 3.6 anymore, it can be considered safe to avoid :class:~collection.OrderedDict. Related to :gh:419.

  • :pr:426: Fix :meth:~semver.version.Version.replace method to use the derived class of an instance instead of :class:~semver.version.Version class.

Improved Documentation

  • :pr:431: Clarify version policy for the different semver versions (v2, v3, >v3) and the supported Python versions.

  • :gh:432: Improve external doc links to Python and Pydantic.

Features

  • :pr:417: Amend GitHub Actions to check against MacOS.

Trivial/Internal Changes

  • :pr:420: Introduce :py:class:~typing.ClassVar for some :class:~semver.version.Version class variables, mainly :data:~semver.version.Version.NAMES and some private.

  • :pr:421: Insert mypy configuration into :file:pyproject.toml and remove config options from :file:tox.ini.


Commits
  • ec9348a Add missing .readthedocs.yaml
  • f65feab Correct some smaller issues when building
  • 2154ce7 Merge pull request #433 from tomschr/release/3.0.2
  • fb02b3b Build 3.0.2 release of semver
  • c534e3f Merge pull request #432 from tomschr/improve-intersphinx
  • 23e0e73 Improve external docs with intersphinx extension
  • 9a98394 Merge pull request #431 from tomschr/version-policy
  • 083b592 Clarify version policy for semver
  • 9391f8a Rename a news fragment for Towncrier
  • bd313ed Merge pull request #430 from apiwat-chantawibul/fix-semver-pydantic-serializa...
  • Additional commits viewable in compare view


Updates types-requests from 2.31.0.7 to 2.31.0.10

Commits


Updates xdoctest from 1.1.1 to 1.1.2

Release notes

Sourced from xdoctest's releases.

Version 1.1.2 - Released 2023-010-25

Added

  • Partial support for 3.12. New f-string syntax is not supported yet.

Changed

  • Removed dependency on six and got rid of old Python 2 logic
Changelog

Sourced from xdoctest's changelog.

Version 1.1.2 - Released 2023-010-25

Added

  • Partial support for 3.12. New f-string syntax is not supported yet.

Changed

  • Removed dependency on six and got rid of old Python 2 logic
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions

:books: Documentation preview :books:: https://citric--1019.org.readthedocs.build/en/1019/

trunk-io[bot] commented 11 months ago

Merging to main in this repository is managed by Trunk.

codecov[bot] commented 11 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 100.00%. Comparing base (424bcbb) to head (49a3924). Report is 149 commits behind head on main.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #1019 +/- ## ========================================= Coverage 100.00% 100.00% ========================================= Files 8 8 Lines 434 434 Branches 23 23 ========================================= Hits 434 434 ``` | [Flag](https://app.codecov.io/gh/edgarrmondragon/citric/pull/1019/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Edgar+Ram%C3%ADrez+Mondrag%C3%B3n) | Coverage Δ | | |---|---|---| | [integration](https://app.codecov.io/gh/edgarrmondragon/citric/pull/1019/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Edgar+Ram%C3%ADrez+Mondrag%C3%B3n) | `90.55% <ø> (ø)` | | | [unit](https://app.codecov.io/gh/edgarrmondragon/citric/pull/1019/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Edgar+Ram%C3%ADrez+Mondrag%C3%B3n) | `93.08% <ø> (ø)` | | Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=Edgar+Ram%C3%ADrez+Mondrag%C3%B3n#carryforward-flags-in-the-pull-request-comment) to find out more.

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

edgarrmondragon commented 11 months ago

@dependabot rebase

sonarcloud[bot] commented 11 months ago

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information