Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump prompt-toolkit from 3.0.28 to 3.0.43 #140

Merged
merged 3 commits into from
Jan 8, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 26, 2023

Bumps prompt-toolkit from 3.0.28 to 3.0.43.

Release notes

Sourced from prompt-toolkit's releases.

3.0.43

Fixes regression from 3.0.42:

  • Fix regression on Pypy: Don't use ctypes.pythonapi to restore SIGINT if not available.

Other changes from 3.0.42:

  • Fix line wrapping in patch_stdout on Windows.
  • Make formatted_text.split_lines() accept an iterable instead of lists only.
  • Disable the IPython workaround (from 3.0.41) for IPython >= 8.18.
  • Restore signal.SIGINT handler between prompts
Changelog

Sourced from prompt-toolkit's changelog.

3.0.43: 2023-12-13

Fixes:

  • Fix regression on Pypy: Don't use ctypes.pythonapi to restore SIGINT if not available.

3.0.42: 2023-12-12

Fixes:

  • Fix line wrapping in patch_stdout on Windows.
  • Make formatted_text.split_lines() accept an iterable instead of lists only.
  • Disable the IPython workaround (from 3.0.41) for IPython >= 8.18.
  • Restore signal.SIGINT handler between prompts.

3.0.41: 2023-11-14

Fixes:

  • Fix regression regarding IPython input hook (%gui) integration.

3.0.40: 2023-11-10

Fixes:

  • Improved Python 3.12 support (fixes event loop DeprecationWarning).

New features:

  • Vi key bindings: control-t and control-d for indent/unindent in insert mode.
  • Insert partial suggestion when control+right is pressed, similar to Fish.
  • Use sphinx-nefertiti theme for the docs.

3.0.39: 2023-07-04

Fixes:

  • Fix RuntimeError when __breakpointhook__ is called from another thread.
  • Fix memory leak in filters usage.
  • Ensure that key bindings are handled in the right context (when using contextvars).

New features:

  • Accept in_thread keyword in prompt_toolkit.shortcuts.prompt().
  • Support the NO_COLOR environment variable.

... (truncated)

Commits
  • 4432d62 Release 3.0.43
  • 6a24c99 Fix for pypy: don't use pythonapi on pypy.
  • 1c6d094 Use Coroutine instead of Awaitable in type annotations where possible.
  • 87d0107 Release 3.0.42
  • 6a4e6dd Fix example for progress bar with custom iterable
  • be4ccdf Restore signal.SIGINT handler between prompts
  • 6e4ca6e Disable workaround for ipython >= 8.18
  • e2e75c0 Make formatted_text.split_lines accept an iterable (type annotation only).
  • 55cde3e Fix line wrapping in patch_stdout on Windows.
  • 857af14 Code formatting fixes.
  • 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 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 <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)

Bumps [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) from 3.0.28 to 3.0.43.
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.28...3.0.43)

---
updated-dependencies:
- dependency-name: prompt-toolkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from dav3r as a code owner December 26, 2023 17:00
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 26, 2023
@dependabot dependabot bot requested a review from felddy as a code owner December 26, 2023 17:00
@dependabot dependabot bot added the python Pull requests that update Python code label Dec 26, 2023
prompt-toolkit>=3.0.43 no longer support Python 3.6, so this project
cannot either.
@jsf9k jsf9k self-assigned this Dec 27, 2023
@jsf9k jsf9k requested a review from a team December 27, 2023 21:56
@jsf9k
Copy link
Member

jsf9k commented Dec 27, 2023

The failing tests are just two Coveralls percentage decreases, so I think this PR is OK to merge despite them.

@jsf9k jsf9k enabled auto-merge December 27, 2023 21:56
@dv4harr10
Copy link
Contributor

Hi Team, I noticed one issue: certificate verification has been explicitly disabled (verify=false) @ src/tools/gophish_complete.py line 135; this permits insecure connections to insecure servers. Therefore, we should re-enable certification validation. Thanks

@dav3r
Copy link
Member

dav3r commented Dec 29, 2023

Hi Team, I noticed one issue: certificate verification has been explicitly disabled (verify=false) @ src/tools/gophish_complete.py line 135; this permits insecure connections to insecure servers. Therefore, we should re-enable certification validation. Thanks

@dv4harr10 There is already a comment in the code about this:

# Bandit complains about disabling the SSL certificate check, but we have
# no choice here since we are using a self-signed certificate.
response = requests.get(url=url, verify=False) # nosec

However, feel free to create an issue in this repository about this and we will see if anything can be done.

@jsf9k jsf9k merged commit 5fe3b6b into develop Jan 8, 2024
44 of 46 checks passed
@jsf9k jsf9k deleted the dependabot/pip/prompt-toolkit-3.0.43 branch January 8, 2024 16:36
Yradio pushed a commit to Yradio/gophish-tools that referenced this pull request Mar 16, 2024
…abot_configuration

Update the Dependabot configuration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants