Skip to content

Commit

Permalink
Bump the other group across 1 directory with 13 updates (#152)
Browse files Browse the repository at this point in the history
---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bryce Lampe <[email protected]>
  • Loading branch information
dependabot[bot] and blampe authored Jul 12, 2024
1 parent 7805747 commit 724836b
Show file tree
Hide file tree
Showing 10 changed files with 271 additions and 523 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

### Changed

- Upgraded buildkit from 0.13.0 to 0.14.1.
- Upgraded buildx from 0.13.1. to 0.15.1.
- Upgraded docker from 26.0.0-rc1 to 27.0.1.
- Upgraded buildkit from 0.13.0 to 0.15.0.
- Upgraded buildx from 0.13.1. to 0.16.0.
- Upgraded docker from 26.0.0-rc1 to 27.0.3.
- Fixed an issue where warnings were not displayed correctly.

## 0.0.3 (2024-05-31)
Expand Down
4 changes: 2 additions & 2 deletions docs/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import (

func main() {
if len(os.Args) < 3 {
fmt.Fprintf(os.Stdout, "Usage: %s <yaml source dir path> <markdown destination path>\n", os.Args[0])
_, _ = fmt.Fprintf(os.Stdout, "Usage: %s <yaml source dir path> <markdown destination path>\n", os.Args[0])
os.Exit(1)
}
yamlPath := os.Args[1]
Expand Down Expand Up @@ -204,7 +204,7 @@ func processYaml(path, mdDir string) error {
break
}
}
fmt.Fprintf(os.Stdout, "Writing %s\n", filepath.Join(mdDir, md))
_, _ = fmt.Fprintf(os.Stdout, "Writing %s\n", filepath.Join(mdDir, md))
f, err := os.OpenFile(filepath.Clean(filepath.Join(mdDir, md)), os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0o600)
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion examples/nodejs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func tmpEcr(t *testing.T) (ECR, bool) {
}

svc := ecr.New(sess)
name := strings.ToLower(t.Name())
name := strings.ToLower(t.Name()) + fmt.Sprint(rand.Intn(1000))

// Always attempt to delete pre-existing repos, in case our cleanup didn't
// run.
Expand Down
137 changes: 72 additions & 65 deletions go.mod

Large diffs are not rendered by default.

574 changes: 156 additions & 418 deletions go.sum

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions provider/internal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,10 @@ func (c *cli) Build(
_ = printer.Wait()
for _, w := range printer.Warnings() {
b := &bytes.Buffer{}
fmt.Fprint(b, fmt.Sprint(w.Short))
_, _ = b.Write(w.Short)
for _, d := range w.Detail {
fmt.Fprintf(b, "\n%s", d)
_ = b.WriteByte('\n')
_, _ = b.Write(d)
}
provider.GetLogger(ctx).Warning(b.String())
}
Expand Down
2 changes: 1 addition & 1 deletion provider/internal/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ func TestValidateImageArgs(t *testing.T) {

_, err := args.validate(false)
assert.ErrorContains(t, err, "invalid value badexport")
assert.ErrorContains(t, err, "platform specifier component must match")
assert.ErrorContains(t, err, "OSAndVersion specifier component must matc")
assert.ErrorContains(t, err, "badcachefrom")
assert.ErrorContains(t, err, "badcacheto")
assert.ErrorContains(t, err, "invalid reference format")
Expand Down
8 changes: 5 additions & 3 deletions provider/internal/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,11 @@ func TestSchema(t *testing.T) {

type annotator struct{}

func (annotator) Describe(_ any, _ string) {}
func (annotator) SetDefault(_, _ any, _ ...string) {}
func (annotator) SetToken(_, _ string) {}
func (annotator) Describe(_ any, _ string) {}
func (annotator) SetDefault(_, _ any, _ ...string) {}
func (annotator) SetToken(_, _ string) {}
func (annotator) AddAlias(_, _ string) {}
func (annotator) SetResourceDeprecationMessage(_ string) {}

func newServer(client Client) integration.Server {
p := NewBuildxProvider()
Expand Down
18 changes: 9 additions & 9 deletions sdk/go/dockerbuild/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions sdk/go/dockerbuild/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 724836b

Please sign in to comment.