File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
55and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ ## [ v2.8.0] - 2025-12-04
8+ ### Changed
9+ - Update danger kotlin to 1.3.4
10+ - Update kotlin compiler for danger kotlin to 2.2.21
11+ - Update danger js to 12.3.4
12+
13+ ### Removed
14+ - Remove env variable previously added for Dependency-Check plugin
15+
716## [ v2.7.0] - 2025-07-08
817### Changed
918- Update node to 23.5.0
Original file line number Diff line number Diff line change @@ -79,16 +79,16 @@ RUN apt-get update && apt-get install -y \
7979 make
8080
8181# install danger-js which is needed for danger-kotlin to work
82- RUN npm install -g danger@11 .3.1
82+ RUN npm install -g danger@12 .3.4
8383
8484# install kotlin compiler
85- RUN curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v2.0 .21/kotlin-compiler-2.0 .21.zip && \
85+ RUN curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v2.2 .21/kotlin-compiler-2.2 .21.zip && \
8686 unzip -d /usr/local/ kotlin-compiler.zip && \
8787 rm -rf kotlin-compiler.zip
8888
8989# install danger-kotlin
9090RUN git clone https://github.com/danger/kotlin.git _danger-kotlin && \
91- cd _danger-kotlin && git checkout 1.3.1 && \
91+ cd _danger-kotlin && git checkout 1.3.4 && \
9292 make install && \
9393 cd .. && \
9494 rm -rf _danger-kotlin
@@ -116,13 +116,6 @@ RUN flutter config --no-analytics \
116116 && flutter doctor \
117117 && flutter update-packages
118118
119- # Dependency-Check Gradle plugin
120- #
121- # We use this Gradle plugin https://github.com/jeremylong/DependencyCheck for checking vulnerabilities in our dependencies, but it relies
122- # on env variable to determine encoding for dependency parsing, so we need to set this variable to make the task work as discussed and described more
123- # here https://github.com/jeremylong/DependencyCheck/issues/1742
124- ENV LC_ALL C.UTF-8
125-
126119# git LFS support
127120RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash \
128121 && apt-get install -y git-lfs \
You can’t perform that action at this time.
0 commit comments