Skip to content

chore(deps): bump idna from 3.14 to 3.15 in /docs#189

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/docs/idna-3.15
Closed

chore(deps): bump idna from 3.14 to 3.15 in /docs#189
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/docs/idna-3.15

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Copy link
Copy Markdown
Contributor

Bumps idna from 3.14 to 3.15.

Changelog

Sourced from idna's changelog.

3.15 (2026-05-12)

  • Enforce DNS-length cap on individual labels early in check_label, short-circuiting contextual-rule processing for oversized input while staying compatible with UTS 46 usage.
  • Tidy core helpers: hoist bidi category sets to module-level frozensets (avoiding per-codepoint list construction), simplify length checks, and reuse the shared _unicode_dots_re from idna.core in the codec module.
  • Use raise ... from err for proper exception chaining and switch internal string formatting to f-strings.
  • Allow flit_core 4.x in the build backend.
  • Expand the ruff lint set (flake8-bugbear, flake8-simplify, pyupgrade, perflint) and apply the surfaced fixes; pin lint CI to Python 3.14.
  • Add Dependabot configuration for GitHub Actions.
  • Convert README and HISTORY from reStructuredText to Markdown.
  • Reference CVE-2026-45409 for the 3.14 advisory in place of the initial GHSA identifier.

Thanks to Felix Yan, Stan Ulbrych, and metsw24-max for contributions to this release.

Commits
  • af30a09 Release 3.15
  • 30314d4 Pre-release 3.15rc0
  • 05d4b21 Merge pull request #237 from kjd/convert-docs-to-markdown
  • 2987fdb Convert README and HISTORY from reStructuredText to Markdown
  • 59fa800 Merge pull request #236 from kjd/dependabot/github_actions/actions-f3e34333ea
  • def6983 Merge branch 'master' into dependabot/github_actions/actions-f3e34333ea
  • bbd8004 Merge pull request #234 from StanFromIreland/patch-1
  • edd07c0 Bump github/codeql-action from 3.35.2 to 4.35.2 in the actions group
  • 5557db0 Merge branch 'master' into patch-1
  • f11746c Merge pull request #235 from StanFromIreland/patch-2
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [idna](https://github.com/kjd/idna) from 3.14 to 3.15.
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.md)
- [Commits](kjd/idna@v3.14...v3.15)

---
updated-dependencies:
- dependency-name: idna
  dependency-version: '3.15'
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot requested a review from a team as a code owner May 19, 2026 21:53
@dependabot
dependabot Bot temporarily deployed to package-build May 19, 2026 21:54 Inactive
@codecov

codecov Bot commented May 19, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 87.66%. Comparing base (0a96950) to head (fc4b4d9).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #189   +/-   ##
=======================================
  Coverage   87.66%   87.66%           
=======================================
  Files          28       28           
  Lines        1897     1897           
  Branches      198      198           
=======================================
  Hits         1663     1663           
  Misses        158      158           
  Partials       76       76           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@github-actions

github-actions Bot commented May 19, 2026

Copy link
Copy Markdown

Test Results (macos)

path passed skipped subtotal
tests/test_tm_data_types.py 20 1 21
TOTAL 20 1 21
tests/test_tm_data_types.py
('/Users/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment')

Link to workflow run

@github-actions

github-actions Bot commented May 19, 2026

Copy link
Copy Markdown

Test Results (windows)

path passed failed skipped subtotal
tests\test_tm_data_types.py 19 1 1 21
TOTAL 19 1 1 21
tests\test_tm_data_types.py
tmp_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0')

    def test_parallel(tmp_path: Path) -> None:
        """Check to make sure that a parallel write can write a waveform and read the same waveform."""
        waveform_info = {}
        file_count = 10
    
        for index in range(file_count):
            waveform_path = tmp_path / f"test_parallel_{index}.wfm"
    
            waveform_data = np.array([index * locale for locale in range(10)], np.int16)
    
            waveform = AnalogWaveform()
            waveform.y_axis_values = waveform_data
            waveform.meta_info = AnalogWaveformMetaInfo(
                y_offset=0.0,
                y_position=0.0,
            )
            waveform_info[waveform_path.as_posix()] = waveform
    
        write_files_in_parallel(list(waveform_info.keys()), list(waveform_info.values()))
    
        if read_info := read_files_in_parallel(list(waveform_info.keys())):
            for file_path, waveform in read_info:
>               assert np.array_equal(waveform.y_axis_values, waveform_info[file_path].y_axis_values)
E               assert False
E                +  where False = <function array_equal at 0x000001DB5EB11830>(RawSample([], dtype=int16), RawSample([ 0,  7, 14, 21, 28, 35, 42, 49, 56, 63], dtype=int16))
E                +    where <function array_equal at 0x000001DB5EB11830> = np.array_equal
E                +    and   RawSample([], dtype=int16) = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>.y_axis_values
E                +    and   RawSample([ 0,  7, 14, 21, 28, 35, 42, 49, 56, 63], dtype=int16) = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0E50>.y_axis_values

file_count = 10
file_path  = 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm'
index      = 9
read_info  = [('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_3.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670B12B0>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_6.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67208050>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_0.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6709DD90>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67196090>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_4.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6708FEE0>),
 ('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_1.wfm',
  <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67168D60>)]
tmp_path   = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0')
waveform   = <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67194F50>
waveform_data = array([ 0,  9, 18, 27, 36, 45, 54, 63, 72, 81], dtype=int16)
waveform_info = {'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_0.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670C9310>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_1.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67066D70>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_2.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67066FD0>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_3.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670C20F0>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_4.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67077DF0>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_5.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB67108050>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_6.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0C50>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_7.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB670E0E50>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_8.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6707CF50>,
 'C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm': <tm_data_types.datum.waveforms.analog_waveform.AnalogWaveform object at 0x000001DB6707D7C0>}
waveform_path = WindowsPath('C:/Users/runneradmin/AppData/Local/Temp/pytest-of-unknown/pytest-0/test_parallel0/test_parallel_9.wfm')

tests\test_tm_data_types.py:93: AssertionError('D:\\a\\tm_data_types\\tm_data_types\\tests\\test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment')

Link to workflow run

@github-actions

github-actions Bot commented May 19, 2026

Copy link
Copy Markdown

Test Results (ubuntu)

path passed skipped subtotal
tests/test_tm_data_types.py 20 1 21
TOTAL 20 1 21
tests/test_tm_data_types.py
('/home/runner/work/tm_data_types/tm_data_types/tests/test_tm_data_types.py', 549, 'Skipped: Skipping 1G test in GitHub Actions environment')

Link to workflow run

@nfelt14 nfelt14 closed this Jul 6, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/pip/docs/idna-3.15 branch July 6, 2026 18:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant