Skip to content

Commit 614cd76

Browse files
authored
302 dockter 3 (#309)
* #302 Update dependencies * #302 Update to senzing 4.0.0-24211
1 parent ada4cdb commit 614cd76

File tree

6 files changed

+29
-24
lines changed

6 files changed

+29
-24
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
-
1212

13+
## [0.7.7] - 2024-08-12
14+
15+
### Changed in 0.7.7
16+
17+
- Updated `senzing/senzingapi-runtime-staging` to 4.0.0.24211
1318

1419
## [0.7.6] - 2024-08-05
1520

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ FROM ${IMAGE_FINAL} AS senzingapi_runtime
1717

1818
FROM ${IMAGE_BUILDER} AS builder
1919
ENV REFRESHED_AT=2024-07-01
20-
LABEL Name="senzing/builder" \
20+
LABEL Name="senzing/go-builder" \
2121
Maintainer="[email protected]" \
2222
Version="0.1.0"
2323

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ coverage: coverage-osarch-specific
156156
check-coverage: export SENZING_LOG_LEVEL=TRACE
157157
check-coverage:
158158
@go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...
159-
@${GOBIN}/go-test-coverage --config=.github/coverage/.testcoverage.yaml
159+
@${GOBIN}/go-test-coverage --config=.github/coverage/testcoverage.yaml
160160

161161
# -----------------------------------------------------------------------------
162162
# Documentation

go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ require (
3333
github.com/senzing-garage/go-messaging v1.5.1 // indirect
3434
github.com/sourcegraph/conc v0.3.0 // indirect
3535
github.com/spf13/afero v1.11.0 // indirect
36-
github.com/spf13/cast v1.6.0 // indirect
36+
github.com/spf13/cast v1.7.0 // indirect
3737
github.com/spf13/pflag v1.0.5 // indirect
3838
github.com/subosito/gotenv v1.6.0 // indirect
3939
go.uber.org/multierr v1.11.0 // indirect
40-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
41-
golang.org/x/net v0.27.0 // indirect
42-
golang.org/x/sys v0.23.0 // indirect
43-
golang.org/x/text v0.16.0 // indirect
44-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240805194559-2c9e96a0b5d4 // indirect
40+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
41+
golang.org/x/net v0.28.0 // indirect
42+
golang.org/x/sys v0.24.0 // indirect
43+
golang.org/x/text v0.17.0 // indirect
44+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240812133136-8ffd90a71988 // indirect
4545
google.golang.org/protobuf v1.34.2 // indirect
4646
gopkg.in/ini.v1 v1.67.0 // indirect
4747
gopkg.in/yaml.v3 v3.0.1 // indirect

go.sum

+12-12
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9yS
5757
github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0=
5858
github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8=
5959
github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY=
60-
github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0=
61-
github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
60+
github.com/spf13/cast v1.7.0 h1:ntdiHjuueXFgm5nzDRdOS4yfT43P5Fnud6DH50rz/7w=
61+
github.com/spf13/cast v1.7.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
6262
github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM=
6363
github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y=
6464
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
@@ -78,16 +78,16 @@ github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8
7878
github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU=
7979
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
8080
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
81-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 h1:2dVuKD2vS7b0QIHQbpyTISPd0LeHDbnYEryqj5Q1ug8=
82-
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56/go.mod h1:M4RDyNAINzryxdtnbRXRL/OHtkFuWGRjvuhBJpk2IlY=
83-
golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys=
84-
golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE=
85-
golang.org/x/sys v0.23.0 h1:YfKFowiIMvtgl1UERQoTPPToxltDeZfbj4H7dVUCwmM=
86-
golang.org/x/sys v0.23.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
87-
golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4=
88-
golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI=
89-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240805194559-2c9e96a0b5d4 h1:OsSGQeIIsyOEOimVxLEIL4rwGcnrjOydQaiA2bOnZUM=
90-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240805194559-2c9e96a0b5d4/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
81+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa h1:ELnwvuAXPNtPk1TJRuGkI9fDTwym6AYBu0qzT8AcHdI=
82+
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ=
83+
golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE=
84+
golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg=
85+
golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
86+
golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
87+
golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc=
88+
golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY=
89+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240812133136-8ffd90a71988 h1:V71AcdLZr2p8dC9dbOIMCpqi4EmRl8wUwnJzXXLmbmc=
90+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240812133136-8ffd90a71988/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY=
9191
google.golang.org/grpc v1.65.0 h1:bs/cUb4lp1G5iImFFd3u5ixQzweKizoZJAwBNLR42lc=
9292
google.golang.org/grpc v1.65.0/go.mod h1:WgYC2ypjlB0EiQi6wdKixMqukr6lBc0Vo+oOgjrM5ZQ=
9393
google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg=

package.Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ ARG IMAGE_FINAL=alpine
1111
# Stage: senzingapi_runtime
1212
# -----------------------------------------------------------------------------
1313

14-
FROM ${IMAGE_SENZINGAPI_RUNTIME} as senzingapi_runtime
14+
FROM ${IMAGE_SENZINGAPI_RUNTIME} AS senzingapi_runtime
1515

1616
# -----------------------------------------------------------------------------
1717
# Stage: go_builder
1818
# -----------------------------------------------------------------------------
1919

20-
FROM ${IMAGE_GO_BUILDER} as go_builder
20+
FROM ${IMAGE_GO_BUILDER} AS go_builder
2121
ENV REFRESHED_AT=2024-07-01
2222
LABEL Name="senzing/go-builder" \
2323
Maintainer="[email protected]" \
@@ -56,7 +56,7 @@ RUN mkdir -p /output \
5656
# - FPM: https://fpm.readthedocs.io/en/latest/cli-reference.html
5757
# -----------------------------------------------------------------------------
5858

59-
FROM ${IMAGE_FPM_BUILDER} as fpm_builder
59+
FROM ${IMAGE_FPM_BUILDER} AS fpm_builder
6060
ENV REFRESHED_AT=2024-07-01
6161
LABEL Name="senzing/fpm-builder" \
6262
Maintainer="[email protected]" \
@@ -100,7 +100,7 @@ RUN fpm \
100100
# Stage: final
101101
# -----------------------------------------------------------------------------
102102

103-
FROM ${IMAGE_FINAL} as final
103+
FROM ${IMAGE_FINAL} AS final
104104
ENV REFRESHED_AT=2024-07-01
105105
LABEL Name="senzing/final-stage" \
106106
Maintainer="[email protected]" \

0 commit comments

Comments
 (0)