File tree Expand file tree Collapse file tree 3 files changed +25
-4
lines changed
Expand file tree Collapse file tree 3 files changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,26 @@ Changes by Version
22==================
33Release Notes.
44
5+ 0.9.0
6+ ------------------
7+
8+ ### Features
9+
10+ - Add the sub-command ` dependency instance ` to query instance relationships (#117 )
11+
12+ ### Bug Fixes
13+
14+ - fix: ` multiple-linear ` command's ` labels ` type can be string type (#122 )
15+ - Add missing ` dest-service-id ` ` dest-service-name ` to ` metrics linear ` command (#121 )
16+ - Fix the wrong name when getting ` destInstance ` flag (#118 )
17+
18+ ### Chores
19+
20+ - Upgrade Go version to 1.16 (#120 )
21+ - Migrate tests to infra-e2e, overhaul the flags names (#119 )
22+ - Publish Docker snapshot images to ghcr (#116 )
23+ - Remove dist directory when build release source tar (#115 )
24+
5250.8.0
626------------------
727
Original file line number Diff line number Diff line change 1313# See the License for the specific language governing permissions and
1414# limitations under the License.
1515
16- ARG VERSION
17-
1816FROM golang:1.16 AS builder
1917
18+ ARG VERSION
19+
20+ ENV VERSION=$VERSION
2021ENV CGO_ENABLED=0
2122ENV GO111MODULE=on
2223
@@ -28,7 +29,7 @@ RUN go mod download
2829
2930COPY . .
3031
31- RUN make linux && mv bin/swctl-*-linux-amd64 /swctl
32+ RUN make install DESTDIR=/
3233
3334FROM alpine
3435
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ check-codegen:
137137 fi
138138
139139.PHONY : docker
140- docker :
140+ docker : clean
141141 docker build --build-arg VERSION=$(VERSION ) . -t $(HUB ) /$(APP_NAME ) :$(VERSION )
142142
143143.PHONY : docker.push
You can’t perform that action at this time.
0 commit comments