Skip to content

Commit 4dff6b1

Browse files
author
Michael Bryson
authored
US516003: Update to postgresql 14 (#6)
1 parent b0b56d3 commit 4dff6b1

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
---
44

5-
A Docker container with PostgreSQL 11 and the Java 11 runtime environment installed.
5+
A Docker container with PostgreSQL 14 and the Java 11 runtime environment installed.
66

7-
The image is built from the postgres docker image postgres:11-alpine in the official Docker repository [here](https://hub.docker.com/_/postgres/). The configuration and run instructions for the base image are also applicable to this image. OpenJDK JRE 11 is installed as part of the container build.
7+
The image is built from the postgres docker image postgres:14-alpine in the official Docker repository [here](https://hub.docker.com/_/postgres/). The configuration and run instructions for the base image are also applicable to this image. OpenJDK JRE 11 is installed as part of the container build.

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2017-2020 Micro Focus or one of its affiliates.
4+
Copyright 2017-2022 Micro Focus or one of its affiliates.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -35,7 +35,7 @@
3535

3636
<groupId>com.github.cafapi</groupId>
3737
<artifactId>java-postgres-container</artifactId>
38-
<version>2.2.0-SNAPSHOT</version>
38+
<version>3.0.0-SNAPSHOT</version>
3939
<packaging>pom</packaging>
4040

4141
<licenses>
@@ -69,7 +69,7 @@
6969
</developers>
7070

7171
<properties>
72-
<copyrightYear>2020</copyrightYear>
72+
<copyrightYear>2022</copyrightYear>
7373
<dockerHubOrganization>cafapi</dockerHubOrganization>
7474
<dockerCafApiOrg>${dockerImagePrefix}${dockerHubOrganization}${dockerOrgSeperator}</dockerCafApiOrg>
7575
<dockerProjectVersion>${dockerVersionSeperator}${project.version}</dockerProjectVersion>
@@ -127,7 +127,7 @@
127127
<alias>java-postgres</alias>
128128
<name>${dockerCafApiOrg}java-postgres${dockerProjectVersion}</name>
129129
<build>
130-
<from>${dockerHubPublic}/library/postgres:11-alpine</from>
130+
<from>${dockerHubPublic}/library/postgres:14-alpine</from>
131131
<optimise>false</optimise>
132132
<runCmds>
133133
<runCmd>${withWebProxy} apk --update add openjdk11-jre</runCmd>

release-notes-2.2.0.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

release-notes-3.0.0.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
!not-ready-for-release!
2+
3+
#### Version Number
4+
${version-number}
5+
6+
#### New Features
7+
- US516003: Updated the container to PostgreSQL 14
8+
9+
#### Known Issues
10+
- None
11+
12+
#### Breaking Changes
13+
- US516003: Updated the container to PostgreSQL 14
14+
Version 14 of PostgreSQL contains a number of changes that may affect compatibility with previous releases. See details of these in the release notes [here](https://www.postgresql.org/docs/14/release-14.html).

0 commit comments

Comments
 (0)