Skip to content

Commit ead182a

Browse files
chore(deps): bump github.com/charmbracelet/bubbletea from 1.2.0 to 1.2.1 (scaleway#4269)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rémy Léone <[email protected]>
1 parent a4aa08e commit ead182a

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.golangci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ linters:
7979
- depguard # Go linter that checks if package imports are in a list of acceptable packages [fast: true, auto-fix: false]
8080
- dupl # Tool for code clone detection [fast: true, auto-fix: false]
8181
- errorlint # errorlint is a linter for that can be used to find code that will cause problems with the error wrapping scheme introduced in Go 1.13. [fast: false, auto-fix: false]
82-
- execinquery # execinquery is a linter about query string checker in Query function which reads your Go src files and warning it finds [fast: false, auto-fix: false]
8382
- exhaustive # check exhaustiveness of enum switch statements [fast: false, auto-fix: false]
8483
- forcetypeassert # finds forced type assertions [fast: true, auto-fix: false]
8584
- funlen # Tool for detection of long functions [fast: true, auto-fix: false]
@@ -89,7 +88,6 @@ linters:
8988
- godot # Check if comments end in a period [fast: true, auto-fix: true]
9089
- godox # Tool for detection of FIXME, TODO and other comment keywords [fast: true, auto-fix: false]
9190
- err113 # Golang linter to check the errors handling expressions [fast: false, auto-fix: false]
92-
- gomnd # An analyzer to detect magic numbers. [fast: true, auto-fix: false]
9391
- lll # Reports long lines [fast: true, auto-fix: false]
9492
- maintidx # maintidx measures the maintainability index of each function. [fast: true, auto-fix: false]
9593
- nestif # Reports deeply nested if statements [fast: true, auto-fix: false]

core/result_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ func TestResult(t *testing.T) {
2222
assert.Equal(t, "", humanOutput)
2323
jsonOutput, err := result.MarshalJSON()
2424
require.NoError(t, err)
25-
assert.Equal(t, []byte("{}"), jsonOutput)
25+
assert.JSONEq(t, "{}", string(jsonOutput))
2626
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/aws/aws-sdk-go-v2/service/s3 v1.66.3
1111
github.com/buildpacks/pack v0.34.2
1212
github.com/c-bata/go-prompt v0.2.6
13-
github.com/charmbracelet/bubbletea v1.2.0
13+
github.com/charmbracelet/bubbletea v1.2.1
1414
github.com/chzyer/readline v1.5.1
1515
github.com/containerd/console v1.0.4
1616
github.com/dnaeon/go-vcr v1.2.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyY
130130
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
131131
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=
132132
github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
133-
github.com/charmbracelet/bubbletea v1.2.0 h1:WYHclJaFDOz4dPxiGx7owwb8P4000lYPcuXPIALS5Z8=
134-
github.com/charmbracelet/bubbletea v1.2.0/go.mod h1:viLoDL7hG4njLJSKU2gw7kB3LSEmWsrM80rO1dBJWBI=
133+
github.com/charmbracelet/bubbletea v1.2.1 h1:J041h57zculJKEKf/O2pS4edXGIz+V0YvojvfGXePIk=
134+
github.com/charmbracelet/bubbletea v1.2.1/go.mod h1:viLoDL7hG4njLJSKU2gw7kB3LSEmWsrM80rO1dBJWBI=
135135
github.com/charmbracelet/lipgloss v1.0.0 h1:O7VkGDvqEdGi93X+DeqsQ7PKHDgtQfF8j8/O2qFMQNg=
136136
github.com/charmbracelet/lipgloss v1.0.0/go.mod h1:U5fy9Z+C38obMs+T+tJqst9VGzlOYGj4ri9reL3qUlo=
137137
github.com/charmbracelet/x/ansi v0.4.5 h1:LqK4vwBNaXw2AyGIICa5/29Sbdq58GbGdFngSexTdRM=

0 commit comments

Comments
 (0)