Skip to content

chore(deps): update mend: high confidence minor and patch dependency updates#189

Open
mend-for-gitlite.zycloud.tk[bot] wants to merge 1 commit intodevelopfrom
whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates
Open

chore(deps): update mend: high confidence minor and patch dependency updates#189
mend-for-gitlite.zycloud.tk[bot] wants to merge 1 commit intodevelopfrom
whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates

Conversation

@mend-for-gitlite.zycloud.tk
Copy link
Copy Markdown

@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot commented Dec 19, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
MarkupSafe (changelog) ==2.0.1==2.1.5 age adoption passing confidence
appnope ==0.1.2==0.1.4 age adoption passing confidence
attrs (changelog) ==21.2.0==21.4.0 age adoption passing confidence
bcrypt ==3.2.0==3.2.2 age adoption passing confidence
beautifulsoup4 (changelog) ==4.9.3==4.14.3 age adoption passing confidence
cffi (changelog) ==1.14.5==1.17.1 age adoption passing confidence
cfgv ==3.3.0==3.5.0 age adoption passing confidence
distlib ==0.3.2==0.4.0 age adoption passing confidence
docutils (changelog) ==0.17.1==0.22.4 age adoption passing confidence
filelock ==3.0.12==3.29.0 age adoption passing confidence
ipdb ==0.13.9==0.13.13 age adoption passing confidence
itsdangerous (changelog) ==2.0.1==2.2.0 age adoption passing confidence
jedi ==0.18.0==0.19.2 age adoption passing confidence
matplotlib-inline ==0.1.2==0.2.1 age adoption passing confidence
mccabe ==0.6.1==0.7.0 age adoption passing confidence
mypy-extensions ==0.4.3==0.4.4 age adoption passing confidence
nodeenv ==1.6.0==1.10.0 age adoption passing confidence
paramiko (changelog) ==2.7.2==2.12.0 age adoption passing confidence
pathspec (changelog) ==0.9.0==0.12.1 age adoption passing confidence
pexpect (source, changelog) ==4.8.0==4.9.0 age adoption passing confidence
prompt-toolkit ==3.0.18==3.0.52 age adoption passing confidence
py ==1.10.0==1.11.0 age adoption passing confidence
pycparser ==2.20==2.23 age adoption passing confidence
pymongo ==3.11.4==3.13.0 age adoption passing confidence
python-dateutil ==2.8.2==2.9.0.post0 age adoption passing confidence
regex ==2021.4.4==2021.11.10 age adoption passing confidence
rsa ==4.7.2==4.9.1 age adoption passing confidence
six ==1.16.0==1.17.0 age adoption passing confidence
soupsieve ==2.2.1==2.8.3 age adoption passing confidence
traitlets ==5.0.5==5.14.3 age adoption passing confidence
typed-ast ==1.4.3==1.5.5 age adoption passing confidence
typing-extensions (changelog) ==3.10.0.0==3.10.0.2 age adoption passing confidence
undetected-chromedriver ==3.0.1==3.5.5 age adoption passing confidence
validators (changelog) ==0.18.2==0.35.0 age adoption passing confidence
wcwidth ==0.2.5==0.6.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

pallets/markupsafe (MarkupSafe)

v2.1.5

Compare Source

Released 2024-02-02

  • Fix striptags not collapsing spaces. :issue:417

v2.1.4

Compare Source

Released 2024-01-19

  • Don't use regular expressions for striptags, avoiding a performance
    issue. :pr:413

v2.1.3

Compare Source

Released 2023-06-02

  • Implement format_map, casefold, removeprefix, and removesuffix
    methods. :issue:370
  • Fix static typing for basic str methods on Markup. :issue:358
  • Use Self for annotating return types. :pr:379

v2.1.2

Compare Source

Released 2023-01-17

  • Fix striptags not stripping tags containing newlines.
    :issue:310

v2.1.1

Compare Source

Released 2022-03-14

  • Avoid ambiguous regex matches in striptags. :pr:293

v2.1.0

Compare Source

Released 2022-02-17

  • Drop support for Python 3.6. :pr:262
  • Remove soft_unicode, which was previously deprecated. Use
    soft_str instead. :pr:261
  • Raise error on missing single placeholder during string
    interpolation. :issue:225
  • Disable speedups module for GraalPython. :issue:277
minrk/appnope (appnope)

v0.1.4

Compare Source

v0.1.3

Compare Source

python-attrs/attrs (attrs)

v21.4.0

Compare Source

Changes
  • Fixed the test suite on PyPy3.8 where cloudpickle does not work.
    #​892
  • Fixed coverage report for projects that use attrs and don't set a --source.
    #​895,
    #​896

v21.3.0

Compare Source

Backward-incompatible Changes
  • When using @define, converters are now run by default when setting an attribute on an instance -- additionally to validators.
    Meaning: the new default is on_setattr=[attrs.setters.convert, attrs.setters.validate].

    This is unfortunately a breaking change, but it was an oversight, impossible to raise a DeprecationWarning about, and it's better to fix it now while the APIs are very fresh with few users.
    #​835,
    #​886

  • import attrs has finally landed!
    As of this release, you can finally import attrs using its proper name.

    Not all names from the attr namespace have been transferred; most notably attr.s and attr.ib are missing.
    See attrs.define and attrs.field if you haven't seen our next-generation APIs yet.
    A more elaborate explanation can be found On The Core API Names

    This feature is at least for one release provisional.
    We don't plan on changing anything, but such a big change is unlikely to go perfectly on the first strike.

    The API docs have been mostly updated, but it will be an ongoing effort to change everything to the new APIs.
    Please note that we have not moved -- or even removed -- anything from attr!

    Please do report any bugs or documentation inconsistencies!
    #​887

Changes
  • attr.asdict(retain_collection_types=False) (default) dumps collection-esque keys as tuples.
    #​646,
    #​888
  • __match_args__ are now generated to support Python 3.10's
    Structural Pattern Matching.
    This can be controlled by the match_args argument to the class decorators on Python 3.10 and later.
    On older versions, it is never added and the argument is ignored.
    #​815
  • If the class-level on_setattr is set to attrs.setters.validate (default in @define and @mutable) but no field defines a validator, pretend that it's not set.
    #​817
  • The generated __repr__ is significantly faster on Pythons with f-strings.
    #​819
  • Attributes transformed via field_transformer are wrapped with AttrsClass again.
    #​824
  • Generated source code is now cached more efficiently for identical classes.
    #​828
  • Added attrs.converters.to_bool().
    #​830
  • attrs.resolve_types() now resolves types of subclasses after the parents are resolved.
    #​842
    #​843
  • Added new validators: lt(val) (< val), le(va) (≤ val), ge(val) (≥ val), gt(val) (> val), and maxlen(n).
    #​845
  • attrs classes are now fully compatible with cloudpickle (no need to disable repr anymore).
    #​857
  • Added new context manager attrs.validators.disabled() and functions attrs.validators.(set|get)_disabled().
    They deprecate attrs.(set|get)_run_validators().
    All functions are interoperable and modify the same internal state.
    They are not – and never were – thread-safe, though.
    #​859
  • attrs.validators.matches_re() now accepts pre-compiled regular expressions in addition to pattern strings.
    #​877

python-cffi/cffi (cffi)

v1.17.1

Compare Source

  • Fix failing distutils.msvc9compiler imports under Windows (#​118).
  • ffibuilder.emit_python_code() and ffibuiler.emit_c_code() accept file-like objects (#​115).
  • ffiplatform calls are bypassed by ffibuilder.emit_python_code() and ffibuilder.emit_c_code() (#​81).

Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1

v1.17.0

Compare Source

  • Add support for Python 3.13.
    • Free-threaded CPython builds (i.e. python3.13t and the 3.13t ABI) are not currently supported.
  • In API mode, when you get a function from a C library by writing
    fn = lib.myfunc, you get an object of a special type for performance
    reasons, instead of a <cdata 'C-function-type'>. Before version 1.17
    you could only call such objects. You could write
    ffi.addressof(lib, "myfunc") in order to get a real <cdata> object,
    based on the idea that in these cases in C you'd usually write &myfunc
    instead of myfunc. In version 1.17, the special object
    lib.myfunc can now be passed in many places where CFFI expects
    a regular <cdata> object. For example, you can now pass
    it as a callback to a C function call, or write it inside a C
    structure field of the correct pointer-to-function type, or use
    ffi.cast() or ffi.typeof() on it.

Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0

v1.16.0

Compare Source

  • Add support for Python 3.12. With the removal of distutils from Python 3.12, projects
    using CFFI features that depend on distutils at runtime must add a dependency on
    setuptools to function under Python 3.12+. CFFI does not declare a runtime setuptools
    requirement to avoid an unnecessary dependency for projects that do not require it.
  • Drop support for end-of-life Python versions (2.7, 3.6, 3.7).
  • Add support for PEP517 builds; setuptools is now a required build dependency.
  • Declare python_requires metadata for Python 3.8+. This allows unsupported Pythons
    to continue using previously released sdists and wheels.
  • Move project source under src/; a more standard layout that also enables CI to more easily
    catch packaging errors.

v1.15.1

Compare Source

(retroactive GitHub release for current stable version 1.15.1)

  • If you call ffi.embedding_api() but don't write any extern "Python" function there, then the resulting C code would fail an assert. Fixed.
  • Updated Windows/arm64 embedded libffi static lib to v3.4.2, and scripted to ease future updates (thanks Niyas Sait!)

Full Changelog: python-cffi/cffi@v1.15.0...v1.15.1

v1.15.0

Compare Source

v1.14.6

Compare Source

asottile/cfgv (cfgv)

v3.5.0

Compare Source

v3.4.0

Compare Source

v3.3.1

Compare Source

pypa/distlib (distlib)

v0.4.0

Compare Source

v0.3.9

Compare Source

v0.3.8

Compare Source

v0.3.7

Compare Source

v0.3.6: Bug-fix / Minor Enhancements Release

Compare Source

  • Fixed #​175: Updated launcher executables to better handle the relationship between launcher and child process in the Job API.

Though no changes have been made to distlib code since the previous release, this release is to facilitate vendoring into pip.

Releases are normally signed using a GnuPG key with the user id vinay_sajip@yahoo.co.uk and the following fingerprint:

CA74 9061 914E AC13 8E66 EADB 9147 B477 339A 9B86

v0.3.5: Bug-fix / Minor Enhancements Release

Compare Source

  • Fixed #​161: Updated test case.

  • Fixed #​164: Improved support for reproducible builds by allowing a fixed
    date/time to be inserted into created .exe files. Thanks to Somber Night for the
    patch.

  • Fixed #​169: Removed usage of deprecated imp module in favour of importlib.

  • Fixed #​170: Corrected implementation of get_required_dists().

  • Fixed #​172: Compute ABI correctly for Python < 3.8.

  • Changed the default locator configuration.

  • Made updates in support of PEP 643 / Metadata 2.2.

  • Updated launcher executables. Thanks to Michael Bikovitsky for his help with
    the launcher changes.

  • Updated to write archive path of RECORD to RECORD instead of staging path.
    Thanks to Pieter Pas for the patch.

Releases are normally signed using a GnuPG key with the user id vinay_sajip@yahoo.co.uk and the following fingerprint:

CA74 9061 914E AC13 8E66 EADB 9147 B477 339A 9B86

v0.3.4: Bug-fix / Minor Enhancements Release

Compare Source

  • Fixed #​153: Raise warnings in get_distributions() if bad metadata seen, but keep going.

  • Fixed #​154: Determine Python versions correctly for Python >= 3.10.

  • Updated launcher executables with changes to handle duplication logic.

Code relating to support for Python 2.6 was also removed (support for Python 2.6 was dropped in an earlier release, but supporting code wasn't removed until now).

v0.3.3

Compare Source

tox-dev/py-filelock (filelock)

v3.29.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.28.0...3.29.0

v3.28.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.27.0...3.28.0

v3.25.2

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.25.1...3.25.2

v3.25.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.25.0...3.25.1

v3.25.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.24.4...3.25.0

v3.24.3

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.24.2...3.24.3

v3.24.2

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.24.1...3.24.2

v3.24.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.24.0...3.24.1

v3.24.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.23.0...3.24.0

v3.23.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.22.0...3.23.0

v3.22.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.21.2...3.22.0

v3.21.2

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.21.1...3.21.2

v3.21.1

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.21.0...3.21.1

v3.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.20.3...3.21.0

v3.20.4

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.20.3...3.20.4

v3.20.3

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.20.2...3.20.3

v3.20.2

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.20.1...3.20.2

v3.20.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.20.0...3.20.1

v3.20.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.19.1...3.20.0

v3.19.1

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.19.0...3.19.1

v3.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.17.0...3.18.0

v3.17.0: Drop 3.8

Compare Source

Full Changelog: tox-dev/filelock@3.16.1...3.17.0

v3.16.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.16.0...3.16.1

v3.16.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.4...3.16.0

v3.15.4

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.3...3.15.4

v3.15.3

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.2...3.15.3

v3.15.2

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/filelock@3.15.1...3.15.2

v3.15.1

[Compare Source](https://redirect.github.


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.

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


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

@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot added the security fix Security fix generated by WhiteSource label Dec 19, 2024
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from dbfbccd to 75d42a4 Compare December 23, 2024 03:49
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 75d42a4 to e481b9a Compare January 19, 2025 19:47
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Jan 19, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from e481b9a to 9cedfc8 Compare January 25, 2025 03:48
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Jan 25, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 2d4d1f1 to d660c62 Compare January 27, 2025 02:35
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Jan 27, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 7e2d656 to 78a9f1c Compare January 29, 2025 03:11
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Feb 1, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from ba0a6c4 to 0e614ca Compare February 3, 2025 03:59
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Feb 3, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 34d47e5 to a096d34 Compare February 6, 2025 03:46
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Feb 6, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from a096d34 to aed4b2c Compare February 7, 2025 03:48
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Feb 7, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 4b349f3 to cde9d29 Compare February 9, 2025 03:56
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Feb 9, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 89f32fc to cb85312 Compare February 12, 2025 03:04
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Feb 12, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 4 times, most recently from aa55636 to 0315b4b Compare February 28, 2025 05:30
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 60a6293 to b690d77 Compare April 5, 2025 04:57
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 06db1cf to e23b265 Compare April 15, 2025 04:15
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 4 times, most recently from 8341f2d to af2bfb9 Compare April 23, 2025 04:35
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Apr 23, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 5 times, most recently from 8370e95 to 21b26b0 Compare April 28, 2025 05:16
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Apr 28, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 21b26b0 to 74f5f1c Compare April 29, 2025 08:24
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates Apr 29, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 74f5f1c to 9581c90 Compare April 30, 2025 05:33
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates Apr 30, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates May 1, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates May 2, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title fix(deps): update mend: high confidence minor and patch dependency updates chore(deps): update mend: high confidence minor and patch dependency updates May 3, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot changed the title chore(deps): update mend: high confidence minor and patch dependency updates fix(deps): update mend: high confidence minor and patch dependency updates May 4, 2025
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch from 9581c90 to f61b946 Compare May 11, 2025 05:12
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 3 times, most recently from 307af96 to bef9de9 Compare May 25, 2025 05:10
@mend-for-gitlite.zycloud.tk mend-for-gitlite.zycloud.tk Bot force-pushed the whitesource-remediate/mend-high-confidence-minor-and-patch-dependency-updates branch 2 times, most recently from 13ca25f to 4aa06de Compare May 28, 2025 04:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

security fix Security fix generated by WhiteSource

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants