Open renovate[bot] opened 6 days ago
Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.
♻ Renovate will retry this branch, including artifacts, only when one of the following happens:
The artifact failure details are included below:
Updating dependencies
Resolving dependencies...
The current project's Python requirement (>=3.7,<4.0) is not compatible with some of the required packages Python requirement:
- solnlib requires Python <3.14,>=3.7, so it will not be satisfied for Python >=3.14,<4.0
- solnlib requires Python <3.14,>=3.7, so it will not be satisfied for Python >=3.14,<4.0
Because no versions of solnlib match >6.0.0,<6.0.1 || >6.0.1,<7.0.0
and solnlib (6.0.0) requires Python <3.14,>=3.7, solnlib is forbidden.
So, because solnlib (6.0.1) requires Python <3.14,>=3.7
and splunktaucclib depends on solnlib (^6.0.0), version solving failed.
• Check your dependencies Python requirement: The Python requirement can be specified via the `python` or `markers` properties
For solnlib, a possible solution would be to set the `python` property to ">=3.7,<3.14"
For solnlib, a possible solution would be to set the `python` property to ">=3.7,<3.14"
https://python-poetry.org/docs/dependency-specification/#python-restricted-dependencies,
https://python-poetry.org/docs/dependency-specification/#using-environment-markers
This PR contains the following updates:
7.4.4
->8.3.3
5.4.0
->6.0.1
5.52.0
->5.54.0
v1.6
->v1.7
22.04
->24.04
Release Notes
pytest-dev/pytest (pytest)
### [`v8.3.3`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.3) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.3.2...8.3.3) # pytest 8.3.3 (2024-09-09) ## Bug fixes - [#12446](https://redirect.github.com/pytest-dev/pytest/issues/12446): Avoid calling `@property` (and other instance descriptors) during fixture discovery -- by `asottile`{.interpreted-text role="user"} - [#12659](https://redirect.github.com/pytest-dev/pytest/issues/12659): Fixed the issue of not displaying assertion failure differences when using the parameter `--import-mode=importlib` in pytest>=8.1. - [#12667](https://redirect.github.com/pytest-dev/pytest/issues/12667): Fixed a regression where type change in \[ExceptionInfo.errisinstance]{.title-ref} caused \[mypy]{.title-ref} to fail. - [#12744](https://redirect.github.com/pytest-dev/pytest/issues/12744): Fixed typing compatibility with Python 3.9 or less -- replaced \[typing.Self]{.title-ref} with \[typing_extensions.Self]{.title-ref} -- by `Avasam`{.interpreted-text role="user"} - [#12745](https://redirect.github.com/pytest-dev/pytest/issues/12745): Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments. - [#6682](https://redirect.github.com/pytest-dev/pytest/issues/6682): Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in `assert condition, msg`). - [#9422](https://redirect.github.com/pytest-dev/pytest/issues/9422): Fix bug where disabling the terminal plugin via `-p no:terminal` would cause crashes related to missing the `verbose` option. \-- by `GTowers1`{.interpreted-text role="user"} ## Improved documentation - [#12663](https://redirect.github.com/pytest-dev/pytest/issues/12663): Clarify that the \[pytest_deselected]{.title-ref} hook should be called from \[pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected. - [#12678](https://redirect.github.com/pytest-dev/pytest/issues/12678): Remove erroneous quotes from \[tmp_path_retention_policy]{.title-ref} example in docs. ## Miscellaneous internal changes - [#12769](https://redirect.github.com/pytest-dev/pytest/issues/12769): Fix typos discovered by codespell and add codespell to pre-commit hooks. ### [`v8.3.2`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.2) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.3.1...8.3.2) # pytest 8.3.2 (2024-07-24) ## Bug fixes - [#12652](https://redirect.github.com/pytest-dev/pytest/issues/12652): Resolve regression \[conda]{.title-ref} environments where no longer being automatically detected. \-- by `RonnyPfannschmidt`{.interpreted-text role="user"} ### [`v8.3.1`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.1) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.3.0...8.3.1) # pytest 8.3.1 (2024-07-20) The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes. ### [`v8.3.0`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.0) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.2.2...8.3.0) ### pytest 8.3.0 (2024-07-20) #### New features - [#12231](https://redirect.github.com/pytest-dev/pytest/issues/12231): Added \[--xfail-tb]{.title-ref} flag, which turns on traceback output for XFAIL results. - If the \[--xfail-tb]{.title-ref} flag is not given, tracebacks for XFAIL results are NOT shown. - The style of traceback for XFAIL is set with \[--tb]{.title-ref}, and can be \[auto|long|short|line|native|no]{.title-ref}. - Note: Even if you have \[--xfail-tb]{.title-ref} set, you won't see them if \[--tb=no]{.title-ref}. Some history: With pytest 8.0, \[-rx]{.title-ref} or \[-ra]{.title-ref} would not only turn on summary reports for xfail, but also report the tracebacks for xfail results. This caused issues with some projects that utilize xfail, but don't want to see all of the xfail tracebacks. This change detaches xfail tracebacks from \[-rx]{.title-ref}, and now we turn on xfail tracebacks with \[--xfail-tb]{.title-ref}. With this, the default \[-rx]{.title-ref}/ \[-ra]{.title-ref} behavior is identical to pre-8.0 with respect to xfail tracebacks. While this is a behavior change, it brings default behavior back to pre-8.0.0 behavior, which ultimately was considered the better course of action. - [#12281](https://redirect.github.com/pytest-dev/pytest/issues/12281): Added support for keyword matching in marker expressions. Now tests can be selected by marker keyword arguments. Supported values are `int`{.interpreted-text role="class"}, (unescaped) `str`{.interpreted-text role="class"}, `bool`{.interpreted-text role="class"} & `None`{.interpreted-text role="data"}. See `marker examplessplunk/addonfactory-solutions-library-python (solnlib)
### [`v6.0.1`](https://redirect.github.com/splunk/addonfactory-solutions-library-python/releases/tag/v6.0.1) [Compare Source](https://redirect.github.com/splunk/addonfactory-solutions-library-python/compare/v6.0.0...v6.0.1) ##### Bug Fixes - require splunk-sdk at least 2.0.2 ([#414](https://redirect.github.com/splunk/addonfactory-solutions-library-python/issues/414)) ([f50bf52](https://redirect.github.com/splunk/addonfactory-solutions-library-python/commit/f50bf52abdc7ce1afb8f50f8a427e6c70421c3ac)) ### [`v6.0.0`](https://redirect.github.com/splunk/addonfactory-solutions-library-python/releases/tag/v6.0.0) [Compare Source](https://redirect.github.com/splunk/addonfactory-solutions-library-python/compare/v5.5.0...v6.0.0) ##### Features - removing requests and urllib3 dependencies ([#413](https://redirect.github.com/splunk/addonfactory-solutions-library-python/issues/413)) ([a6fa555](https://redirect.github.com/splunk/addonfactory-solutions-library-python/commit/a6fa555ec8e724654a03fe200a94f643fd1c229e)) ##### BREAKING CHANGES - removing requests and urllib3 dependencies ### [`v5.5.0`](https://redirect.github.com/splunk/addonfactory-solutions-library-python/releases/tag/v5.5.0) [Compare Source](https://redirect.github.com/splunk/addonfactory-solutions-library-python/compare/v5.4.0...v5.5.0) ##### Features - add function to get the proxy details ([#406](https://redirect.github.com/splunk/addonfactory-solutions-library-python/issues/406)) ([c9e1f73](https://redirect.github.com/splunk/addonfactory-solutions-library-python/commit/c9e1f7350620963422747d90cfde529d3bb17511))splunk/addonfactory-ucc-generator (splunk-add-on-ucc-framework)
### [`v5.54.0`](https://redirect.github.com/splunk/addonfactory-ucc-generator/releases/tag/v5.54.0) [Compare Source](https://redirect.github.com/splunk/addonfactory-ucc-generator/compare/v5.53.2...v5.54.0) ##### Bug Fixes - allow packaging from 23.0 ([#1484](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1484)) ([29accc4](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/29accc40a6c560f0181473627d0552a53af878b4)) - display newest information in row more info section ([#1445](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1445)) ([2b34c6b](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/2b34c6b226619d0cfed6582a35181b7705de3983)), closes [#1410](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1410) - required star visibility when using modify prop ([#1489](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1489)) ([e1fe2b0](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/e1fe2b0b8322c5c49745ee3cc93cf538142325e0)) - support Windows when checking library version ([#1482](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1482)) ([db17b5c](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/db17b5c869b174639b0c24e5413bc9b517950940)) ##### Features - add license during init command ([#1475](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1475)) ([471294a](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/471294ae8e4c266a2f685aa4c01eb75fd1974db1)) - confirmation modal when activate/deactivate single input ([#1421](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1421)) ([34c8ec2](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/34c8ec250861eb06bd1cd4b22b430e5aa7e26a7c)) - do not create **pycache** in lib dir ([#1469](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1469)) ([ad58e50](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/ad58e50ca2b5588f6824a4da95a15e8c0857f032)) - **inputs:** show input services status count ([#1430](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1430)) ([2574451](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/257445159898a2207cdf7a397345c218678c8fcb)) ### [`v5.53.2`](https://redirect.github.com/splunk/addonfactory-ucc-generator/releases/tag/v5.53.2) [Compare Source](https://redirect.github.com/splunk/addonfactory-ucc-generator/compare/v5.53.1...v5.53.2) ##### Bug Fixes - **api:** cancelled requests don't emit user facing errors ([#1472](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1472)) ([0970441](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/09704416b5a56ddb518eabd01d596ec5e23157e3)) ### [`v5.53.1`](https://redirect.github.com/splunk/addonfactory-ucc-generator/releases/tag/v5.53.1) [Compare Source](https://redirect.github.com/splunk/addonfactory-ucc-generator/compare/v5.53.0...v5.53.1) ##### Bug Fixes - **select:** fetching options when some dependency is null ([#1463](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1463)) ([feb9bdf](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/feb9bdf27488fcd357e57e47173d72971cf24f35)) ### [`v5.53.0`](https://redirect.github.com/splunk/addonfactory-ucc-generator/releases/tag/v5.53.0) [Compare Source](https://redirect.github.com/splunk/addonfactory-ucc-generator/compare/v5.52.0...v5.53.0) ##### Bug Fixes - **Dropdown:** fix showing selected option when value is numeric ([#1439](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1439)) ([9e7394a](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/9e7394a2312238a79b9b5cb8d55f1427a6073696)) - generate oauth authentication fields for OpenAPI integration ([#1425](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1425)) ([beb561b](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/beb561b25755cbcc51326848bc78891f89cf47b3)) - **table:** custom mapping for values in Status column ([#1451](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1451)) ([4721738](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/472173801a50be6c9ac7ae91ab4a9d129d1bfd86)) ##### Features - add ability to provide custom pip flags ([#1447](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1447)) ([718c897](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/718c897347bd2db539354f6625be074e6d90d988)) - add grouping to configuration page ([#1432](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1432)) ([b94b228](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/b94b2289fec8e33d53414db36c6504428d84546c)) - deprecate .uccignore and upgrade additional_package ([#1415](https://redirect.github.com/splunk/addonfactory-ucc-generator/issues/1415)) ([f6dd96f](https://redirect.github.com/splunk/addonfactory-ucc-generator/commit/f6dd96feadef395d92ca3c7c0a3a6ff70c3c8f10))splunk/addonfactory-github-workflows (splunk/addonfactory-github-workflows)
### [`v1.7`](https://redirect.github.com/splunk/addonfactory-github-workflows/compare/v1.6...v1.7) [Compare Source](https://redirect.github.com/splunk/addonfactory-github-workflows/compare/v1.6...v1.7)Configuration
📅 Schedule: Branch creation - "every 2 weeks on Sunday" (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 was generated by Mend Renovate. View the repository job log.