Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into detect-project-flag-mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolin-ninja authored Dec 16, 2021
2 parents 75cfa5f + 2f209de commit d5fa740
Show file tree
Hide file tree
Showing 245 changed files with 18,734 additions and 11,173 deletions.
3 changes: 3 additions & 0 deletions .changelog/2681.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: upgraded icons to flight icons library
```
3 changes: 3 additions & 0 deletions .changelog/2793.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:feature
ui: Added timeline component to artifact details pages
```
4 changes: 4 additions & 0 deletions .changelog/2795.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```release-note:improvement
cli: Report where each operation runs (locally vs remotely)
```

3 changes: 3 additions & 0 deletions .changelog/2797.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
cli: Add new `workspace create` command
```
4 changes: 4 additions & 0 deletions .changelog/2799.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```release-note:improvement
cli: Warn if about to perform a remote operation with a dirty local git state
```

6 changes: 3 additions & 3 deletions .circleci/config.yml

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

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.3 (December 10, 2021)

SECURITY UPDATE:
* Update Go build version to 1.16.12 per [Go security release](https://groups.google.com/g/golang-announce/c/hcmEScgc00k?pli=1)

## 0.6.2 (November 4, 2021)

FEATURES:
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# builder builds the Waypoint binaries
#--------------------------------------------------------------------

FROM docker.mirror.hashicorp.services/golang:1.16.5-alpine3.13 AS builder
FROM docker.mirror.hashicorp.services/golang:1.17.5-alpine3.15 AS builder

RUN apk add --no-cache git gcc libc-dev make

Expand All @@ -15,7 +15,7 @@ COPY go.mod /tmp/wp-prime
WORKDIR /tmp/wp-prime

RUN go mod download
RUN go get github.com/kevinburke/go-bindata/...
RUN go install github.com/kevinburke/go-bindata/go-bindata

COPY . /tmp/wp-src
WORKDIR /tmp/wp-src
Expand Down Expand Up @@ -53,7 +53,7 @@ ENTRYPOINT ["/kaniko/waypoint"]
# final image
#--------------------------------------------------------------------

FROM docker.mirror.hashicorp.services/alpine:3.13.5
FROM docker.mirror.hashicorp.services/alpine:3.15.0

# git is for gitrefpretty() and other calls for Waypoint
RUN apk add --no-cache git
Expand Down
4 changes: 3 additions & 1 deletion builtin/aws/lambda/platform_logs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import (
"regexp"
"strings"

"github.com/pkg/errors"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatchlogs"
"github.com/hashicorp/go-hclog"
Expand Down Expand Up @@ -48,7 +50,7 @@ func (p *Platform) Logs(
})

if err != nil {
return err
return errors.Wrapf(err, "failed to describe log stream for group %q in region %q", group, p.config.Region)
}

if len(streams.LogStreams) == 0 {
Expand Down
3 changes: 2 additions & 1 deletion builtin/vault/freeport/ephemeral_fallback.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//+build !linux
//go:build !linux
// +build !linux

package freeport

Expand Down
3 changes: 2 additions & 1 deletion builtin/vault/freeport/ephemeral_linux.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//+build linux
//go:build linux
// +build linux

package freeport

Expand Down
3 changes: 2 additions & 1 deletion builtin/vault/freeport/ephemeral_linux_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//+build linux
//go:build linux
// +build linux

package freeport

Expand Down
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "HashiCorp Waypoint project";

inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs = { self, nixpkgs, flake-utils }:
Expand Down
Loading

0 comments on commit d5fa740

Please sign in to comment.