diff --git a/.pylintrc b/.pylintrc index ea545b3..86e588a 100644 --- a/.pylintrc +++ b/.pylintrc @@ -8,6 +8,7 @@ disable= line-too-long, missing-function-docstring, missing-module-docstring, + possibly-used-before-assignment, redefined-outer-name, too-many-branches, too-many-locals, diff --git a/CHANGELOG.md b/CHANGELOG.md index e7089fe..6224cee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,11 @@ 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.0.5] - 2023-04-03 +## [1.0.5] - 2024-05-22 ### Changed in 1.0.5 -- In `Dockerfile`, updated FROM instruction to `debian:11.6-slim@sha256:7acda01e55b086181a6fa596941503648e423091ca563258e2c1657d140355b1` +- In `Dockerfile`, updated FROM instruction to `debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d` ## [1.0.4] - 2022-09-29 diff --git a/Dockerfile b/Dockerfile index f944922..b306726 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df352d2b537cb96 +ARG BASE_IMAGE=debian:11.9-slim@sha256:0e75382930ceb533e2f438071307708e79dc86d9b8e433cc6dd1a96872f2651d # ----------------------------------------------------------------------------- # Stage: db2_builder @@ -6,7 +6,7 @@ ARG BASE_IMAGE=debian:11.9-slim@sha256:a165446a88794db4fec31e35e9441433f9552ae04 FROM ${BASE_IMAGE} as db2_builder -ENV REFRESHED_AT=2024-03-18 +ENV REFRESHED_AT=2024-05-22 LABEL Name="senzing/senzing-db2-builder" \ Version="1.0.5" @@ -31,10 +31,10 @@ RUN unzip -d /tmp/extracted-jdbc /tmp/db2-jdbc-sqlj/jdbc_sqlj/db2_db2driver_for_ # Final stage # ----------------------------------------------------------------------------- -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/db2-driver-installer" \ Maintainer="support@senzing.com" \