From 682cdaaf760fefc7c5370ab3e241c20a2ae4de53 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 30 Jul 2026 22:38:24 +0300 Subject: [PATCH 1/2] bump: oasdiff v1.27.0 --- breaking/Dockerfile | 2 +- changelog/Dockerfile | 2 +- diff/Dockerfile | 2 +- pr-comment/Dockerfile | 2 +- validate/Dockerfile | 2 +- verify/Dockerfile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/breaking/Dockerfile b/breaking/Dockerfile index f2e0395..36217f0 100644 --- a/breaking/Dockerfile +++ b/breaking/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/changelog/Dockerfile b/changelog/Dockerfile index f2e0395..36217f0 100644 --- a/changelog/Dockerfile +++ b/changelog/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/diff/Dockerfile b/diff/Dockerfile index c6cd01d..5513cfa 100644 --- a/diff/Dockerfile +++ b/diff/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/pr-comment/Dockerfile b/pr-comment/Dockerfile index f2e0395..36217f0 100644 --- a/pr-comment/Dockerfile +++ b/pr-comment/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh diff --git a/validate/Dockerfile b/validate/Dockerfile index c6cd01d..5513cfa 100644 --- a/validate/Dockerfile +++ b/validate/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/verify/Dockerfile b/verify/Dockerfile index f2e0395..36217f0 100644 --- a/verify/Dockerfile +++ b/verify/Dockerfile @@ -1,4 +1,4 @@ -FROM tufin/oasdiff:v1.26.1 +FROM tufin/oasdiff:v1.27.0 RUN apk add --no-cache curl jq ENV PLATFORM github-action COPY entrypoint.sh /entrypoint.sh From 44cd3eda9134e2c18545de388211d18da3bcaf99 Mon Sep 17 00:00:00 2001 From: Reuven Harrison Date: Thu, 30 Jul 2026 22:43:09 +0300 Subject: [PATCH 2/2] test: account for the versioning-policy finding in the changelog fixture oasdiff v1.27.0 reports a breaking change released without a major version bump. The test specs (openapi-test1 1.0.0 -> openapi-test3 1.0.1) carry breaking changes under a patch bump, so the changelog gains one info finding. Co-Authored-By: Claude Fable 5 --- .github/workflows/test-changelog.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-changelog.yaml b/.github/workflows/test-changelog.yaml index e5ef6f6..abb9235 100644 --- a/.github/workflows/test-changelog.yaml +++ b/.github/workflows/test-changelog.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest name: Test generation of changelog env: - OASDIFF_ACTION_TEST_EXPECTED_OUTPUT: "21 changes: 2 error, 4 warning, 15 info" + OASDIFF_ACTION_TEST_EXPECTED_OUTPUT: "22 changes: 2 error, 4 warning, 16 info" steps: - name: checkout uses: actions/checkout@v7 @@ -84,7 +84,7 @@ jobs: revision: https://raw.githubusercontent.com/oasdiff/oasdiff/main/data/openapi-test3.yaml - name: Assert level filter from .oasdiff.yaml suppressed warning/info findings run: | - # Without the YAML, the same specs produce "21 changes: 2 error, 4 warning, 15 info". + # Without the YAML, the same specs produce "22 changes: 2 error, 4 warning, 16 info". # With level: ERR in YAML, only the 2 errors should remain. output=$(echo "${{ steps.test_yaml_level.outputs.changelog }}" | head -n 1) if [[ "$output" != "2 changes: 2 error, 0 warning, 0 info" ]]; then