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

build(deps): Bump the dependencies group across 1 directory with 4 updates #21

Merged
merged 3 commits into from
Aug 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 27, 2024

Bumps the dependencies group with 3 updates in the / directory: github.com/JohannesKaufmann/html-to-markdown, github.com/charmbracelet/log and github.com/urfave/cli/v2.

Updates github.com/JohannesKaufmann/html-to-markdown from 1.4.2 to 1.6.0

Release notes

Sourced from github.com/JohannesKaufmann/html-to-markdown's releases.

v1.6.0 - improved YoutubeEmbed

  • Add support for youtube-nocookie.com domain in YoutubeEmbed plugin

Thanks @​devAbreu for submitting a PR 🙏

v1.5.0 - start for lists

  1. Configure the numbering of a ordered list by using the start attribute.
<ol start="10">
    <li>10</li>
    <li>11</li>
    <li>12</li>
</ol>
  1. The YoutubeEmbed() and VimeoEmbed() plugins can now be used more easily. Please report any bugs that you encounter!
Commits
  • aec0c4a update dependencies
  • e92a7a3 Add support for youtube-nocookie.com domain in YoutubeEmbed plugin (#99)
  • 2ec2259 Bump golang.org/x/net from 0.18.0 to 0.19.0 (#83)
  • 155a78b change vimeo & youtube embed plugins & README plugin list
  • fc090b2 feat: configure start of ol list
  • See full diff in compare view

Updates github.com/PuerkitoBio/goquery from 1.8.1 to 1.9.2

Release notes

Sourced from github.com/PuerkitoBio/goquery's releases.

v1.9.2

Update go.mod dependencies.

v1.9.1

Improve allocation of Map, better document cascadia behavior differences.

v1.9.0 Add generic Map function

Note that starting with this release, goquery now requires Go 1.18+. If you need to build with an older Go version, use goquery v1.8.x.

Commits
  • b076e25 Prepare for release v1.9.2
  • 22d8cfd Merge pull request #470 from PuerkitoBio/dependabot/go_modules/golang.org/x/n...
  • 56c8ec7 Bump golang.org/x/net from 0.21.0 to 0.23.0
  • 3ce7428 Prepare new minor version
  • 153f1ea Add notes on cascadia behavior that may differ from jQuery`s
  • 2095230 Merge pull request #469 from jwilsson/pre-allocate-slice-in-map
  • ce7330a Pre-allocate slice in generic Map function
  • 4cbe087 Update dependencies
  • a475435 Prepare README for the new version
  • 86d2456 Update CI to run Go 1.21 and 1.22 (latest 2 versions at the moment)
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/log from 0.3.1 to 0.4.0

Release notes

Sourced from github.com/charmbracelet/log's releases.

v0.4.0

Custom Levels

With this release of Log, you can now style your custom level to your liking!

// Define a new level
const SuccessLevel = log.InfoLevel + 1
// Create a style
styles := log.DefaultStyles()
styles.Levels[SuccessLevel] = lipgloss.NewStyle().
SetString("SUCCESS").
Bold(true).
Foreground(lipgloss.Color("42"))
// Set the styles on the default logger
log.SetStyles(styles)
// Define your custom func
func Success(msg string, args ...any) {
log.Default().Log(SuccessLevel, msg, args...)
}

Along with that, this release includes some important bug fixes detailed below.

Changelog

New Features

Bug fixes

  • 28193306e6f5a221d00a74fa6e8683ea10ae06be: fix: lazy init default logger (#111) (@​caarlos0)

Dependency updates

  • bcd47385a62a19911e9970bcc96a3431af338160: feat(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#112) (@​dependabot[bot])
  • 976db2be8ef2dad2071a6f061ea20b3e0df90c54: feat(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#108) (@​dependabot[bot])

Documentation updates

  • 87252e4b6fe8ac6e0378a5f6bd10c81cf016478f: docs: Replace function with func in README sample code (@​szktkfm)
  • ac0e6b17de4d9fb40f924721b9be2551b6a3a5b1: docs: direct users to library API (#73) (@​bashbunni)
  • 9d04d2b741a63f044858c77785d81acdd04974c1: docs: style customization updated (#106) (@​ssantoshp)

Other work

  • a4246434f75cb530c9e1ac28656f7d8e887b08f8: Create CODEOWNERS (@​maaslalani)
  • fd1729ad8eb8badce23ad62a2050f33e93b82fd8: Options.CallerFormatter documentation issue (#100) (@​pythonian23)

... (truncated)

Commits
  • d23bea6 fix!: respect time function (#115)
  • bcd4738 feat(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#112)
  • 2819330 fix: lazy init default logger (#111)
  • ac0e6b1 docs: direct users to library API (#73)
  • 87252e4 docs: Replace function with func in README sample code
  • 976db2b feat(deps): bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#108)
  • a424643 Create CODEOWNERS
  • 9d04d2b docs: style customization updated (#106)
  • 1f0b8bb chore(deps): bump golangci/golangci-lint-action from 3 to 4 (#105)
  • 7a3834f slog: Don't log if not enabled at level (#103)
  • Additional commits viewable in compare view

Updates github.com/urfave/cli/v2 from 2.26.0 to 2.27.2

Release notes

Sourced from github.com/urfave/cli/v2's releases.

v2.27.2

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.1...v2.27.2

v2.27.1

What's Changed

Full Changelog: urfave/cli@v2.27.0...v2.27.1

v2.27.0

What's Changed

Full Changelog: urfave/cli@v2.26.0...v2.27.0

Commits
  • a1a099b Merge pull request #1888 from urfave/v2-maint-deps-up
  • 9b5850b Update dependencies, actions steps, and usage for v2-maint
  • 67566bb Merge pull request #1872 from edeustua/v2-maint
  • fa2b127 fix tests
  • 427677a fix: Fix repeated [arguments...] in usage template
  • 8728c19 Merge pull request #1868 from dearchap/issue_1860
  • 64b40d2 Merge branch 'v2-maint' into issue_1860
  • 09c3974 Merge pull request #1867 from dearchap/issue_1866
  • 7b1f820 Add more tests
  • 7d74b97 Fix:(issue_1860) Remove hidden flags from flag categories
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…dates

Bumps the dependencies group with 3 updates in the / directory: [github.com/JohannesKaufmann/html-to-markdown](https://github.com/JohannesKaufmann/html-to-markdown), [github.com/charmbracelet/log](https://github.com/charmbracelet/log) and [github.com/urfave/cli/v2](https://github.com/urfave/cli).


Updates `github.com/JohannesKaufmann/html-to-markdown` from 1.4.2 to 1.6.0
- [Release notes](https://github.com/JohannesKaufmann/html-to-markdown/releases)
- [Commits](JohannesKaufmann/html-to-markdown@v1.4.2...v1.6.0)

Updates `github.com/PuerkitoBio/goquery` from 1.8.1 to 1.9.2
- [Release notes](https://github.com/PuerkitoBio/goquery/releases)
- [Commits](PuerkitoBio/goquery@v1.8.1...v1.9.2)

Updates `github.com/charmbracelet/log` from 0.3.1 to 0.4.0
- [Release notes](https://github.com/charmbracelet/log/releases)
- [Commits](charmbracelet/log@v0.3.1...v0.4.0)

Updates `github.com/urfave/cli/v2` from 2.26.0 to 2.27.2
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.26.0...v2.27.2)

---
updated-dependencies:
- dependency-name: github.com/JohannesKaufmann/html-to-markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/PuerkitoBio/goquery
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/charmbracelet/log
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/urfave/cli/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 27, 2024
@kevinrobayna kevinrobayna enabled auto-merge (squash) August 5, 2024 10:27
@kevinrobayna kevinrobayna merged commit 75bcd82 into main Aug 5, 2024
3 checks passed
@kevinrobayna kevinrobayna deleted the dependabot/go_modules/dependencies-a6e703f0ec branch August 5, 2024 10:38
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 go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant