Skip to content

Commit

Permalink
Prepare for release of v0.12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
headcr4sh committed Jun 12, 2020
1 parent 17defab commit 0a209a4
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 8 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ 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.12.0] - 2020-06-12

Thanks to "[noelcat](https://github.com/noelcatt)" for the pull request to add support
for BitBucket pull request decorators.

### Added

- Support for BitBucket pull request decorations has been added.

### Updated

- Base docker image has been updaed to openjdk:11.0.7-slim.
- The bundled Sonar Scanner CLI has been updated to v4.3.0.2102.
- The bundled TypeScript version has been updated to v3.9.5.

## [0.11.4] - 2020-05-18

### Fixed
Expand Down
14 changes: 7 additions & 7 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.2.0.1873"
ARG SONAR_SCANNER_CLI_SHA512_CHECKSUM="c70e8b4b5fed0708cff1f671dbaaefeff3d6feb07b8cb3d926286d5bb1285a295d79ef3075c3202ac29c6e2b4dad198dbb7558f7e4301ee26115866202e304fe"
ARG SONAR_SCANNER_CLI_VERSION="4.3.0.2102"
ARG SONAR_SCANNER_CLI_SHA512_CHECKSUM="b24f15d2425560084928ec5fb18253b67b3c640c341766f036510332337d5e4d90f747b0ac2c0fc71064f4bea39064235094825be62bcdf8ab230a596f9212ae"
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.6-slim
FROM openjdk:11.0.7-slim
RUN apt-get -y update \
&& apt-get -y install bash curl gawk git jq nodejs npm

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

RUN ln -sf "${JAVA_HOME}/bin/java" "/usr/local/bin/java" \
Expand All @@ -60,20 +60,20 @@ RUN ln -sf "/opt/apache-maven/bin/mvn" "/usr/local/bin/mvn" \
ENV M2_HOME="/opt/apache-maven"

ARG SONAR_SCANNER_MAVEN_PLUGIN_VERSION
RUN mvn -q org.apache.maven.plugins:maven-dependency-plugin:3.1.1:get \
RUN mvn -q org.apache.maven.plugins:maven-dependency-plugin:3.1.2:get \
-DrepoUrl="https://repo.maven.apache.org/maven2/" \
-Dartifact="org.sonarsource.scanner.maven:sonar-maven-plugin:${SONAR_SCANNER_MAVEN_PLUGIN_VERSION}:jar"

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.11.4" \
version="0.12.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.1.0" \
org.concourse-ci.target-version="6.3.0" \
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.11.4
sonar.projectVersion = 0.12.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 0a209a4

Please sign in to comment.