From 7e454f7d36ecdb913da626784f92ab7506278706 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 19 Jul 2022 06:53:09 +0000 Subject: [PATCH 1/4] Update for next development version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index db5b82d..3e8b18d 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ de.skuzzle.ghpromexporter gh-prom-exporter - 0.0.11 + 0.0.12-SNAPSHOT gh-prom-exporter Export GitHub repository metrics in prometheus format From 634cb997b6fd54ab588710e6d456ff0a5ff75dd7 Mon Sep 17 00:00:00 2001 From: Simon Taddiken Date: Tue, 9 Aug 2022 14:10:27 +0200 Subject: [PATCH 2/4] Update to spring-boot 2.7.2 --- README.md | 6 +++--- RELEASE_NOTES.md | 7 ++----- pom.xml | 2 +- readme/RELEASE_NOTES.md | 5 +---- 4 files changed, 7 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 52285bb..9f8874a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Export your favorite GitHub repositories to Prometheus * Use it _as a service_: See https://gh.skuzzle.de for instructions -* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.11` +* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT` ## On-Premise deployment with docker This application can easily be run as a docker container in whatever environment you like: @@ -17,7 +17,7 @@ This application can easily be run as a docker container in whatever environment ``` docker run -p 8080:8080 \ -e WEB_ALLOWANONYMOUSSCRAPE=true \ - ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.11 + ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT ``` With _anonymous scraping_ allowed, you can now easily view the scrape results directly in the browser by navigating to @@ -38,7 +38,7 @@ scrape_configs: In case you want to enforce authenticated scrapes only, use this configuration instead: ``` docker run -p 8080:8080 \ - ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.11 + ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT ``` Scraping now requires a GitHub access token, otherwise the service will respond with 401/Unauthorized. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 96d5f1b..19282f6 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,11 +2,8 @@ [![Coverage Status](https://coveralls.io/repos/github/skuzzle/gh-prom-exporter/badge.svg?branch=master)](https://coveralls.io/github/skuzzle/gh-prom-exporter?branch=master) [![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/skuzzleOSS) -* Upgrade to Spring-Boot 2.7.1 (coming from 2.6.6) -* Upgrade to Spring-Cloud 2021.0.3 (coming from 2021.0.0-RC1) -* Fix typo in log message - +* Upgrade to Spring-Boot 2.7.2 (coming from 2.7.1) ``` -docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.11 +docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT ``` \ No newline at end of file diff --git a/pom.xml b/pom.xml index 3e8b18d..e4885b2 100644 --- a/pom.xml +++ b/pom.xml @@ -36,7 +36,7 @@ ghcr.io ${docker.registry.name}/${github.user}/${github.name}/${project.artifactId} - 2.7.1 + 2.7.2 2021.0.3 31.0.1-jre 1.135 diff --git a/readme/RELEASE_NOTES.md b/readme/RELEASE_NOTES.md index ec7713d..7391793 100644 --- a/readme/RELEASE_NOTES.md +++ b/readme/RELEASE_NOTES.md @@ -2,10 +2,7 @@ [![Coverage Status](https://coveralls.io/repos/github/${github.user}/${github.name}/badge.svg?branch=${github.main-branch})](https://coveralls.io/github/${github.user}/${github.name}?branch=${github.main-branch}) [![Twitter Follow](https://img.shields.io/twitter/follow/skuzzleOSS.svg?style=social)](https://twitter.com/skuzzleOSS) -* Upgrade to Spring-Boot 2.7.1 (coming from 2.6.6) -* Upgrade to Spring-Cloud 2021.0.3 (coming from 2021.0.0-RC1) -* Fix typo in log message - +* Upgrade to Spring-Boot 2.7.2 (coming from 2.7.1) ``` docker pull ${docker.image.name}:${project.version} From 484aeadba3edc9622aa40a09860666843df4a1f0 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 9 Aug 2022 12:15:55 +0000 Subject: [PATCH 3/4] Update versions for release --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e4885b2..9d2fa80 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ de.skuzzle.ghpromexporter gh-prom-exporter - 0.0.12-SNAPSHOT + 0.0.12 gh-prom-exporter Export GitHub repository metrics in prometheus format From e17fd597c7473c77553397f221dd2a601f170543 Mon Sep 17 00:00:00 2001 From: Jenkins Date: Tue, 9 Aug 2022 12:18:37 +0000 Subject: [PATCH 4/4] Update README and RELEASE_NOTES --- README.md | 6 +++--- RELEASE_NOTES.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9f8874a..6c88f2f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Export your favorite GitHub repositories to Prometheus * Use it _as a service_: See https://gh.skuzzle.de for instructions -* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT` +* Deploy it _on-premise_: `docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12` ## On-Premise deployment with docker This application can easily be run as a docker container in whatever environment you like: @@ -17,7 +17,7 @@ This application can easily be run as a docker container in whatever environment ``` docker run -p 8080:8080 \ -e WEB_ALLOWANONYMOUSSCRAPE=true \ - ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT + ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12 ``` With _anonymous scraping_ allowed, you can now easily view the scrape results directly in the browser by navigating to @@ -38,7 +38,7 @@ scrape_configs: In case you want to enforce authenticated scrapes only, use this configuration instead: ``` docker run -p 8080:8080 \ - ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT + ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12 ``` Scraping now requires a GitHub access token, otherwise the service will respond with 401/Unauthorized. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 19282f6..ca38a49 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -5,5 +5,5 @@ * Upgrade to Spring-Boot 2.7.2 (coming from 2.7.1) ``` -docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12-SNAPSHOT +docker pull ghcr.io/skuzzle/gh-prom-exporter/gh-prom-exporter:0.0.12 ``` \ No newline at end of file