8000 Release updates 20210211 by thijslemmens · Pull Request #37 · xenit-eu/docker-postgres · GitHub
[go: up one dir, main page]

Skip to content

Release updates 20210211 #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: CI

on:
push:
pull_request:
schedule:
- cron: '5 5 * * 1'

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Test with Gradle
run: ./gradlew check -i
- name: Publish docker images
if: github.ref == 'refs/heads/release'
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: ./gradlew pushDockerImage -i
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
# Xenit PostgreSQL docker image changelog

## 2021-03

* [2021-03-04] [#36](https://github.com/xenit-eu/docker-postgres/issues/36) Update [WAL-G to v0.2.19](https://github.com/wal-g/wal-g/releases/tag/v0.2.19)
* [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/)

## 2020-11

* [2020-11-14] [PR #32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
* [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)
* [2020-11-14] [#32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
* [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)

## 2020-09

* [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)
* [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)

## 2020-07

* [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)
* [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)

## 2020-03

* [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)
* [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)



Expand Down
32 changes: 16 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
plugins {
id "eu.xenit.docker" version "5.1.0" apply false // Have a look at the releases to find the latest one
id "eu.xenit.docker" version "5.2.0" apply false // Have a look at the releases to find the latest one
}

project(':9.5') {
project.ext {
baseImage = 'postgres:9.5.24'
tags = ['9.5', '9.5.24']
baseImage = 'postgres:9.5.25'
tags = ['9.5', '9.5.25']
}
}

project(':9.6') {
project.ext {
baseImage = 'postgres:9.6.20'
tags = ['9', '9.6', '9.6.20']
baseImage = 'postgres:9.6.21'
tags = ['9', '9.6', '9.6.21']
}
}

project(':10') {
project.ext {
baseImage = 'postgres:10.15'
tags = ['10', '10.15']
baseImage = 'postgres:10.16'
tags = ['10', '10.16']
}
}

project(':11') {
project.ext {
baseImage = 'postgres:11.10'
tags = ['11', '11.10']
baseImage = 'postgres:11.11'
tags = ['11', '11.11']
}
}

project(':12') {
project.ext {
baseImage = 'postgres:12.5'
tags = ['12', '12.5']
baseImage = 'postgres:12.6'
tags = ['12', '12.6']
}
}

project(':13') {
project.ext {
baseImage = 'postgres:13.1'
tags = ['13', '13.1', 'latest']
baseImage = 'postgres:13.2'
tags = ['13', '13.2', 'latest']
}
}

Expand All @@ -50,7 +50,7 @@ subprojects {

project.ext {
pgVersion = project.projectDir.name
walgVersion = 'v0.2.15'
walgVersion = 'v0.2.19'
}

apply plugin: 'eu.xenit.docker'
Expand All @@ -62,8 +62,8 @@ subprojects {
}

dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.13.1'
testImplementation group: 'org.postgresql', name: 'postgresql', version: '42.2.18'
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation group: 'org.postgresql', name: 'postgresql', version: '42.2.19'
}

sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
0