-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
495 additions
and
797 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | |
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
## [v5.18.2-1] - 2024-11-19 | ||
- Update cypress/included:13.15.2 | ||
- Update github.com/cloudogu/[email protected] | ||
- Update base image to version 3.20.3-3 | ||
- Update swagger-ui to 5.18.2 | ||
|
||
## [v5.17.14-1] - 2024-10-18 | ||
- dismiss special fork from swagger-ui (#31) | ||
|
@@ -60,4 +65,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |
|
||
## [v3.25.0-1] - 2020-04-08 | ||
### Added | ||
* add Swagger UI in version 3.25.0 | ||
* add Swagger UI in version 3.25.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
FROM registry.cloudogu.com/official/base:3.20.3-2 as swaggerui | ||
ENV SWAGGERUI_VERSION=5.17.14 \ | ||
SWAGGERUI_ZIP_SHA256="481244d0812097b11fbaeef79f71d942b171617f9c9f9514e63acbe13e71ccdc" | ||
FROM registry.cloudogu.com/official/base:3.20.3-3 as swaggerui | ||
ENV SWAGGERUI_VERSION=5.18.2 \ | ||
SWAGGERUI_ZIP_SHA256="33d0c4035a2ffb62bc5f381685d8f4606825e9e9ff0c23ddc19f44fd5af3d383" | ||
RUN apk update && apk add curl | ||
RUN curl -Lsk --fail --silent --location --retry 3 https://github.com/swagger-api/swagger-ui/archive/refs/tags/v${SWAGGERUI_VERSION}.zip -o /tmp/swagger-ui.zip | ||
RUN echo "${SWAGGERUI_ZIP_SHA256} */tmp/swagger-ui.zip" | sha256sum -c - | ||
RUN unzip /tmp/swagger-ui.zip -d /tmp && mv /tmp/swagger-ui-${SWAGGERUI_VERSION}/dist /tmp/dist | ||
|
||
FROM registry.cloudogu.com/official/base:3.20.3-2 | ||
FROM registry.cloudogu.com/official/base:3.20.3-3 | ||
LABEL NAME="official/swaggerui" \ | ||
VERSION="5.17.14-1" \ | ||
VERSION="5.18.2-1" \ | ||
maintainer="[email protected]" | ||
|
||
ENV SERVICE_TAGS=webapp \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!groovy | ||
@Library(['github.com/cloudogu/[email protected]', 'github.com/cloudogu/ces-build-lib@2.4.0']) _ | ||
@Library(['github.com/cloudogu/[email protected]', 'github.com/cloudogu/ces-build-lib@3.0.0']) _ | ||
import com.cloudogu.ces.dogubuildlib.* | ||
import com.cloudogu.ces.cesbuildlib.* | ||
|
||
|
@@ -57,6 +57,7 @@ node('vagrant') { | |
} | ||
|
||
stage('Trivy scan') { | ||
sh 'mkdir -p trivy/output' | ||
trivy.scanDogu("/dogu", TrivyScanFormat.HTML, params.TrivyScanLevels, params.TrivyStrategy) | ||
trivy.scanDogu("/dogu", TrivyScanFormat.JSON, params.TrivyScanLevels, params.TrivyStrategy) | ||
trivy.scanDogu("/dogu", TrivyScanFormat.PLAIN, params.TrivyScanLevels, params.TrivyStrategy) | ||
|
@@ -76,7 +77,7 @@ node('vagrant') { | |
stage('Integration Tests') { | ||
echo "run integration tests." | ||
ecoSystem.runCypressIntegrationTests([ | ||
cypressImage : "cypress/included:13.12.0", | ||
cypressImage : "cypress/included:13.15.2", | ||
enableVideo : params.EnableVideoRecording, | ||
enableScreenshots: params.EnableScreenshotRecording, | ||
]) | ||
|
@@ -195,7 +196,7 @@ node('vagrant') { | |
|
||
def runIntegrationTests(EcoSystem ecoSystem) { | ||
ecoSystem.runCypressIntegrationTests([ | ||
cypressImage : "cypress/included:8.3.0", | ||
cypressImage : "cypress/included:13.15.2", | ||
enableVideo : params.EnableVideoRecording, | ||
enableScreenshots : params.EnableScreenshotRecording | ||
]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.