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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the gomod group across 1 directory with 12 updates #189

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the gomod group with 10 updates in the / directory:

Package From To
ariga.io/atlas 0.15.0 0.24.0
github.com/alecthomas/chroma/v2 2.10.0 2.14.0
github.com/charmbracelet/bubbletea 0.25.0 0.26.4
github.com/charmbracelet/lipgloss 0.9.1 0.11.0
github.com/charmbracelet/wish 1.2.0 1.4.0
github.com/jaevor/go-nanoid 1.3.0 1.4.0
github.com/klauspost/compress 1.17.7 1.17.9
github.com/rs/zerolog 1.31.0 1.33.0
github.com/tdewolff/minify/v2 2.20.15 2.20.34
github.com/yuin/goldmark 1.7.0 1.7.2

Updates ariga.io/atlas from 0.15.0 to 0.24.0

Release notes

Sourced from ariga.io/atlas's releases.

v0.24.0

We are excited to announce the release of Atlas v0.24 馃帄

We are back again with a new release of Atlas, v0.24. In this release we double down on the core principle that has been guiding us from the start: enabling developers to manage their database Schema as Code. The features we announce today may appear like a yet another cool addition to Atlas, but we're confident, that in a few years' time, they will be recognized as something foundational.

In this release we introduce:

  • schema test - a new command (and framework) for testing your database schema using familiar software testing paradigms.
  • migrate test - a new command for testing writing tests for you schema migrations.
  • Enhanced editor support - we have added support for some long awaited features in our VSCode and JetBrains plugins: multi-file schemas, jump to definition, and support for much larger schemas.
test "migrate" "20240613061102" {
  # Migrate to version 20240613061046.
  migrate {
    to = "20240613061046"
  }
  # Insert some test data.
  exec {
    sql = "insert into users (name) values ('Ada Lovelace')"
  }
  # Migrate to version 20240613061102.
  migrate {
      to = "20240613061102"
  }
  # Verify the correctness of the data migration.
  exec {
    sql = "select first_name,last_name from users"
    output = "Ada, Lovelace"
  }
}

Read the full announcement and in our blogpost: https://atlasgo.io/blog/2024/06/13/atlas-v-0-24

Quick installation

macOS + Linux:

curl -sSf https://atlasgo.sh | sh

Homebrew:

brew install ariga/tap/atlas

... (truncated)

Commits
  • 44a6f88 doc/website: v0.24 release notes (#2860)
  • 078008e schemahcl: add support for regexpescape hcl function (#2855)
  • 0a93842 cmd/atlas/internal/cmdapi: add test spec (#2854)
  • 373fb3d schemahcl: copy typerange for dynamic blocks (#2852)
  • 754453f cmd/atlas/internal/cmdapi: env lint config overrides global one (#2851)
  • 40269aa doc/website: unify-footer (#2848)
  • c8c647f sql/postgres: attach namespace to opc identifier if not default (#2850)
  • cffea3d doc/md: fix typos and remove unnecessary backslash (#2849)
  • ca581a5 cmd/atlas/internal: exclude .test.hcl from hcl state reader (#2843)
  • 2ae36b2 chore: upgrade toolchain to go1.22.4 (#2842)
  • Additional commits viewable in compare view

Updates github.com/alecthomas/chroma/v2 from 2.10.0 to 2.14.0

Release notes

Sourced from github.com/alecthomas/chroma/v2's releases.

v2.14.0

Changelog

  • 1e983e7 lexers/cue: support CUE attributes (#961)
  • 9347b55 Add Gleam syntax highlighting (#959)
  • 6b7ffe1 chore(styles): add tokyonight inspired styles (#957)
  • 736c0ea Typescript: Several fixes (#952)
  • e5c25d0 Org: Keep all newlines (#951)
  • d07caa4 chore(deps): update module github.com/alecthomas/assert/v2 to v2.7.0 (#949)
  • 5f83664 Vue: Handle more edge cases (#950)
  • 32c053f chore(deps): update all non-major dependencies (#948)
  • 2580aaa Add Bazel bzlmod support into Python lexer (#947)

v2.13.0

Changelog

  • bd47355 fix: include compress state in style cache key
  • 1235bbf chore(deps): update all non-major dependencies (#944)
  • 4e60c81 C#: Allow for empty comments (#943)
  • fe5dde8 Add Lexer for NDISASM (#933)
  • 6dd9f26 feat: introduce a LRU compiled style cache for the HTML formatter (#938)
  • 898d467 lexers/cue: support definitions and dollars in field names (#935)
  • 0f92de4 chore(deps): update all non-major dependencies (#934)
  • 381050b Major updates to Caddyfile lexer (#932)
  • e9292e6 chore(deps): update dependency goreleaser to v1.24.0 (#925)
  • ddbae13 chore: upgrade Go
  • 7ce2caf Fix lexers check when built with newer Go (#928)
  • 506e36f fix(lexers/go): "~" is a valid token (#926)
  • f4788c0 docs: add import to README
  • 39115eb chore(deps): update dependency esbuild to v0.20.0 (#921)
  • 4c6fdb1 Add .avsc to JSON lexer (#920)
  • ee60f7e Add missing token types for Rego + add Rego to README (#919)
  • ae36e63 Add support for Rego syntax (#918)
  • d7a7dd3 chore(deps): update module github.com/alecthomas/assert/v2 to v2.5.0 (#917)
  • c31293c chore(deps): update dependency go to v1.21.6 (#915)
  • ebc34cf fix file extension typo, remove redundent parens (#914)
  • 641b06f Fix type operators not being recognised in Haskell (#913)
  • 3ef9475 chore(deps): update dependency watchexec to v1.25.1 (#912)
  • 23368be styles(catpuccin/gh-dark): LineHighlight grp (#911)
  • a8704a8 Add lexer for RPMSpec (#907)
  • eb47752 Add lexer for Promela (#906)
  • 3f395c9 chore(deps): update all non-major dependencies (#905)
  • 2018c2f chore(deps): update all non-major dependencies (#904)
  • 016768b Add desktop entry lexer (#903)
  • f130045 chore(deps): update dependency watchexec to v1.24.1 (#901)
  • 9670d34 chore(deps): update actions/checkout action to v4 (#899)
  • ad03817 chore(deps): update all non-major dependencies (#898)
  • 76039a5 chore(deps): update all non-major dependencies (#897)
  • 678b799 Add a lexer for the Materialize SQL dialect (#896)

v2.12.0

Changelog

... (truncated)

Commits

Updates github.com/charmbracelet/bubbletea from 0.25.0 to 0.26.4

Release notes

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

v0.26.4

Fix panics! Using program.SetWindowTitle and others may panic if they were called before the program starts.

Also note that program.SetWindowTitle is now deprecated. To set the window title use tea.SetWindowTitle command.

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.3...v0.26.4


Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.

v0.26.3

This is a patch release that prevents tea.WindowSizeMsgs from being fired during altscreen changes on Windows. This was due to the fact that Windows emits a window-size-event on altscreen changes even if the size hand鈥檛 changed. Now, we cache the window-size and compare before sending the message to the Model.

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.2...v0.26.3


Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or Discord.

v0.26.2

This fixes a small regression that was introduced in v0.26.0 related to the first line on the first render not being displayed correctly. Thank you @鈥媘istakenelf for pointing this out in charmbracelet/bubbletea#1000!

What's Changed

Full Changelog: charmbracelet/bubbletea@v0.26.1...v0.26.2


... (truncated)

Commits
  • eb78a8c fix: program renderer commands (#1030)
  • 5331b83 chore(deps): bump github.com/charmbracelet/lipgloss in /examples (#1025)
  • c900512 chore(deps): bump github.com/charmbracelet/x/ansi from 0.1.1 to 0.1.2 (#1026)
  • 2ac3642 chore(ci): enable gofumpt
  • e656c56 chore(examples): update deps
  • cb801d8 refactor: use x/term and x/ansi for renderer sequences (#962)
  • 09f4ef0 fix(windows): prevent firing multiple window size events
  • 920d07b fix(windows): clean up windows input reader
  • ef4e46c chore(readme): add superfile to 'in the wild' (#985)
  • cb36874 docs: add pug to "in the wild"
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/lipgloss from 0.9.1 to 0.11.0

Release notes

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

v0.11.0

Immutable Styles and Raw Speed, Baby

So! The big news in this release is:

  • Style methods will now always return new styles
  • Style and ANSI operations under the hood are faster

There are also a handful of great lil' bug fixes. Read on for more.

Immutable Styles

Every Style method now returns a completely new style with its own underlying data structure no matter what. This means working with Styles is a lot easier. No more need for Copy()!

// Before
s := lipgloss.NewStyle().Bold(true)
newStyle := s.Copy()
// After
s := lipgloss.NewStyle().Bold(true)
newStyle := s // this is a true copy

Okay, but why are styles easier to work with now? Consider this:

// Before
baseStyle := lipgloss.NewStyle().Background(lipgloss.Color("59"))
styleAtRuntime := baseStyle.Copy().Width(m.Width)
// After
baseStyle := lipgloss.NewStyle().Padding(1, 2)
styleAtRuntime := baseStyle.Width(m.Width)

It might seem small, but eliminating the risk of mutations in persistent styles in an enormous usability improvement.

How to upgrade

There's nothing to do, however Style.Copy() is now deprecated and only returns itself, so you can just remove Style.Copy() calls. If you need to just copy a style without any changes to it you can simply b := a.

Faster ANSI

Sometimes watch companies brag about their "in-house" watch movement. Well, now we're bragging about our in-house-amazing x/ansi library by our own @鈥媋ymanbagabas. It's a fine-tuned, low-level way to manage ANSI sequencing and, because we're pretty nerdy, we鈥檙e super excited about it.


What's Changed

... (truncated)

Commits
  • 5cd858c fix: respect UnderlineSpaces and StrikethroughSpaces (#299)
  • c91ab3e chore(ci): enable gofumpt
  • 83fa9be chore: use x/ansi instead of exp/term
  • ce5323e chore(deps): bump golangci/golangci-lint-action from 5 to 6 (#290)
  • e3596ae chore(ci): test for different GOOS & GOARCH
  • 2fe044a fix: Change the propkeys from int to int64
  • 3ee5dca chore(docs): doc updates with regard to style.Copy() deprecation
  • 517b1a1 fix: remove unused type
  • d2795c7 refactor: replace props map with struct fields (#276)
  • c986440 chore(lint): remove deprecated ifshort linting option
  • Additional commits viewable in compare view

Updates github.com/charmbracelet/wish from 1.2.0 to 1.4.0

Release notes

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

v1.4.0

Changelog

New Features

  • 0169ff6c94693eb96c9a3ddc07852790ab333bbd: feat: logging.StructuredMiddleware (#254) (@鈥媍aarlos0)

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.2

Changelog

Bug fixes

Documentation updates

  • b54847f0d36e0aede3f4a8c6f6d2a6591bc6ed2a: docs: improve examples even further (#240) (@鈥媍aarlos0)

Other work

  • 3b7f41d9e4de40a928c14cb54e6aa3e9772b325d: Create CODEOWNERS (@鈥媘aaslalani)

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.1

Changelog

Documentation updates

  • 23261db3d12423efceda03ef15dec56bdcf28cec: docs: improving examples and docs (#235) (@鈥媍aarlos0)

Thoughts? Questions? We love hearing from you. Feel free to reach out on Twitter, The Fediverse, or on Discord.

v1.3.0

PTYs, Subsystems, and More

This release is loaded with improvements and new features like support for exec, server banners, subsystems, and client color profiles. Read on for more!

Exec and PTYs

At last, now you can get real a PTY for reach SSH connection. This allows you to exec.Command on the remote. This also means bubbletea.Exec will now work as expected[^windows]!

// Open a file in Vim in Bubble Tea (on the server)
c := wish.Command(m.sess, "vim", "file.txt")
</tr></table> 

... (truncated)

Commits
  • 309ee5c chore(deps): update charmbracelet/ssh
  • bc0f67f chore(deps): bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 (#255)
  • 0169ff6 feat: logging.StructuredMiddleware (#254)
  • c8de232 chore(deps): bump github.com/charmbracelet/log in /examples (#252)
  • 3061fba chore(deps): bump github.com/charmbracelet/log from 0.3.1 to 0.4.0 (#253)
  • 3d2054d fix: remove ssh server version (#249)
  • 8edb0a1 chore(deps): bump github.com/charmbracelet/lipgloss in /examples (#248)
  • b0e6bdc chore(deps): bump github.com/charmbracelet/lipgloss from 0.9.1 to 0.10.0 (#247)
  • 748a837 chore(deps): bump golang.org/x/crypto from 0.20.0 to 0.21.0 in /examples (#246)
  • 65d9f07 chore(deps): bump golang.org/x/crypto from 0.20.0 to 0.21.0 (#245)
  • Additional commits viewable in compare view

Updates github.com/jaevor/go-nanoid from 1.3.0 to 1.4.0

Release notes

Sourced from github.com/jaevor/go-nanoid's releases.

v1.4.0

Added nanoid.Canonic() which is direct to nanoid.Standard(21). Made comments briefer, added a note in README about memory use.

Commits
  • 3a26723 readme update; briefer comments & tests; direct canonic func
  • 9cf0764 Merge pull request #6 from ramonberrutti/patch-2
  • 04d01b5 fix: correct asciiAlphabet index
  • dbbf01d Merge pull request #4 from ErebusBat/add-must-custom-ascii
  • b98b58b shorter readme
  • b1ec969 Add MustCustomASCII function.
  • ae1d3ca deps update | shorter readme
  • 2a78a8e updated readme & go.mod
  • See full diff in compare view

Updates github.com/klauspost/compress from 1.17.7 to 1.17.9

Release notes

Sourced from github.com/klauspost/compress's releases.

v1.17.9

What's Changed

Full Changelog: klauspost/compress@v1.17.8...v1.17.9

v1.17.8

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.7...v1.17.8

Commits
  • 7ae2138 Upgrade zlib to upstream (#971)
  • 0396178 zstd: BuildDict fails with RLE table (#951)
  • 8411e1d zip: Upgrade to 1.22.4 upstream (#970)
  • d9f6f55 build(deps): bump the github-actions group across 1 directory with 2 updates ...
  • 5f7dd25 flate, zstd: Shave some bytes off amd64 matchLen (#963)
  • 3a0faf3 Fix arm64 vet issues (#964)
  • 8bd3916 s2: Reduce ReadFrom temporary allocations (#949)
  • c0ff47e Update README.md
  • 657dc16 chore: remove repetitive words (#946)
  • 3f77d8c build(deps): bump the github-actions group with 1 update (#944)
  • Additional commits viewable in compare view

Updates github.com/rs/zerolog from 1.31.0 to 1.33.0

Commits

Updates github.com/stretchr/testify from 1.8.4 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view

Updates github.com/tdewolff/minify/v2 from 2.20.15 to 2.20.34

Release notes

Sourced from github.com/tdewolff/minify/v2's releases.

v2.20.34

v2.20.33

v2.20.32

  • Fix NodeJS and Python bindings on 32-bit systems (again), see #707
  • Prevent copying input data for NodeJS and Python bindings, making them slightly more efficient

v2.20.31

  • Fix NodeJS and Python bindings on 32-bit systems

v2.20.30

v2.20.29

  • Fix Python and NodeJS bindings for 32-bit systems, fixes #707

v2.20.28

  • Fix building from source for NodeJS binding

v2.20.27

  • Fix building locally for Python binding

v2.20.26

  • Fix workflows for NodeJS and Python bindings

v2.20.25

  • Fix NodeJS binding build-from-source

v2.20.24

  • Fix Python and JS bindings

v2.20.23

  • Fix Python binding for MacOS

v2.20.22

v2.20.21

... (truncated)

Commits
  • a338f49 Update tdewolff/parse
  • 6f9a4ea Merge branch 'master' of github.com:tdewolff/minify
  • 76bec4e Update dependencies, fixes some bugs in argp
  • b023a48 Merge pull request #712 from mrf345/add-keep-special-comments-to-bindings
  • c625b71 chore: add keep-special-comments to bindings
  • f75995c Merge branch 'master' of github.com:tdewolff/minify
  • 7930f01 JS: don't convert carriage returns (\r) to a literal inside template literals...
  • 152fd9a Merge pull request #709 from shlomif/grammar-fixes
  • 579d27b Correct some broken spelling in the README.
  • bfacf27 Fixed NodeJS and Python bindings (again)
  • Additional commits viewable in compare view

Updates github.com/yuin/goldmark from 1.7.0 to 1.7.2

Commits
  • a590622 Fixes #455
  • fde4948 Merge pull request #455 from camdencheek/support-single-tilde-strikethrough
  • 9c09ae0 support single-tilde strikethrough
  • c15e394 Merge pull request #448 from movsb/fix-attribute-string
  • e405d57 make SetAttributeString() accept both []byte and string
  • ce6424a Merge pull request #446 from mr-chelyshkin/goldmark-tgmd
  • 09afa2f add link to goldmark-tgmd renderer
  • 4f30744 Merge pull request #443 from philipparndt/patch-1
  • 4675c66 docu: update example as it will not build
  • 848dc66 Add playground link
  • See full diff in compare view
  • <...

    Description has been truncated

Bumps the gomod group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ariga.io/atlas](https://github.com/ariga/atlas) | `0.15.0` | `0.24.0` |
| [github.com/alecthomas/chroma/v2](https://github.com/alecthomas/chroma) | `2.10.0` | `2.14.0` |
| [github.com/charmbracelet/bubbletea](https://github.com/charmbracelet/bubbletea) | `0.25.0` | `0.26.4` |
| [github.com/charmbracelet/lipgloss](https://github.com/charmbracelet/lipgloss) | `0.9.1` | `0.11.0` |
| [github.com/charmbracelet/wish](https://github.com/charmbracelet/wish) | `1.2.0` | `1.4.0` |
| [github.com/jaevor/go-nanoid](https://github.com/jaevor/go-nanoid) | `1.3.0` | `1.4.0` |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.17.7` | `1.17.9` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.31.0` | `1.33.0` |
| [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) | `2.20.15` | `2.20.34` |
| [github.com/yuin/goldmark](https://github.com/yuin/goldmark) | `1.7.0` | `1.7.2` |



Updates `ariga.io/atlas` from 0.15.0 to 0.24.0
- [Release notes](https://github.com/ariga/atlas/releases)
- [Commits](ariga/atlas@v0.15.0...v0.24.0)

Updates `github.com/alecthomas/chroma/v2` from 2.10.0 to 2.14.0
- [Release notes](https://github.com/alecthomas/chroma/releases)
- [Changelog](https://github.com/alecthomas/chroma/blob/master/.goreleaser.yml)
- [Commits](alecthomas/chroma@v2.10.0...v2.14.0)

Updates `github.com/charmbracelet/bubbletea` from 0.25.0 to 0.26.4
- [Release notes](https://github.com/charmbracelet/bubbletea/releases)
- [Commits](charmbracelet/bubbletea@v0.25.0...v0.26.4)

Updates `github.com/charmbracelet/lipgloss` from 0.9.1 to 0.11.0
- [Release notes](https://github.com/charmbracelet/lipgloss/releases)
- [Commits](charmbracelet/lipgloss@v0.9.1...v0.11.0)

Updates `github.com/charmbracelet/wish` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/charmbracelet/wish/releases)
- [Changelog](https://github.com/charmbracelet/wish/blob/main/.goreleaser.yml)
- [Commits](charmbracelet/wish@v1.2.0...v1.4.0)

Updates `github.com/jaevor/go-nanoid` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/jaevor/go-nanoid/releases)
- [Commits](jaevor/go-nanoid@v1.3.0...v1.4.0)

Updates `github.com/klauspost/compress` from 1.17.7 to 1.17.9
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.7...v1.17.9)

Updates `github.com/rs/zerolog` from 1.31.0 to 1.33.0
- [Commits](rs/zerolog@v1.31.0...v1.33.0)

Updates `github.com/stretchr/testify` from 1.8.4 to 1.9.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.8.4...v1.9.0)

Updates `github.com/tdewolff/minify/v2` from 2.20.15 to 2.20.34
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](tdewolff/minify@v2.20.15...v2.20.34)

Updates `github.com/yuin/goldmark` from 1.7.0 to 1.7.2
- [Release notes](https://github.com/yuin/goldmark/releases)
- [Commits](yuin/goldmark@v1.7.0...v1.7.2)

Updates `golang.org/x/crypto` from 0.14.0 to 0.21.0
- [Commits](golang/crypto@v0.14.0...v0.21.0)

---
updated-dependencies:
- dependency-name: ariga.io/atlas
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/alecthomas/chroma/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/charmbracelet/bubbletea
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/charmbracelet/lipgloss
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/charmbracelet/wish
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/jaevor/go-nanoid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/klauspost/compress
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/rs/zerolog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/tdewolff/minify/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/yuin/goldmark
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

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 Jun 17, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 24, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-588470a5dd branch June 24, 2024 06:59
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.

None yet

0 participants