Skip to content

Commit

Permalink
Prepare for release of v0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
headcr4sh committed Sep 30, 2020
1 parent 8a587c7 commit 141b8e3
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
2 changes: 2 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## Contributors

* Chien Jon Soon <[email protected]>
* Febin Rejoe <[email protected]>
* Fernando Torres <[email protected]>
* Greg Carter <[email protected]>
Expand All @@ -15,6 +16,7 @@
* Ming Xu <[email protected]>
* Nabil Abdelwahd <[email protected]>
* Pontus Arfwedson <[email protected]>
* Pruthvidhar Rao Nadunooru <[email protected]>
* Rekha Mittal <[email protected]>
* Rune Engseth <[email protected]>
* Samed Ozdemir <[email protected]>
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.13.0] - 2020-09-30

Thanks to [Chien Jon Soon](https://github.com/sooncj) and [Pruthvidhar Rao Nadunooru](https://github.com/pnedunuri) for their contributions to this release!

### Added

- Globbing syntax support (`shopt -s globstar`) has been added. ([#60](https://github.com/cathive/concourse-sonarqube-resource/issues/60))

### Fixed

- `sonar.branch.name` should now work correctly when performing pull-request analysis

### Updated

- Base docker image has been updaed to openjdk:11.0.8-slim.
- The bundled Sonar Scanner CLI has been updated to v4.4.0.2170.
- The bundled TypeScript version has been updated to v[3.9.7](https://github.com/microsoft/TypeScript/releases/tag/v3.9.7).

## [0.12.0] - 2020-06-12

Thanks to "[noelcat](https://github.com/noelcatt)" for the pull request to add support
Expand Down
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# ======================
ARG MAVEN_VERSION="3.6.3"
ARG MAVEN_SHA512_CHECKSUM="1c095ed556eda06c6d82fdf52200bc4f3437a1bab42387e801d6f4c56e833fb82b16e8bf0aab95c9708de7bfb55ec27f653a7cf0f491acebc541af234eded94d"
ARG SONAR_SCANNER_CLI_VERSION="4.3.0.2102"
ARG SONAR_SCANNER_CLI_SHA512_CHECKSUM="b24f15d2425560084928ec5fb18253b67b3c640c341766f036510332337d5e4d90f747b0ac2c0fc71064f4bea39064235094825be62bcdf8ab230a596f9212ae"
ARG SONAR_SCANNER_CLI_VERSION="4.4.0.2170"
ARG SONAR_SCANNER_CLI_SHA512_CHECKSUM="08107612f77eba584dcad6d939d092b3934e382f32075c26687ab013402e2634cf4b6e3b3635d842e2a9120c9612d39051ca8c62b09303f47aa6ea21f6251bb5"
ARG SONAR_SCANNER_MAVEN_PLUGIN_VERSION="3.7.0.1746"

# =================================================
Expand Down Expand Up @@ -33,11 +33,11 @@ RUN rm -f "/tmp/apache-maven-${MAVEN_VERSION}-bin.zip"
# ===========
# Final image
# ===========
FROM openjdk:11.0.7-slim
FROM openjdk:11.0.8-slim
RUN apt-get -y update \
&& apt-get -y install bash curl gawk git jq nodejs npm

ARG TYPESCRIPT_VERSION="3.9.5"
ARG TYPESCRIPT_VERSION="3.9.7"
RUN npm install -g typescript@${TYPESCRIPT_VERSION}

RUN ln -sf "${JAVA_HOME}/bin/java" "/usr/local/bin/java" \
Expand Down Expand Up @@ -68,12 +68,12 @@ ENV NODE_PATH="/usr/local/lib/node_modules"
ENV PATH="/usr/local/bin:/usr/bin:/bin"

LABEL maintainer="Benjamin P. Jung <[email protected]>" \
version="0.12.0" \
version="0.13.0" \
maven.version="{MAVEN_VERSION}" \
sonar-scanner.cli.version="${SONAR_SCANNER_CLI_VERSION}" \
sonar-scanner.maven-plugin.version="${SONAR_SCANNER_MAVEN_PLUGIN_VERSION}" \
typescript.version=${TYPESCRIPT_VERSION} \
org.concourse-ci.target-version="6.3.0" \
org.concourse-ci.target-version="6.5.1" \
org.concourse-ci.resource-id="sonarqube" \
org.concourse-ci.resource-name="SonarQube Static Code Analysis" \
org.concourse-ci.resource-homepage="https://github.com/cathive/concourse-sonarqube-resource"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sonar.organization = cathive
sonar.projectKey = concourse-sonarqube-resource
sonar.projectName = Concourse CI SonarQube Resource
sonar.projectDescription = A resource for Concourse CI that performs SonarQube analyses and reports the state of a project`s quality goals.
sonar.projectVersion = 0.12.0
sonar.projectVersion = 0.13.0
sonar.links.homepage = https://github.com/cathive/concourse-sonarqube-resource
sonar.links.issue = https://github.com/cathive/concourse-sonarqube-resource/issues
sonar.links.ci = https://ci.cathive.com/
Expand Down

0 comments on commit 141b8e3

Please sign in to comment.