StoneWork
StoneWork copied to clipboard
Bump the go-deps group with 20 updates
Bumps the go-deps group with 20 updates:
Package | From | To |
---|---|---|
github.com/bufbuild/protocompile | 0.5.1 |
0.11.0 |
github.com/compose-spec/compose-go | 1.17.0 |
1.20.2 |
github.com/docker/cli | 24.0.5+incompatible |
26.0.2+incompatible |
github.com/docker/compose/v2 | 2.14.0 |
2.26.1 |
github.com/docker/docker | 24.0.5+incompatible |
26.0.0+incompatible |
github.com/fsnotify/fsnotify | 1.6.0 |
1.7.0 |
github.com/go-errors/errors | 1.4.2 |
1.5.1 |
github.com/goccy/go-yaml | 1.8.0 |
1.11.3 |
github.com/gookit/color | 1.5.2 |
1.5.4 |
github.com/onsi/gomega | 1.24.1 |
1.29.0 |
github.com/spf13/cobra | 1.7.0 |
1.8.0 |
github.com/unrolled/render | 0.0.0-20180914162206-b9786414de4d |
1.6.1 |
github.com/vishvananda/netns | 0.0.0-20211101163701-50045581ed74 |
0.0.4 |
go.fd.io/govpp | 0.8.0 |
0.10.0 |
go.ligato.io/cn-infra/v2 | 2.5.0-alpha.0.20230824082901-356dce1f1754 |
2.5.0 |
go.ligato.io/vpp-agent/v3 | 3.5.0-alpha.0.20231009134600-723f8db0bf7a |
3.5.0 |
golang.org/x/exp | 0.0.0-20230713183714-613f0c0eb8a1 |
0.0.0-20240112132812-db7319d0e0e3 |
golang.org/x/sys | 0.13.0 |
0.16.0 |
google.golang.org/grpc | 1.56.2 |
1.59.0 |
google.golang.org/protobuf | 1.30.0 |
1.33.1-0.20240408130810-98873a205002 |
Updates github.com/bufbuild/protocompile
from 0.5.1 to 0.11.0
Release notes
Sourced from github.com/bufbuild/protocompile's releases.
v0.11.0
This release includes some more Editions-related work.
What's Changed
Bugfixes
- Validate target type for all option fields, not just features by
@jhump
in #279
- Previously, the
targets
field option was only validated for fields ofgoogle.protobuf.FeatureSet
, but it is now validated for all fields set on option values.- Fix issues with reporting of redundant/inaccurate errors by
@jhump
in #281Enhancements
- Add Editions-related helper functions, for resolving features, to
protoutil
sub-package by@jhump
in #283- Allow access to original descriptor when wrapped in a
linker.File
via newUnwrap
method by@jhump
in #278Other changes
- Proto2 group fields can use lower-case name in the text format (in option values that use message literals) by
@jhump
in #268
- This aligns protocompile with a small change that is coming in protoc v27.0.
Full Changelog: https://github.com/bufbuild/protocompile/compare/v0.10.0...v0.11.0
v0.10.0
This release marks significant progress in implementing Protobuf Editions. Editions are not yet generally supported because there are a couple of remaining checks that need to be done. Until then, users can opt-in to using Editions source files with this compiler using the
editionstesting.AllowEditions
function.This release also includes some backwards-incompatible changes, though they likely will not have any impact on most users. They are changes to interfaces that are compatible for users/callers of the interface, but incompatible for any code outside of this repo that implemented those interfaces.
What's Changed
Bugfixes
- In the recently added
options.StripSourceRetentionOptionsFromFile
, clear options if no fields remain and also clear source code info, in #251- This repo previously allowed some sources that
protoc
would reject, due to incomplete validation of options. These checks were added in #264:
- Non-lite files may not import lite files. (A lite file is one that uses option
optimize_for=LITE_RUNTIME
.)- Extensions in a lite file may not extend messages in a non-lite file.
- Field options
lazy
andunverified_lazy
can only be set to true for message fields.- Field option
jstype
can only be customized for 64-bit integer fields (int64
,uint64
,sint64
,fixed64
, andsfixed64
).Enhancements
- Editions-related updated:
- Update descriptor implementations to work with Editions files, in #260, #261, and #270
- Add more internal compiler support for Editions, in #264
- Provide an exported function for users to opt-in to using Editions, in #267. Note that this capability is temporary and will be removed once Editions support is complete (since opt-in won't be necessary and Editions support will be generally available).
- Support and enforce extension declarations, in #263
Other Changes
- Remove feature related to "canonical bytes", in #261
- This is a backwards-incompatible change, but only impacts a likely-unused feature. The method
linker.Result.CanonicalProto()
has been removed. This feature was too complicated to continue supporting in the face of changes to interpreting options that needed to be implemented for Editions. (The feature was ultimately never used for its original intended purpose, so is likely not used at all.)- Add support for iterating option nodes in the
ast
sub-package via newast.NodeWithOptions
interface, in #263
- This is a backwards-incompatible change, but only impacts code that implements some of this repo's interfaces, not any code that merely uses those interfaces.
- This adds a new
RangeOptions
function to several sub-interfaces ofast.Node
, so they also are now sub-interfaces ofast.NodeWtihOptions
. The interfaces changed areast.FileDeclNode
,ast.MessageDeclNode
,ast.FieldDeclNode
,ast.OneofDeclNode
,ast.RPCDeclNode
, andast.EnumValueDeclNode
.- This also adds a method,
ExtensionsNode
, to theparser.Result
interface, and expands the return types of three methods (OneofNode
,EnumNode
, andServiceNode
) fromast.Node
toast.NodeWithOptions
.Full Changelog: https://github.com/bufbuild/protocompile/compare/v0.9.0...v0.10.0
... (truncated)
Commits
59e75db
Add editions helper functions for resolving features to protoutil (#283)e8799f7
Validate target type for all option fields, not just features (#279)71b8e4c
Fix flakiness of non-deterministic test case (#282)8d06c09
Linker tests allow compiler to report multiple errors; fix ensuing issues wit...07ee827
Bump github.com/bufbuild/protocompile from 0.9.0 to 0.10.0 in /internal/bench...263491e
Bump golang.org/x/tools from 0.19.0 to 0.20.0 in /internal/tools (#272)18be109
Bump golang.org/x/sync from 0.6.0 to 0.7.0 in /internal/benchmarks (#274)ac869e4
Bump golang.org/x/sync from 0.6.0 to 0.7.0 (#271)0c62e63
Move internal editions code to new internal/editions package (#280)3073c13
Allow access to original descriptor when wrapped in alinker.File
(#278)- Additional commits viewable in compare view
Updates github.com/compose-spec/compose-go
from 1.17.0 to 1.20.2
Release notes
Sourced from github.com/compose-spec/compose-go's releases.
v1.20.2
What's Changed
- update compose-spec.json with path and action as required field for develop by
@glours
in compose-spec/compose-go#496- Add a network-scoped mac_address field by
@akerouanton
in compose-spec/compose-go#494Full Changelog: https://github.com/compose-spec/compose-go/compare/v1.20.1...v1.20.2
v1.20.1
What's Changed
- Add Kurtosis to the list of compose-go users by
@mieubrisse
in compose-spec/compose-go#474- label can be set with empty value by
@ndeloof
in compose-spec/compose-go#475- add support for inline config by
@ndeloof
in compose-spec/compose-go#484- add support for build.ulimits by
@ndeloof
in compose-spec/compose-go#487New Contributors
@mieubrisse
made their first contribution in compose-spec/compose-go#474Full Changelog: https://github.com/compose-spec/compose-go/compare/v1.20.0...v1.20.1
v1.20.0
What's Changed
- dotenv: fix an unintended buffer copy by
@nicks
in compose-spec/compose-go#462- avoid to fail if a duplicate resource is the same as a previous added ones by
@glours
in compose-spec/compose-go#466- define Options type for (driver) options we pass as-is to runtime by
@ndeloof
in compose-spec/compose-go#467- introduce DecodeMapstructure to allow type to define custom decode logic by
@ndeloof
in compose-spec/compose-go#465- add restart action to watch attribute in the develop section by
@glours
in compose-spec/compose-go#469- loader: fix a panic by
@nicks
in compose-spec/compose-go#472Full Changelog: https://github.com/compose-spec/compose-go/compare/v1.19.0...v1.20.0
v1.19.0
What's Changed
- apply reset on extended services by
@ndeloof
in compose-spec/compose-go#455- prevent panic with empty document by
@ndeloof
in compose-spec/compose-go#457- Extract hard-coded strings as variables by
@VTerziev
in compose-spec/compose-go#456- introduce
develop
section by@ndeloof
in compose-spec/compose-go#461- introduce SkipResolveEnvironment loader option by
@ndeloof
in compose-spec/compose-go#460New Contributors
@VTerziev
made their first contribution in compose-spec/compose-go#456Full Changelog: https://github.com/compose-spec/compose-go/compare/v1.18.4...v1.19.0
v1.18.4
What's Changed
- migrate to github.com/distribution/reference by
@thaJeztah
in compose-spec/compose-go#452- keep depends_on config for services explicitly selected by
@ndeloof
in compose-spec/compose-go#454
... (truncated)
Commits
e390b97
Add a network-scoped mac_address field6a91ca5
update compose-spec.json with path and action as required field for develop0f734f9
v1 branch0eea9f8
Merge pull request #487 from ndeloof/build-ulimits-v1d91e0e9
add support for build.ulimits5c2ad73
Merge pull request #484 from ndeloof/inline_config_v1accf4aa
add support for inline config7ef3e28
Merge pull request #475 from ndeloof/decode_labels317b7c4
label can be set with empty value7bdb947
Merge pull request #474 from mieubrisse/patch-2- Additional commits viewable in compare view
Updates github.com/docker/cli
from 24.0.5+incompatible to 26.0.2+incompatible
Commits
3c863ff
Merge pull request #5028 from vvoland/vendor-dockerc1b7df3
vendor: github.com/docker/docker v26.0.2-dev (7cef0d9c)d260a54
Merge pull request #5007 from vvoland/vendor-docker3369ffe
vendor: github.com/docker/docker v26.0.1-dev (60b9add796ae)3cf84fb
Merge pull request #5006 from vvoland/v26.0-5005b1b03b3
cli-bin/windows: Add .exe extension57d2fbb
Merge pull request #4999 from thaJeztah/26.0_backport_bump_x_netc33cc92
vendor: golang.org/x/net v0.23.0156e20c
vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.07522a62
vendor: golang.org/x/term v0.18.0- Additional commits viewable in compare view
Updates github.com/docker/compose/v2
from 2.14.0 to 2.26.1
Release notes
Sourced from github.com/docker/compose/v2's releases.
v2.26.1
🐛 Fixes
- Include image pull failure reason in output (#11555)
- Fix crash when running up with
--no-build
and--watch
(#11664)- Fix crash when no TTY available and menu enabled (#11672)
- Improve legibility of menu actions (#11671)
🔧 Internal
- Bump opencontainers/image-spec to 1.1.0 (#11657)
Changelog
- Pull: include error message in warnings/errors by
@felixfontein
in docker/compose#11555- build(deps): bump github.com/opencontainers/image-spec from 1.1.0-rc6 to 1.1.0 by
@dependabot
in docker/compose#11657- Handle --no-build and --watch args by
@jhrotko
in docker/compose#11664- Change menu information text to dim by
@jhrotko
in docker/compose#11671- Does not start menu manager if there is no tty on up by
@jhrotko
in docker/compose#11672New Contributors
@felixfontein
made their first contribution in docker/compose#11555Full Changelog: https://github.com/docker/compose/compare/v2.26.0...v2.26.1
v2.26.0
What's Changed
🐛 Fixes
- reduce timeout of the Otel tracing command by
@glours
in docker/compose#11534- fix
compose config --format json
by@ndeloof
in docker/compose#11630- Fix documentation on default build image name (change to correct separator). by
@sebastian-correa
in docker/compose#11635✨ Improvements
- Mutagen synchronized file share integration by
@milas
in docker/compose#11614- Add support for annotations by
@ndeloof
in docker/compose#11645- Introduce
config --variables
to list compose model variables by@ndeloof
in docker/compose#11643- Add navigation menu with in compose up (attached) by
@jhrotko
in docker/compose#11605🔧 Internal
- Bump compose-go to v2.0.2 by
@ndeloof
in docker/compose#11650- Bump docker v26.0.0 by
@ndeloof
in docker/compose#11652New Contributors
@sebastian-correa
made their first contribution in docker/compose#11635Full Changelog: https://github.com/docker/compose/compare/v2.25.0...v2.26.0
v2.25.0
What's Changed
🐛 Fixes
... (truncated)
Commits
ff20b64
Does not start keyboard manager if there is no tty339b331
Change menu information text to dim6fe69b2
Merge pull request #11664 from jhrotko/fix-no-build-watchdd5614e
Handle --no-build and --watch args4b7b6ad
build(deps): bump github.com/opencontainers/image-spec466374b
Unwrap error message.2e85b3c
Include error message in pull warning/errors3371227
chore(desktop): revised feature detection for file sharese9dc820
Add Navigation Menu to compose up3950460
Add support for volume Subpath option- Additional commits viewable in compare view
Updates github.com/docker/docker
from 24.0.5+incompatible to 26.0.0+incompatible
Release notes
Sourced from github.com/docker/docker's releases.
v26.0.0
26.0.0
For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:
- docker/cli, 26.0.0 milestone
- moby/moby, 26.0.0 milestone
- Deprecated and removed features, see Deprecated Features.
- Changes to the Engine API, see API version history.
Security
This release contains a security fix for [CVE-2024-29018], a potential data exfiltration from 'internal' networks via authoritative DNS servers.
New
- Add
Subpath
field to theVolumeOptions
making it possible to mount a subpath of a volume. moby/moby#45687- Add
volume-subpath
support to the mount flag (--mount type=volume,...,volume-subpath=<subpath>
). docker/cli#4331- Accept
=
separators and[ipv6]
in compose files fordocker stack deploy
. docker/cli#4860- rootless: Add support for enabling host loopback by setting the
DOCKERD_ROOTLESS_ROOTLESSKIT_DISABLE_HOST_LOOPBACK
environment variable tofalse
(defaults totrue
). This lets containers connect to the host by using IP address10.0.2.2
. moby/moby#47352- containerd image store:
docker image ls
no longer creates duplicates entries for multi-platform images. moby/moby#45967- containerd image store: Send Prometheus metrics. moby/moby#47555
Bug fixes and enhancements
- [CVE-2024-29018]: Do not forward requests to external DNS servers for a container that is only connected to an 'internal' network. Previously, requests were forwarded if the host's DNS server was running on a loopback address, like systemd's 127.0.0.53. moby/moby#47589
- Ensure that a generated MAC address is not restored when a container is restarted, but a configured MAC address is preserved. moby/moby#47233
[!WARNING]
Containers created using Docker Engine 25.0.0 may have duplicate MAC addresses, they must be re-created. Containers created using version 25.0.0 or 25.0.1 with user-defined MAC addresses will get generated MAC addresses when they are started using 25.0.2. They must also be re-created.
- Always attempt to enable IPv6 on a container's loopback interface, and only include IPv6 in
/etc/hosts
if successful. moby/moby#47062[!NOTE]
By default, IPv6 will remain enabled on a container's loopback interface when the container is not connected to an IPv6-enabled network. For example, containers that are only connected to an IPv4-only network now have the
::1
address on their loopback interface.To disable IPv6 in a container, use option
--sysctl net.ipv6.conf.all.disable_ipv6=1
in thecreate
orrun
command, or the equivalentsysctls
option in the service configuration section of a Compose file.If IPv6 is not available in a container because it has been explicitly disabled for the container, or the host's networking stack does not have IPv6 enabled (or for any other reason) the container's
/etc/hosts
file will not include IPv6 entries.
- Fix
ADD
Dockerfile instruction failing withlsetxattr <file>: operation not supported
when unpacking archive with xattrs onto a filesystem that doesn't support them. moby/moby#47175- Fix
docker container start
failing when used with--checkpoint
. moby/moby#47456
... (truncated)
Commits
8b79278
Merge pull request #47599 from neersighted/short_id_aliases_removal22726fb
api: document changed behavior of theAliases
field in v1.45963e1f3
Merge pull request #47597 from vvoland/c8d-list-fix-shared-size3312b82
c8d/list: Add a test case for images sharing a top layerad8a5a5
c8d/list: Fix diffIDs being outputted instead of chainIDs0c2d83b
c8d/list: Handle unpacked layers when calculating shared size330d777
Merge pull request #47591 from vvoland/api-1.453d2a56e
docs/api: add documentation for API v1.454531a37
Merge pull request #47580 from vvoland/c8d-list-slow731a640
c8d/list: Generate image summary concurrently- Additional commits viewable in compare view
Updates github.com/fsnotify/fsnotify
from 1.6.0 to 1.7.0
Release notes
Sourced from github.com/fsnotify/fsnotify's releases.
v1.7.0
This version of fsnotify needs Go 1.17.
Additions
illumos: add FEN backend to support illumos and Solaris. (#371)
all: add
NewBufferedWatcher()
to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)all: add
AddWith()
, which is identical toAdd()
but allows passing options. (#521)windows: allow setting the ReadDirectoryChangesW() buffer size with
fsnotify.WithBufferSize()
; the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)Changes and fixes
inotify: remove watcher if a watched path is renamed (#518)
After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.
On Windows this does work, and remains working.
windows: don't listen for file attribute changes (#520)
File attribute changes are sent as
FILE_ACTION_MODIFIED
by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.windows: return
ErrEventOverflow
if the buffer is full (#525)Before it would merely return "short read", making it hard to detect this error.
kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)
Previously they would get sent with
""
(empty string) or"."
as the path name.kqueue: don't emit spurious Create events for symbolic links (#524)
The link would get resolved but kqueue would "forget" it already saw the link itself, resulting on a Create for every Write event for the directory.
all: return
ErrClosed
onAdd()
when the watcher is closed (#516)other: add
Watcher.Errors
andWatcher.Events
to the no-opWatcher
inbackend_other.go
, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#528)other: use the
backend_other.go
no-op if theappengine
build tag is set; Google AppEngine forbids usage of the unsafe package so the inotify backend won't compile there.#371: fsnotify/fsnotify#371 #516: fsnotify/fsnotify#516 #518: fsnotify/fsnotify#518 #520: fsnotify/fsnotify#520 #521: fsnotify/fsnotify#521 #524: fsnotify/fsnotify#524 #525: fsnotify/fsnotify#525
... (truncated)
Changelog
Sourced from github.com/fsnotify/fsnotify's changelog.
1.7.0 - 2023-10-22
This version of fsnotify needs Go 1.17.
Additions
illumos: add FEN backend to support illumos and Solaris. (#371)
all: add
NewBufferedWatcher()
to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#550, #572)all: add
AddWith()
, which is identical toAdd()
but allows passing options. (#521)windows: allow setting the ReadDirectoryChangesW() buffer size with
fsnotify.WithBufferSize()
; the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#521)Changes and fixes
inotify: remove watcher if a watched path is renamed (#518)
After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.
On Windows this does work, and remains working.
windows: don't listen for file attribute changes (#520)
File attribute changes are sent as
FILE_ACTION_MODIFIED
by the Windows API, with no way to see if they're a file write or attribute change, so would show up as a fsnotify.Write event. This is never useful, and could result in many spurious Write events.windows: return
ErrEventOverflow
if the buffer is full (#525)Before it would merely return "short read", making it hard to detect this error.
kqueue: make sure events for all files are delivered properly when removing a watched directory (#526)
Previously they would get sent with
""
(empty string) or"."
as the path name.kqueue: don't emit spurious Create events for symbolic links (#524)
... (truncated)
Commits
cfc9c4f
Few more tiny doc fixes >_<c3fa8e6
Proof-read some docs and prepare 1.7.0 release5310461
Remove stray trailing space in doc commentf01d91e
Add NewBufferedWatcher() (#572)e545940
Merge pull request #589 from fsnotify/win-rmc86f21c
Document and test removing watched directory on Windows68111f2
Merge pull request #588 from fsnotify/illumos0614185
Add back illumos2f2332a
Idiomatic bitwise operations769aaa7
Tweak docs- Additional commits viewable in compare view
Updates github.com/go-errors/errors
from 1.4.2 to 1.5.1
Commits
Updates github.com/goccy/go-yaml
from 1.8.0 to 1.11.3
Release notes
Sourced from github.com/goccy/go-yaml's releases.
1.11.3
What's Changed
- fix: remove any trailing empty lines if the block scalar has strip indicator by
@zoncoen
in goccy/go-yaml#421Full Changelog: https://github.com/goccy/go-yaml/compare/v1.11.2...v1.11.3
1.11.2
What's Changed
- Fix handle of space at start or last by
@ozraru
in goccy/go-yaml#376- Fix quoted comments by
@WillAbides
in goccy/go-yaml#370- Fix sequence with comment by
@goccy
in goccy/go-yaml#390- bump actions/checkout v4 by
@shogo82148
in goccy/go-yaml#391- add Go 1.21 to the build matrix by
@shogo82148
in goccy/go-yaml#392- apply go fmt with Go 1.21 by
@shogo82148
in goccy/go-yaml#394- bump actions/setup-go v4 by
@shogo82148
in goccy/go-yaml#393New Contributors
@WillAbides
made their first contribution in goccy/go-yaml#370@shogo82148
made their first contribution in goccy/go-yaml#391Full Changelog: https://github.com/goccy/go-yaml/compare/v1.11.1...v1.11.2
1.11.1
What's Changed
- Handle
\r
in a double-quoted string the same as\n
by@k1LoW
in goccy/go-yaml#372- chore: replace loop with n.Values = append(n.Values, target.Values...) by
@testwill
in goccy/go-yaml#380- fix: skip encoding an inline field if it is null by
@zoncoen
in goccy/go-yaml#386- Fix comment parsing with null value by
@goccy
in goccy/go-yaml#388New Contributors
@testwill
made their first contribution in goccy/go-yaml#380Full Changelog: https://github.com/goccy/go-yaml/compare/v1.11.0...v1.11.1
1.11.0
What's Changed
- Supports dynamically switch encode and decode processing for a given type by
@goccy
in goccy/go-yaml#368Full Changelog: https://github.com/goccy/go-yaml/compare/v1.10.1...v1.11.0
1.10.1
What's Changed
- Quote YAML 1.1 bools at encoding time for compatibility with other legacy parsers by
@mumoshu
in goccy/go-yaml#354- Update CI by
@goccy
in goccy/go-yaml#364- Update Go Version by
@goccy
in goccy/go-yaml#365- Don't trim all space characters in SequenceNode.blockStyleString by
@martin-sucha
in goccy/go-yaml#361- Add support of 32-bit architecture by
@ozraru
in goccy/go-yaml#350- Support strings starting with @ by
@10io
in goccy/go-yaml#339
... (truncated)
Changelog
Sourced from github.com/goccy/go-yaml's changelog.
1.11.2 - 2023-09-15
Fix bugs
- Fix quoted comments ( #370 )
- Fix handle of space at start or last ( #376 )
- Fix sequence with comment ( #390 )
1.11.1 - 2023-09-14
Fix bugs
- Handle
\r
in a double-quoted string the same as\n
( #372 )- Replace loop with n.Values = append(n.Values, target.Values...) ( #380 )
- Skip encoding an inline field if it is null ( #386 )
- Fix comment parsing with null value ( #388 )
1.11.0 - 2023-04-03
Features
- Supports dynamically switch encode and decode processing for a given type
1.10.1 - 2023-03-28
Features
- Quote YAML 1.1 bools at encoding time for compatibility with other legacy parsers
- Add support of 32-bit architecture
Fix bugs
- Don't trim all space characters in block style sequence
- Support strings starting with
@
1.10.0 - 2023-03-01
Fix bugs
Reversible conversion of comments was not working in various cases, which has been corrected. Breaking Change exists in the comment map interface. However, if you are dealing with CommentMap directly, there is no problem.
1.9.8 - 2022-12-19
Fix feature
- Append new line at the end of file ( #329 )
Fix bugs
... (truncated)
Commits
31fe1ba
fix: remove any trailing empty lines if the block scalar has strip indicator ...0640a15
bump actions/setup-go v4 (#393)c33fec6
apply go fmt with Go 1.21 (#394)c25bb8b
add Go 1.21 to the build matrix (#392)aa422f5
bump actions/checkout v4 (#391)0c2ade1
update CHANGELOG957e9d7
Fix sequence with comment (#390)4df8923
Fix quoted comments (#370)1c0fdf0
Update issue templates5b5e7e0
create pull request template- Additional commits viewable in compare view
Updates github.com/gookit/color
from 1.5.2 to 1.5.4
Release notes
Sourced from github.com/gookit/color's releases.
v1.5.4
Change Log
Fixed
- :bug: fix: fix convert basic color to rgb color fail https://github.com/gookit/color/commit/74bb51332bf1bd7277b9237b06ac6927939eceba
Feature
- :sparkles: feat: RGBColor add new method: ToFg(), ToBg() for quick convert https://github.com/gookit/color/commit/fe2b2512df73b109259f1beaf3f8185323250663
- :sparkles: feat: Color add new method: IsBg(), IsFg(), IsOption() for check color https://github.com/gookit/color/commit/9027b9d2a5168ea482a8a8b46711191450514aa3
Other
- build(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.2 (#57) https://github.com/gookit/color/commit/a43d1376f0346a52b889765414956782106f7a34
- build(deps): bump golang.org/x/sys from 0.6.0 to 0.7.0 (#59) https://github.com/gookit/color/commit/13c3e972f2e1fd029692b4dc6582c81fecfc7816
- build(deps): bump golang.org/x/sys from 0.7.0 to 0.8.0 (#60) https://github.com/gookit/color/commit/264b64fd901caf418dfcb0ab0811dbdcf787eb92
- build(deps): bump golang.org/x/sys from 0.8.0 to 0.9.0 (#63) https://github.com/gookit/color/commit/dd23b1231e2ffb427b9edf60e53ae061a17cb1c5
- build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#62) https://github.com/gookit/color/commit/0354c4ad5123391841963f0341509fb2bb0ad675
- build(deps): bump golang.org/x/sys from 0.9.0 to 0.10.0 (#64) https://github.com/gookit/color/commit/7da3fe338351563c274957b4b6133c479491e9e0
v1.5.3
Change Log
Feature
- :sparkles: feat: add new pkg colorp for quickly print message https://github.com/gookit/color/commit/6037df8c68e6ec5d85b05bf9c919f2dc4934deb4
Other
- build(deps): bump WillAbides/setup-go-faster from 1.7.0 to 1.8.0 https://github.com/gookit/color/commit/3cee7ac496ad2404335ccb79eddea5d851de91e0
- {type}:chore: update some deps to latest version https://github.com/gookit/color/commit/64f6508ad31e9ad8fc2918c543e487db2e8bbc88
- ci: will be not support go < 1.17 https://github.com/gookit/color/commit/b564cab770bd2ef1d157991c27efbb99ae91f435
- {type}:chore: replace all interface{} type to any https://github.com/gookit/color/commit/c0a8b527cfb346f037b5edbb2176310924d3d6d2
Commits
9027b9d
:sparkles: feat: Color add new method: IsBg(), IsFg(), IsOption() for check c...fe2b251
:sparkles: feat: RGBColor add new method: ToFg(), ToBg() for quick convert74bb513
:bug: fix: fix convert basic color to rgb color fail7da3fe3
build(deps): bump golang.org/x/sys from 0.9.0 to 0.10.0 (#64)0354c4a
build(deps): bump github.com/stretchr/testify from 1.8.2 to 1.8.4 (#62)dd23b12
build(deps): bump golang.org/x/sys from 0.8.0 to 0.9.0 (#63)264b64f
build(deps): bump golang.org/x/sys from 0.7.0 to 0.8.0 (#60)13c3e97
build(deps): bump golang.org/x/sys from 0.6.0 to 0.7.0 (#59)a43d137
build(deps): bump github.com/stretchr/testify from 1.8.0 to 1.8.2 (#57)- Description%20has%20been%20truncated%0A" rel="nofollow" target="_blank" >