chore(deps): update dependency iniconfig to v2.3.0 #18

Open
renovate-bot wants to merge 1 commit from renovate/iniconfig-2.x into master
Member

This PR contains the following updates:

Package Change Age Confidence
iniconfig ==2.0.0 -> ==2.3.0 age confidence

Release Notes

pytest-dev/iniconfig (iniconfig)

v2.3.0

Compare Source

=====

  • add IniConfig.parse() classmethod with strip_inline_comments parameter (fixes #​55)
    • by default (strip_inline_comments=True), inline comments are properly stripped from values
    • set strip_inline_comments=False to preserve old behavior if needed
  • IniConfig() constructor maintains backward compatibility (does not strip inline comments)
  • users should migrate to IniConfig.parse() for correct comment handling
  • add strip_section_whitespace parameter to IniConfig.parse() (regarding #​4)
    • opt-in parameter to strip Unicode whitespace from section names
    • when True, strips Unicode whitespace (U+00A0, U+2000, U+3000, etc.) from section names
    • when False (default), preserves existing behavior for backward compatibility
  • clarify Unicode whitespace handling (regarding #​4)
    • since iniconfig 2.0.0 (Python 3 only), all strings are Unicode by default
    • Python 3's str.strip() has handled Unicode whitespace since Python 3.0 (2008)
    • iniconfig automatically benefits from this in all supported versions (Python >= 3.10)
    • key names and values have Unicode whitespace properly stripped using Python's built-in methods

v2.2.0

Compare Source

=====

  • drop Python 3.8 and 3.9 support (now requires Python >= 3.10)
  • add Python 3.14 classifier
  • migrate from hatchling to setuptools 77 with setuptools_scm
  • adopt PEP 639 license specifiers and PEP 740 build attestations
  • migrate from black + pyupgrade to ruff
  • migrate CI to uv and unified test workflow
  • automate GitHub releases and PyPI publishing via Trusted Publishing
  • include tests in sdist
  • modernize code for Python 3.10+ (remove future annotations, TYPE_CHECKING guards)
  • rename _ParsedLine to ParsedLine

v2.1.0

Compare Source

=====

  • fix artifact building - pin minimal version of hatch
  • drop eol python 3.8
  • add python 3.12 and 3.13

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [iniconfig](https://github.com/pytest-dev/iniconfig) | `==2.0.0` -> `==2.3.0` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/iniconfig/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/iniconfig/2.0.0/2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>pytest-dev/iniconfig (iniconfig)</summary> ### [`v2.3.0`](https://github.com/pytest-dev/iniconfig/blob/HEAD/CHANGELOG#230) [Compare Source](https://github.com/pytest-dev/iniconfig/compare/v2.2.0...v2.3.0) \===== - add IniConfig.parse() classmethod with strip\_inline\_comments parameter (fixes [#&#8203;55](https://github.com/pytest-dev/iniconfig/issues/55)) - by default (strip\_inline\_comments=True), inline comments are properly stripped from values - set strip\_inline\_comments=False to preserve old behavior if needed - IniConfig() constructor maintains backward compatibility (does not strip inline comments) - users should migrate to IniConfig.parse() for correct comment handling - add strip\_section\_whitespace parameter to IniConfig.parse() (regarding [#&#8203;4](https://github.com/pytest-dev/iniconfig/issues/4)) - opt-in parameter to strip Unicode whitespace from section names - when True, strips Unicode whitespace (U+00A0, U+2000, U+3000, etc.) from section names - when False (default), preserves existing behavior for backward compatibility - clarify Unicode whitespace handling (regarding [#&#8203;4](https://github.com/pytest-dev/iniconfig/issues/4)) - since iniconfig 2.0.0 (Python 3 only), all strings are Unicode by default - Python 3's str.strip() has handled Unicode whitespace since Python 3.0 (2008) - iniconfig automatically benefits from this in all supported versions (Python >= 3.10) - key names and values have Unicode whitespace properly stripped using Python's built-in methods ### [`v2.2.0`](https://github.com/pytest-dev/iniconfig/blob/HEAD/CHANGELOG#220) [Compare Source](https://github.com/pytest-dev/iniconfig/compare/v2.1.0...v2.2.0) \===== - drop Python 3.8 and 3.9 support (now requires Python >= 3.10) - add Python 3.14 classifier - migrate from hatchling to setuptools 77 with setuptools\_scm - adopt PEP 639 license specifiers and PEP 740 build attestations - migrate from black + pyupgrade to ruff - migrate CI to uv and unified test workflow - automate GitHub releases and PyPI publishing via Trusted Publishing - include tests in sdist - modernize code for Python 3.10+ (remove **future** annotations, TYPE\_CHECKING guards) - rename \_ParsedLine to ParsedLine ### [`v2.1.0`](https://github.com/pytest-dev/iniconfig/blob/HEAD/CHANGELOG#210) [Compare Source](https://github.com/pytest-dev/iniconfig/compare/v2.0.0...v2.1.0) \===== - fix artifact building - pin minimal version of hatch - drop eol python 3.8 - add python 3.12 and 3.13 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTIuMCIsInVwZGF0ZWRJblZlciI6IjQxLjE1Mi45IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbInJlbm92YXRlLWJvdCJdfQ==-->
renovate-bot changed title from chore(deps): update dependency iniconfig to v2.1.0 to chore(deps): update dependency iniconfig to v2.3.0 2025-10-20 05:23:05 +05:30
renovate-bot force-pushed renovate/iniconfig-2.x from a07f7fc18e to 9a5676fc4e 2025-10-20 05:23:05 +05:30 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/iniconfig-2.x:renovate/iniconfig-2.x
git switch renovate/iniconfig-2.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch master
git merge --no-ff renovate/iniconfig-2.x
git switch renovate/iniconfig-2.x
git rebase master
git switch master
git merge --ff-only renovate/iniconfig-2.x
git switch renovate/iniconfig-2.x
git rebase master
git switch master
git merge --no-ff renovate/iniconfig-2.x
git switch master
git merge --squash renovate/iniconfig-2.x
git switch master
git merge --ff-only renovate/iniconfig-2.x
git switch master
git merge renovate/iniconfig-2.x
git push origin master
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
mCaptcha/mcaptcha-api-rs!18
No description provided.