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

chore(deps): update dependency textual-textarea to v0.15.0 #29

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
textual-textarea ==0.7.3 -> ==0.15.0 age adoption passing confidence

Release Notes

tconbeer/textual-textarea (textual-textarea)

v0.15.0

Compare Source

  • Breaking: changes function return signature query_syntax_tree.
  • Breaking: drops support for Python 3.8.
  • Breaking: drops support for Pygments themes.
  • Adds support for Python 3.13.
  • Adds support for Textual app themes, including syntax highlighting using the theme colors.
  • Updates syntax highlighting language libraries.

v0.14.4

Compare Source

  • Fixes a crash caused by copying or pasting with the system clipboard in some rare system configurations.

v0.14.3

Compare Source

v0.14.2

Compare Source

  • Fixes a TypeError raised by Textual >= v0.76 from the goto input validator.

v0.14.1

Compare Source

  • Fixes a bug where uncommenting a line using the toggle_comment action would leave behind a space in languages with comment markers that are longer than one character (tconbeer/harlequin#616).

v0.14.0

Compare Source

  • Updates dependencies and removes black in favor of the ruff formatter.

v0.13.1

Compare Source

v0.13.0

Compare Source

  • Adds a "find" action with ctrl+f and "find next" action with F3.
  • Adds "go to line" action with ctrl+g.
  • Adds bindings for ctrl+shift+home and ctrl+shift+end to select while moving to document start/end.
  • Uses the new, native undo and redo functionality provided by the Textual TextArea widget. This has some subtly different behavior (#​240.

v0.12.0

Compare Source

  • Show the computed filepath in the Save and Open widgets (#​232 - thank you @​bjornasm!).
  • Fixes a crash from initializing the Error Modal incorrectly.
  • Fixes a crash from saving to a path in a non-existent directory.

v0.11.3

Compare Source

  • No longer changes focus on escape (regression since 0.11.0)

v0.11.2

Compare Source

  • Adds a parser property to the CodeEditor class to return the document's tree-sitter parser.

v0.11.1

Compare Source

  • Adds a syntax_tree property to the CodeEditor class to return the document's tree-sitter syntax tree.

v0.11.0

Compare Source

  • Bumps textual dependency to >=0.48.1
  • Breaking change: Renames the main class from TextArea to TextEditor, to avoid naming conflicts with the built-in TextArea widget (which caused issues with selectors, CSS, etc.).
  • Breaking change: Replaces the cursor and selection_anchor API with selection.
  • Adds public APIs: line_count, get_line, get_text_range, copy_to_clipboard, pause_blink, restart_blink, prepare_query, and query_syntax_tree.

v0.10.0

Compare Source

  • Adds a text argument when initializing TextArea.
  • Improves time to first paint by finding the system clipboard in a thread, instead of blocking mounting. This has an especially large impact on Windows.

v0.9.5

Compare Source

v0.9.4

Compare Source

  • No longer show bindings in the footer when the open or save inputs are focussed.

v0.9.3

Compare Source

  • Fixes an issue where very long completions with short prefixes were truncated improperly.

v0.9.2

Compare Source

  • Hides the cursor and autocomplete list when the TextArea widget is not focussed. (#​177).

v0.9.1

Compare Source

  • Fixes an issue where the autocomplete list was displayed in the wrong location after pressing backspace.

v0.9.0

Compare Source

  • TextArea now provides auto-complete. By default, it will auto-complete paths; to auto-complete words or
    members of a namespace, set TextArea.word_completer, TextArea.member_completer, TextArea.path_completer
    to a Callable[[str], list[tuple[str, str]]]. The callables will receive the current word (or path, etc.) as their
    argument and should return a list of completions, where completions are (label, value) pairs.
  • The TextArea is now focused when the Open or Save inputs are cancelled.

v0.8.0

Compare Source

  • The TextArea has been completely overhauled. It now uses the built-in TextArea widget under the hood.
  • This package now requires Textual >= 0.41.0, as it requires Textual's built-in TextArea widget.
  • Double-click a word to select it; triple-click to select the row; quadruple-click to select the whole document.
  • Fixes a bug with toggling comments.

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 33038e0 to f7ca423 Compare December 13, 2023 02:06
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.8.0 chore(deps): update dependency textual-textarea to v0.9.0 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from f7ca423 to bdec4e1 Compare December 13, 2023 18:44
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.9.0 chore(deps): update dependency textual-textarea to v0.9.2 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from bdec4e1 to e16e89b Compare December 15, 2023 19:03
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.9.2 chore(deps): update dependency textual-textarea to v0.9.3 Dec 15, 2023
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from e16e89b to 4495a38 Compare December 18, 2023 18:16
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.9.3 chore(deps): update dependency textual-textarea to v0.9.4 Dec 18, 2023
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 4495a38 to f47f5b1 Compare December 18, 2023 22:45
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.9.4 chore(deps): update dependency textual-textarea to v0.9.5 Dec 18, 2023
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from f47f5b1 to 83260e8 Compare January 30, 2024 18:07
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.9.5 chore(deps): update dependency textual-textarea to v0.10.0 Jan 30, 2024
Copy link

coderabbitai bot commented Jan 30, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

The main change involves upgrading the textual-textarea package from version 0.14.1 to 0.14.2 in the requirements.txt file. This update likely introduces additional improvements and fixes that enhance the package's functionality. All other dependencies remain unchanged, reinforcing that this modification is concentrated on the textarea package.

Changes

File Change Summary
requirements.txt Upgraded textual-textarea from 0.14.1 to 0.14.2

Poem

🐇 In the garden where code does bloom,
A tiny package sheds its gloom.
From 0.14.1 to 0.14.2, it flies,
With fixes and features, it surely complies.
Hooray for updates, let’s give a cheer,
Our code grows brighter, the future is near! 🌼✨


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 83260e8 to 04d77e7 Compare February 6, 2024 22:04
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.10.0 chore(deps): update dependency textual-textarea to v0.11.0 Feb 6, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 04d77e7 to 6c8c985 Compare February 8, 2024 18:25
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.11.0 chore(deps): update dependency textual-textarea to v0.11.1 Feb 8, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 6c8c985 to 50f757e Compare February 8, 2024 23:12
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.11.1 chore(deps): update dependency textual-textarea to v0.11.2 Feb 8, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 50f757e to f8eed44 Compare February 10, 2024 00:20
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.11.2 chore(deps): update dependency textual-textarea to v0.11.3 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from f8eed44 to 9baa939 Compare April 17, 2024 22:11
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.11.3 chore(deps): update dependency textual-textarea to v0.12.0 Apr 17, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 9baa939 to fe3ce58 Compare April 19, 2024 22:46
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.12.0 chore(deps): update dependency textual-textarea to v0.13.0 Apr 19, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from fe3ce58 to 2183b74 Compare June 28, 2024 23:03
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.13.0 chore(deps): update dependency textual-textarea to v0.13.1 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 2183b74 to 84ca8db Compare July 9, 2024 22:13
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.13.1 chore(deps): update dependency textual-textarea to v0.14.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 84ca8db to 1fe22ab Compare August 15, 2024 20:12
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.14.0 chore(deps): update dependency textual-textarea to v0.14.1 Aug 15, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 6cf747d and 1fe22ab.

Files selected for processing (1)
  • requirements.txt (1 hunks)
Additional comments not posted (1)
requirements.txt (1)

68-68: Dependency Update Approved. Verify Compatibility.

The update of textual-textarea from version 0.7.3 to 0.14.1 is approved. Ensure that the updated package is compatible with the rest of the codebase and does not introduce any breaking changes.

@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 1fe22ab to 6a978c5 Compare August 16, 2024 23:10
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.14.1 chore(deps): update dependency textual-textarea to v0.14.2 Aug 16, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 1fe22ab and 6a978c5.

Files selected for processing (1)
  • requirements.txt (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • requirements.txt

@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from 6a978c5 to ded137c Compare October 9, 2024 23:04
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.14.2 chore(deps): update dependency textual-textarea to v0.14.4 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/textual-textarea-0.x branch from ded137c to 26c6581 Compare December 19, 2024 23:59
@renovate renovate bot changed the title chore(deps): update dependency textual-textarea to v0.14.4 chore(deps): update dependency textual-textarea to v0.15.0 Dec 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants