chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.1 - autoclosed #32

Closed
renovate wants to merge 1 commits from renovate/github.com-charmbracelet-lipgloss-0.x into master
Contributor

This PR contains the following updates:

Package Type Update Change
github.com/charmbracelet/lipgloss require minor v0.6.0 -> v0.7.1

Release Notes

charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)

v0.7.1

Compare Source

This bugfix release fixes a problem introduced in v0.7.0 where applications could freeze or hang on start-up.

What's Changed

Full Changelog: https://github.com/charmbracelet/lipgloss/compare/v0.7.0...v0.7.1

v0.7.0

Compare Source

Custom Renderers

We're pleased to introduce custom renders for Lip Gloss! Custom renderers allow you to render to a specific outputs, which is particularly important when you want to detect the color profile and dark background status for multiple different outputs at runtime, such as in a server-client situation.

Here's what it looks like:

func myLittleHandler(sess ssh.Session) {
    // Create a renderer for the client.
    renderer := lipgloss.NewRenderer(sess)

    // Create a new style on the renderer.
    style := renderer.NewStyle().Background(lipgloss.AdaptiveColor{Light: "63", Dark: "228"})

    // Render. The color profile and dark background state will be correctly detected.
    io.WriteString(sess, style.Render("Heyyyyyyy"))
}

For a full example on using a custom renderer over SSH with Wish see the SSH example.

New API Stuff

  • type Renderer struct
  • NewRenderer(io.Writer)
  • DefaultRenderer()
  • SetDefaultRenderer(*lipgloss.Renderer)
  • style.Renderer(*lipgloss.Renderer) Style

What's Changed

New
Fixed

New Contributors

Full Changelog: https://github.com/charmbracelet/lipgloss/compare/v0.6.0...v0.7.0


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 | Type | Update | Change | |---|---|---|---| | [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | require | minor | `v0.6.0` -> `v0.7.1` | --- ### Release Notes <details> <summary>charmbracelet/lipgloss (github.com/charmbracelet/lipgloss)</summary> ### [`v0.7.1`](https://github.com/charmbracelet/lipgloss/releases/tag/v0.7.1) [Compare Source](https://github.com/charmbracelet/lipgloss/compare/v0.7.0...v0.7.1) This bugfix release fixes a problem introduced in v0.7.0 where applications could freeze or hang on start-up. #### What's Changed - fix(renderer): use termenv default renderer by [@&#8203;aymanbagabas](https://github.com/aymanbagabas) in https://github.com/charmbracelet/lipgloss/pull/179 - chore: bump termenv to v0.15.1 by [@&#8203;muesli](https://github.com/muesli) in https://github.com/charmbracelet/lipgloss/pull/180 **Full Changelog**: https://github.com/charmbracelet/lipgloss/compare/v0.7.0...v0.7.1 ### [`v0.7.0`](https://github.com/charmbracelet/lipgloss/releases/tag/v0.7.0) [Compare Source](https://github.com/charmbracelet/lipgloss/compare/v0.6.0...v0.7.0) ### Custom Renderers We're pleased to introduce custom renders for Lip Gloss! Custom renderers allow you to render to a specific outputs, which is particularly important when you want to detect the color profile and dark background status for multiple different outputs at runtime, such as in a server-client situation. Here's what it looks like: ```go func myLittleHandler(sess ssh.Session) { // Create a renderer for the client. renderer := lipgloss.NewRenderer(sess) // Create a new style on the renderer. style := renderer.NewStyle().Background(lipgloss.AdaptiveColor{Light: "63", Dark: "228"}) // Render. The color profile and dark background state will be correctly detected. io.WriteString(sess, style.Render("Heyyyyyyy")) } ``` For a full example on using a custom renderer over SSH with [Wish](https://github.com/charmbracelet/wish) see the [SSH example](https://github.com/charmbracelet/lipgloss/blob/master/examples/ssh). #### New API Stuff - `type Renderer struct` - `NewRenderer(io.Writer)` - `DefaultRenderer()` - `SetDefaultRenderer(*lipgloss.Renderer)` - `style.Renderer(*lipgloss.Renderer) Style` #### What's Changed ##### New - lipgloss renderer by [@&#8203;aymanbagabas](https://github.com/aymanbagabas) in https://github.com/charmbracelet/lipgloss/pull/140 and https://github.com/charmbracelet/lipgloss/pull/174 - add BlockBorder, OuterHalfBlockBorder, and InnerHalfBlockBorder border styles by [@&#8203;VictorBersy](https://github.com/VictorBersy) in https://github.com/charmbracelet/lipgloss/pull/120 ##### Fixed - RGBA implementations for non-hex color values by [@&#8203;muesli](https://github.com/muesli) in https://github.com/charmbracelet/lipgloss/pull/126 - unify get border size function names by [@&#8203;nerg4l](https://github.com/nerg4l) in https://github.com/charmbracelet/lipgloss/pull/148 - reduce dependencies by [@&#8203;caarlos0](https://github.com/caarlos0) in https://github.com/charmbracelet/lipgloss/pull/146 - don't concurrently change output profiles by [@&#8203;muesli](https://github.com/muesli) in https://github.com/charmbracelet/lipgloss/pull/172 #### New Contributors - [@&#8203;dependabot](https://github.com/dependabot) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/133 - [@&#8203;winder](https://github.com/winder) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/147 - [@&#8203;VictorBersy](https://github.com/VictorBersy) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/120 - [@&#8203;nervo](https://github.com/nervo) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/156 - [@&#8203;caarlos0](https://github.com/caarlos0) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/146 - [@&#8203;Isti115](https://github.com/Isti115) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/170 - [@&#8203;nerg4l](https://github.com/nerg4l) made their first contribution in https://github.com/charmbracelet/lipgloss/pull/148 **Full Changelog**: https://github.com/charmbracelet/lipgloss/compare/v0.6.0...v0.7.0 </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:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTIuNCIsInVwZGF0ZWRJblZlciI6IjM1LjE0MC4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
renovate added 1 commit 2023-03-09 00:01:05 +00:00
chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.0
All checks were successful
continuous-integration/drone/pr Build is passing
641c789785
renovate changed title from chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.0 to chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.1 2023-03-10 00:01:06 +00:00
renovate force-pushed renovate/github.com-charmbracelet-lipgloss-0.x from 641c789785 to ccef28d60e 2023-03-10 00:01:06 +00:00 Compare
renovate force-pushed renovate/github.com-charmbracelet-lipgloss-0.x from ccef28d60e to 2a4197478e 2023-03-12 16:00:57 +00:00 Compare
renovate force-pushed renovate/github.com-charmbracelet-lipgloss-0.x from 2a4197478e to 814919c1ad 2023-05-21 14:14:17 +00:00 Compare
renovate changed title from chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.1 to chore(deps): update module github.com/charmbracelet/lipgloss to v0.7.1 - autoclosed 2023-08-20 19:31:19 +00:00
renovate closed this pull request 2023-08-20 19:31:19 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
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: Kichiyaki/gootp#32
No description provided.