diff --git a/.github/workflows/package-publish.yml b/.github/workflows/package-publish.yml index 9d1339c5c..096aae4b4 100644 --- a/.github/workflows/package-publish.yml +++ b/.github/workflows/package-publish.yml @@ -68,6 +68,26 @@ jobs: echo "SKIP_REST=true" >> $GITHUB_ENV fi cd - + - name: Verify npm package publication + run: | + cd ./dist + # Get package name and version from package.json + PACKAGE_NAME=$(node -p "require('./package.json').name") + PACKAGE_VERSION=$(node -p "require('./package.json').version") + + echo "Verifying package publication: $PACKAGE_NAME@$PACKAGE_VERSION" + + # Wait a moment for npm registry to update + sleep 10 + + # Check if package exists and get version info + if npm view $PACKAGE_NAME@$PACKAGE_VERSION version > /dev/null 2>&1; then + echo "✅ Package $PACKAGE_NAME@$PACKAGE_VERSION successfully published to npm" + else + echo "❌ Package $PACKAGE_NAME@$PACKAGE_VERSION not found on npm registry" + exit 1 + fi + cd - - name: Tag new target and push to origin if: env.SKIP_REST != 'true' run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index b8380abea..554ce11be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog - v3 +## [v3.17.3] (OCT 2 2025) +### Fixes +- Fixed a bug where failed message can't be resend +- Fixed a bug where Reaction is not updated in Thread +- Fixed RTL syntax + ## [v3.17.2] (Aug 13 2025) ### Fixes - Fixed a bug that did not display `the read/delivered` status icon in the `publicGroupChannel` diff --git a/package.json b/package.json index bc83d6853..415f1bc5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sendbird/uikit-react", - "version": "3.17.2", + "version": "3.17.3", "description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.", "keywords": [ "sendbird",