Skip to content

Commit

Permalink
github-util: Update FROM version (#591)
Browse files Browse the repository at this point in the history
* #1 Update version

* Prepare for versioned release
  • Loading branch information
docktermj authored May 9, 2023
1 parent d9f8eae commit d1f0a12
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

-
## [2.2.6] - 2023-05-09

### Changed in 2.2.6

- In `Dockerfile`, updated FROM instruction to `senzing/senzingapi-runtime:3.5.2`
- In `requirements.txt`, updated:
- azure-servicebus==7.9.0
- boto3==1.26.130
- confluent-kafka==2.1.1
- orjson==3.8.12
- pika==1.3.2
- psutil==5.9.5
- psycopg2-binary==2.9.6

## [2.2.5] - 2023-04-03

Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.5.0
ARG BASE_IMAGE=senzing/senzingapi-runtime:3.5.2

# -----------------------------------------------------------------------------
# Stage: builder
# -----------------------------------------------------------------------------

FROM ${BASE_IMAGE} AS builder

ENV REFRESHED_AT=2023-04-03
ENV REFRESHED_AT=2023-05-09

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="2.2.5"
Version="2.2.6"

# Run as "root" for system installation.

Expand Down Expand Up @@ -55,11 +55,11 @@ RUN curl -X GET \

FROM ${BASE_IMAGE} AS runner

ENV REFRESHED_AT=2023-04-03
ENV REFRESHED_AT=2023-05-09

LABEL Name="senzing/stream-loader" \
Maintainer="support@senzing.com" \
Version="2.2.5"
Version="2.2.6"

# Define health check.

Expand Down
4 changes: 2 additions & 2 deletions stream-loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
# Metadata

__all__ = []
__version__ = "2.2.5" # See https://www.python.org/dev/peps/pep-0396/
__version__ = "2.2.6" # See https://www.python.org/dev/peps/pep-0396/
__date__ = '2018-10-29'
__updated__ = '2023-04-03'
__updated__ = '2023-05-09'

SENZING_PRODUCT_ID = "5001" # See https://github.com/Senzing/knowledge-base/blob/main/lists/senzing-product-ids.md
log_format = '%(asctime)s %(message)s'
Expand Down

0 comments on commit d1f0a12

Please sign in to comment.