diff --git a/.pylintrc b/.pylintrc index 6342559..559803a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -10,6 +10,7 @@ disable= missing-function-docstring, missing-module-docstring, no-else-continue, + possibly-used-before-assignment, protected-access, redefined-outer-name, too-many-branches, diff --git a/CHANGELOG.md b/CHANGELOG.md index 77264f8..579f163 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), [markdownlint](https://dlaa.me/markdownlint/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.7] - 2024-05-22 + +### Changed in 1.1.7 + +- In `Dockerfile`, updated FROM instruction to `debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d` +- In `requirements.txt`, updated: + - boto3==1.34.110 + - confluent_kafka==2.4.0 + ## [1.1.6] - 2023-09-30 ### Changed in 1.1.6 diff --git a/Dockerfile b/Dockerfile index 47b4421..49ed3c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -ARG BASE_IMAGE=debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df352d2b537cb96 +ARG BASE_IMAGE=debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d FROM ${BASE_IMAGE} -ENV REFRESHED_AT=2024-03-18 +ENV REFRESHED_AT=2024-05-22 LABEL Name="senzing/stream-logger" \ - Maintainer="support@senzing.com" \ - Version="1.1.6" + Maintainer="support@senzing.com" \ + Version="1.1.7" HEALTHCHECK CMD ["/app/healthcheck.sh"] @@ -16,18 +16,18 @@ USER root # Install packages via apt. RUN apt update \ - && apt -y install \ - python3-dev \ - python3-pip \ - librdkafka-dev \ - && rm -rf /var/lib/apt/lists/* + && apt -y install \ + python3-dev \ + python3-pip \ + librdkafka-dev \ + && rm -rf /var/lib/apt/lists/* # Install packages via PIP. COPY requirements.txt . RUN pip3 install --upgrade pip \ - && pip3 install -r requirements.txt \ - && rm /requirements.txt + && pip3 install -r requirements.txt \ + && rm /requirements.txt # Copy files from repository.