Skip to content

Commit 36c90b2

Browse files
kernelsamdocktermj
andauthored
github-util: Update FROM version (#902)
* #1 Update version * Add possibly-used-before-assignment * prepare for versioned release --------- Co-authored-by: Michael Dockter <michael@dockter.com>
1 parent 260ed58 commit 36c90b2

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ disable=
1212
missing-function-docstring,
1313
missing-module-docstring,
1414
no-self-use,
15+
possibly-used-before-assignment,
1516
protected-access,
1617
redefined-outer-name,
1718
too-few-public-methods,

CHANGELOG.md

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

1111
-
1212

13+
## [2.2.12] - 2024-05-22
14+
15+
### Changed in 2.2.12
16+
17+
- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-runtime:3.10.1`
18+
- In `requirements.txt`, updated:
19+
- azure-servicebus==7.12.2
20+
- boto3==1.34.110
21+
- confluent-kafka==2.4.0
22+
- orjson==3.10.3
23+
1324
## [2.2.11] - 2024-03-18
1425

1526
### Changed in 2.2.11

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.9.0
1+
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.10.1
22

33
# -----------------------------------------------------------------------------
44
# Stage: builder
55
# -----------------------------------------------------------------------------
66

77
FROM ${BASE_IMAGE} AS builder
88

9-
ENV REFRESHED_AT=2024-03-18
9+
ENV REFRESHED_AT=2024-05-22
1010

1111
# Run as "root" for system installation.
1212

@@ -51,11 +51,11 @@ RUN curl -X GET \
5151

5252
FROM ${BASE_IMAGE} AS runner
5353

54-
ENV REFRESHED_AT=2024-03-18
54+
ENV REFRESHED_AT=2024-05-22
5555

5656
LABEL Name="senzing/stream-loader" \
5757
Maintainer="support@senzing.com" \
58-
Version="2.2.11"
58+
Version="2.2.12"
5959

6060
# Define health check.
6161

0 commit comments

Comments
 (0)