From 23909e9cd1450a68086b50b65589f3f7f0179d6f Mon Sep 17 00:00:00 2001 From: Seungwoo321 Date: Fri, 20 Jun 2025 08:41:46 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20=EB=B2=A0=ED=83=80=20=EB=B2=84?= =?UTF-8?q?=EC=A0=84=20=EC=A0=9C=EA=B1=B0=20=EC=8B=9C=20=EC=A4=91=EB=B3=B5?= =?UTF-8?q?=EB=90=9C=20=EB=B2=A0=ED=83=80=20suffix=20=EB=AA=A8=EB=91=90=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0=ED=95=98=EB=8F=84=EB=A1=9D=20=EA=B0=9C?= =?UTF-8?q?=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - sed 정규식을 's/-beta.*$//'로 수정하여 첫 번째 -beta부터 끝까지 모두 제거 - plotly-renderer의 4중 베타 버전 문제 해결 --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64423d7..2dd36de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,7 +107,8 @@ jobs: cd "$pkg" PKG_VERSION=$(node -p "require('./package.json').version") if [[ $PKG_VERSION == *"-beta"* ]]; then - PKG_BASE=$(echo $PKG_VERSION | sed 's/-beta.*//') + # Remove all beta suffixes (handle multiple -beta occurrences) + PKG_BASE=$(echo $PKG_VERSION | sed 's/-beta.*$//') npm version $PKG_BASE --no-git-tag-version fi cd - From 726ccb78b8b6a63c04d5e6983005d120070b17fc Mon Sep 17 00:00:00 2001 From: Seungwoo321 Date: Fri, 20 Jun 2025 08:42:48 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=20plotly-renderer=20changeset=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/fix-plotly-beta-version.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/fix-plotly-beta-version.md diff --git a/.changeset/fix-plotly-beta-version.md b/.changeset/fix-plotly-beta-version.md new file mode 100644 index 0000000..ffb3301 --- /dev/null +++ b/.changeset/fix-plotly-beta-version.md @@ -0,0 +1,5 @@ +--- +"@vue-pivottable/plotly-renderer": patch +--- + +fix: 중복된 베타 버전 정리 \ No newline at end of file