8000 Merge pull request #35 from xenit-eu/update20210211 · xenit-eu/docker-postgres@f200bf1 · GitHub
[go: up one dir, main page]

Skip to content

Commit f200bf1

Browse files
authored
Merge pull request #35 from xenit-eu/update20210211
fixes #34 update to 20210211 release
2 parents 0673b91 + 9822ab8 commit f200bf1

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
# Xenit PostgreSQL docker image changelog
22

3+
## 2021-03
4+
5+
* [2021-03-04] [#34](https://github.com/xenit-eu/docker-postgres/issues/34) Update to [PostgreSQL 2021-02-11 release](https://www.postgresql.org/about/news/postgresql-132-126-1111-1016-9621-and-9525-released-2165/)
6+
37
## 2020-11
48

5-
* [2020-11-14] [PR #32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
6-
* [2020-11-14] [PR #31](https://github.com/xenit-eu/docker-postgres/issues/31) Update to [PostgreSQL 2020-11-12 release](https://www.postgresql.org/about/news/2111)
9+
* [2020-11-14] [#32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
10+
* [2020-11-14] [#31](https://github.com/xenit-eu/docker-postgres/issues/31) Update to [PostgreSQL 2020-11-12 release](https://www.postgresql.org/about/news/2111)
711

812
## 2020-09
913

10-
* [2020-09-22] [PR #29](https://github.com/xenit-eu/docker-postgres/issues/29) Update to [PostgreSQL 2020-08-13 release](https://www.postgresql.org/about/news/2060)
14+
* [2020-09-22] [#29](https://github.com/xenit-eu/docker-postgres/issues/29) Update to [PostgreSQL 2020-08-13 release](https://www.postgresql.org/about/news/2060)
1115

1216
## 2020-07
1317

14-
* [2020-07-01] [PR #26](https://github.com/xenit-eu/docker-postgres/issues/26) Update to [PostgreSQL 2020-05-14 release](https://www.postgresql.org/about/news/2038)
18+
* [2020-07-01] [#26](https://github.com/xenit-eu/docker-postgres/issues/26) Update to [PostgreSQL 2020-05-14 release](https://www.postgresql.org/about/news/2038)
1519

1620
## 2020-03
1721

18-
* [2020-03-05] [PR #24](https://github.com/xenit-eu/docker-postgres/issues/24) Update to [PostgreSQL 2020-02-13 release](https://www.postgresql.org/about/news/2011)
22+
* [2020-03-05] [#24](https://github.com/xenit-eu/docker-postgres/issues/24) Update to [PostgreSQL 2020-02-13 release](https://www.postgresql.org/about/news/2011)
1923

2024

2125

build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
plugins {
2-
id "eu.xenit.docker" version "5.1.0" apply false // Have a look at the releases to find the latest one
2+
id "eu.xenit.docker" version "5.2.0" apply false // Have a look at the releases to find the latest one
33
}
44

55
project(':9.5') {
66
project.ext {
7-
baseImage = 'postgres:9.5.24'
8-
tags = ['9.5', '9.5.24']
7+
baseImage = 'postgres:9.5.25'
8+
tags = ['9.5', '9.5.25']
99
}
1010
}
1111

1212
project(':9.6') {
1313
project.ext {
14-
baseImage = 'postgres:9.6.20'
15-
tags = ['9', '9.6', '9.6.20']
14+
baseImage = 'postgres:9.6.21'
15+
tags = ['9', '9.6', '9.6.21']
1616
}
1717
}
1818

1919
project(':10') {
2020
project.ext {
21-
baseImage = 'postgres:10.15'
22-
tags = ['10', '10.15']
21+
baseImage = 'postgres:10.16'
22+
tags = ['10', '10.16']
2323
}
2424
}
2525

2626
project(':11') {
2727
project.ext {
28-
baseImage = 'postgres:11.10'
29-
tags = ['11', '11.10']
28+
baseImage = 'postgres:11.11'
29+
tags = ['11', '11.11']
3030
}
3131
}
3232

3333
project(':12') {
3434
project.ext {
35-
baseImage = 'postgres:12.5'
36-
tags = ['12', '12.5']
35+
baseImage = 'postgres:12.6'
36+
tags = ['12', '12.6']
3737
}
3838
}
3939

4040
project(':13') {
4141
project.ext {
42-
baseImage = 'postgres:13.1'
43-
tags = ['13', '13.1', 'latest']
42+
baseImage = 'postgres:13.2'
43+
tags = ['13', '13.2', 'latest']
4444
}
4545
}
4646

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)
0