From dc29a0f9f3b406ec157649e8b7ecad0e43c439f8 Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 13:17:33 +0200 Subject: [PATCH 01/12] chore(release): set version to 0.0.0 Set the package version to 0.0.0 in package.json and package-lock.json, and record the change in the CHANGELOG Unreleased section. Signed-off-by: Ivan Alvarez Sabin --- CHANGELOG.md | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b09c8..04c2915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,3 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. + +### Changed + +- Set the package version to `0.0.0`. diff --git a/package-lock.json b/package-lock.json index b845141..cff4401 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index c5d3c7c..4d2abdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From a160253bf3dc01425a7714894def8967aed1a738 Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin <71872287+ivanasabi@users.noreply.github.com> Date: Mon, 20 Jul 2026 13:22:23 +0200 Subject: [PATCH 02/12] chore: Update CHANGELOG.md --- CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04c2915..7dc9185 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,11 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Added +### Changed - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. - -### Changed - - Set the package version to `0.0.0`. From 07c36b5b689e31110459b174f824e58b1aaf54ec Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin <71872287+ivanasabi@users.noreply.github.com> Date: Mon, 20 Jul 2026 13:22:54 +0200 Subject: [PATCH 03/12] chore: Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dc9185..ac5aa05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,4 +17,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. -- Set the package version to `0.0.0`. From 5a04f05932f209ab0ba6fe27226bffd3a68daef2 Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:07:10 +0200 Subject: [PATCH 04/12] ci: use GitHub App token for release git ops and harden registry check Add GPG-signed release commits/tags via a GitHub App token, and verify active package versions in the npm registry (not just HTTP 200). --- ...-npm_node-publish-release-and-snapshot.yml | 81 +++++++++++++++++-- 1 file changed, 74 insertions(+), 7 deletions(-) diff --git a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml index 0806821..879e9b5 100644 --- a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml +++ b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml @@ -198,7 +198,23 @@ jobs: fi case "$HTTP_STATUS" in 200) - echo "HAS_NEW_PACKAGE=false" >> "$GITHUB_ENV" + PARSE_STATUS=0 + node -e "try { const d=JSON.parse(require('fs').readFileSync(process.argv[1],'utf8')); process.exit(Object.keys(d.versions||{}).length > 0 ? 0 : 1); } catch(e) { console.error('JSON parse error:', e.message); process.exit(2); }" "$RESPONSE_FILE" || PARSE_STATUS=$? + case "$PARSE_STATUS" in + 0) + echo "✓ $PKG_NAME exists in registry with active versions" + echo "HAS_NEW_PACKAGE=false" >> "$GITHUB_ENV" + ;; + 1) + echo "::warning::$PKG_NAME has no active versions (unpublished); NPM_TOKEN will be required" + echo "HAS_NEW_PACKAGE=true" >> "$GITHUB_ENV" + ;; + *) + echo "::error::Failed to verify $PKG_NAME — npm registry returned invalid JSON (HTTP 200)" + rm -f "$RESPONSE_FILE" + exit 1 + ;; + esac ;; 404) echo "::warning::$PKG_NAME is not present in the npm registry; NPM_TOKEN will be required" @@ -316,12 +332,18 @@ jobs: BASELINE_BRANCH=${{ github.event.inputs.BASELINE || github.ref }} echo "BASELINE_BRANCH=${BASELINE_BRANCH#refs/heads/}" >> "$GITHUB_ENV" + - uses: actions/create-github-app-token@v3 + id: app-token + with: + client-id: ${{ vars.APP_CLIENT_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: Checkout merge commit uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 with: ref: ${{ env.BASELINE_BRANCH }} fetch-depth: 0 - persist-credentials: true + persist-credentials: false - name: Validate NPM project run: | @@ -396,6 +418,36 @@ jobs: if: contains(env.RELEASE_LABELS, 'release-type/major') run: echo "RELEASE_VERSION=major" >> "$GITHUB_ENV" + - name: Prepare committer information + env: + GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} + GPG_PRIVATE_KEY: ${{ secrets.CI_GPG_SECRET_KEY }} + GPG_PASSPHRASE: ${{ secrets.CI_GPG_SECRET_KEY_PASSWORD }} + run: | + git config --global credential.helper store + cat <> ~/.git-credentials + https://ci-user:$GITHUB_TOKEN@github.com + EOT + + # GPG: non-interactive signing setup + mkdir -p ~/.gnupg && chmod 700 ~/.gnupg + printf 'allow-loopback-pinentry\nallow-preset-passphrase\n' > ~/.gnupg/gpg-agent.conf + printf 'use-agent\npinentry-mode loopback\n' > ~/.gnupg/gpg.conf + gpgconf --kill gpg-agent || true + echo "$GPG_PRIVATE_KEY" | gpg --batch --import + KEY_DATA=$(gpg --list-secret-keys --with-colons) + echo "$KEY_DATA" | awk -F: '/^grp:/ {print $10}' | while read -r GRIP; do + /usr/lib/gnupg/gpg-preset-passphrase --preset "$GRIP" <<< "$GPG_PASSPHRASE" + done + + # Git: identity and signing + FPR=$(echo "$KEY_DATA" | awk -F: '/^fpr:/ {print $10; exit}') + git config user.name "srvcosoitxtech" + git config user.email "oso@inditex.com" + git config user.signingkey "$FPR" + git config commit.gpgsign true + git config tag.gpgsign true + - name: NPM / Install dependencies run: npm ci @@ -461,7 +513,23 @@ jobs: fi case "$HTTP_STATUS" in 200) - echo "HAS_NEW_PACKAGE=false" >> "$GITHUB_ENV" + PARSE_STATUS=0 + node -e "try { const d=JSON.parse(require('fs').readFileSync(process.argv[1],'utf8')); process.exit(Object.keys(d.versions||{}).length > 0 ? 0 : 1); } catch(e) { console.error('JSON parse error:', e.message); process.exit(2); }" "$RESPONSE_FILE" || PARSE_STATUS=$? + case "$PARSE_STATUS" in + 0) + echo "✓ $PKG_NAME exists in registry with active versions" + echo "HAS_NEW_PACKAGE=false" >> "$GITHUB_ENV" + ;; + 1) + echo "::warning::$PKG_NAME has no active versions (unpublished); NPM_TOKEN will be required" + echo "HAS_NEW_PACKAGE=true" >> "$GITHUB_ENV" + ;; + *) + echo "::error::Failed to verify $PKG_NAME — npm registry returned invalid JSON (HTTP 200)" + rm -f "$RESPONSE_FILE" + exit 1 + ;; + esac ;; 404) echo "::warning::$PKG_NAME is not present in the npm registry; NPM_TOKEN will be required" @@ -480,13 +548,12 @@ jobs: - name: Commit release metadata env: + GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} RELEASE_VERSION: ${{ steps.update-changelog.outputs.version }} run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add CHANGELOG.md package.json package-lock.json - git commit -m "chore(release): ${RELEASE_VERSION}" || echo "No release metadata changes to commit" - git tag "${RELEASE_VERSION}" + git commit -S -m "chore(release): ${RELEASE_VERSION}" || echo "No release metadata changes to commit" + git tag -s "${RELEASE_VERSION}" -m "Release ${RELEASE_VERSION}" git push origin "HEAD:${BASELINE_BRANCH}" --follow-tags - name: NPM / Publish Release (OIDC + provenance) From 83d08d0a07c8a86f93a4c3207e6a9839f1ca3d2c Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:10:50 +0200 Subject: [PATCH 05/12] chore(release): bump version to 0.0.1 Signed-off-by: Ivan Alvarez Sabin --- CHANGELOG.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5aa05..c1b09c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Changed +### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. diff --git a/package-lock.json b/package-lock.json index cff4401..f33b424 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.0.1", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index 4d2abdd..ba0a515 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.0.1", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From 8fa02592b4ba0cd26b1ccd665d377f6402430350 Mon Sep 17 00:00:00 2001 From: srvcosoitxtech Date: Mon, 20 Jul 2026 12:14:19 +0000 Subject: [PATCH 06/12] chore(release): 0.1.0 --- CHANGELOG.md | 6 ++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b09c8..e330608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2026-07-20 + ### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. + +[Unreleased]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/compare/0.1.0...HEAD + +[0.1.0]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/releases/tag/0.1.0 diff --git a/package-lock.json b/package-lock.json index f33b424..b845141 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index ba0a515..c5d3c7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From 91f47bac40c093441aa19f1025c750444a502e44 Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:23:08 +0200 Subject: [PATCH 07/12] ci: format generated CHANGELOG so prepublishOnly passes keep-a-changelog-action emits a blank line between link references that prettier --check (run by prepublishOnly) rejects, breaking release publish. Signed-off-by: Ivan Alvarez Sabin --- .../workflows/code-npm_node-publish-release-and-snapshot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml index 879e9b5..643bfa8 100644 --- a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml +++ b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml @@ -473,6 +473,9 @@ jobs: keep-unreleased-section: true tag-prefix: "" + - name: Format generated CHANGELOG.md + run: npx --yes prettier --write CHANGELOG.md + - name: NPM / Prepare release env: RELEASE_VERSION: ${{ steps.update-changelog.outputs.version }} From 562afe1e33d068e2e2c5324d36a0c1b565a9ff4b Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:24:49 +0200 Subject: [PATCH 08/12] chore: reset version to 0.0.0 and revert premature 0.1.0 changelog A failed release run pushed a 0.1.0 bump and marked the initial entries as released. Revert to 0.0.0 and move them back under Unreleased so the release can be retried cleanly. Signed-off-by: Ivan Alvarez Sabin --- CHANGELOG.md | 6 ------ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e330608..c1b09c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,13 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.0] - 2026-07-20 - ### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. - -[Unreleased]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/compare/0.1.0...HEAD - -[0.1.0]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/releases/tag/0.1.0 diff --git a/package-lock.json b/package-lock.json index b845141..cff4401 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index c5d3c7c..4d2abdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.0", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From 2f42abe8ec51225aa72ac5df49778ca832f54571 Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:26:17 +0200 Subject: [PATCH 09/12] ci: use repo-pinned prettier to format generated CHANGELOG Drop npx --yes so the local prettier (installed by npm ci) is used, matching the version that prepublishOnly's prettier --check runs. Signed-off-by: Ivan Alvarez Sabin --- .../workflows/code-npm_node-publish-release-and-snapshot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml index 643bfa8..8e159db 100644 --- a/.github/workflows/code-npm_node-publish-release-and-snapshot.yml +++ b/.github/workflows/code-npm_node-publish-release-and-snapshot.yml @@ -474,7 +474,7 @@ jobs: tag-prefix: "" - name: Format generated CHANGELOG.md - run: npx --yes prettier --write CHANGELOG.md + run: npx prettier --write CHANGELOG.md - name: NPM / Prepare release env: From 2c6784cafd79220b320db8c2b60a1194bc11f78b Mon Sep 17 00:00:00 2001 From: srvcosoitxtech Date: Mon, 20 Jul 2026 12:28:03 +0000 Subject: [PATCH 10/12] chore(release): 0.1.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b09c8..3e2e25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2026-07-20 + ### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. + +[Unreleased]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/compare/0.1.0...HEAD +[0.1.0]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/releases/tag/0.1.0 diff --git a/package-lock.json b/package-lock.json index cff4401..b845141 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.1.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index 4d2abdd..c5d3c7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.0", + "version": "0.1.0", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From b7fc1e06c893faae103a1a19583ff1c67f832eff Mon Sep 17 00:00:00 2001 From: Ivan Alvarez Sabin Date: Mon, 20 Jul 2026 14:55:18 +0200 Subject: [PATCH 11/12] chore: set version to 0.0.1 and reset changelog to unreleased Revert the premature 0.1.0 release bump: set version to 0.0.1 and move the initial entries back under Unreleased (no version section or release links) so the next release can be cut cleanly. Signed-off-by: Ivan Alvarez Sabin --- CHANGELOG.md | 5 ----- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2e25f..c1b09c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.0] - 2026-07-20 - ### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. - -[Unreleased]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/compare/0.1.0...HEAD -[0.1.0]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/releases/tag/0.1.0 diff --git a/package-lock.json b/package-lock.json index b845141..f33b424 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.1", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index c5d3c7c..ba0a515 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.1.0", + "version": "0.0.1", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger", From 1e950bc24c9127e21dd568ae1c24e15cfd36570c Mon Sep 17 00:00:00 2001 From: srvcosoitxtech Date: Mon, 20 Jul 2026 12:59:46 +0000 Subject: [PATCH 12/12] chore(release): 0.1.0 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1b09c8..3e2e25f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.0] - 2026-07-20 + ### Added - Initial OSS repository shell. - Original code, including the diff highlighting plugin, and the example React application. + +[Unreleased]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/compare/0.1.0...HEAD +[0.1.0]: https://github.com/InditexTech/swagger-ui-plugin-diff-highlight/releases/tag/0.1.0 diff --git a/package-lock.json b/package-lock.json index f33b424..b845141 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^9.39.4", diff --git a/package.json b/package.json index ba0a515..c5d3c7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@inditextech/swagger-ui-plugin-diff-highlight", - "version": "0.0.1", + "version": "0.1.0", "description": "Highlight API changes (added/updated/deleted) inline in swagger-ui-react via a custom diff-highlighting plugin.", "keywords": [ "swagger",