Skip to content

Commit b2d1ab4

Browse files
authored
release 3.17.3 (#1370)
1 parent 7a85726 commit b2d1ab4

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.github/workflows/package-publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,26 @@ jobs:
6868
echo "SKIP_REST=true" >> $GITHUB_ENV
6969
fi
7070
cd -
71+
- name: Verify npm package publication
72+
run: |
73+
cd ./dist
74+
# Get package name and version from package.json
75+
PACKAGE_NAME=$(node -p "require('./package.json').name")
76+
PACKAGE_VERSION=$(node -p "require('./package.json').version")
77+
78+
echo "Verifying package publication: $PACKAGE_NAME@$PACKAGE_VERSION"
79+
80+
# Wait a moment for npm registry to update
81+
sleep 10
82+
83+
# Check if package exists and get version info
84+
if npm view $PACKAGE_NAME@$PACKAGE_VERSION version > /dev/null 2>&1; then
85+
echo "✅ Package $PACKAGE_NAME@$PACKAGE_VERSION successfully published to npm"
86+
else
87+
echo "❌ Package $PACKAGE_NAME@$PACKAGE_VERSION not found on npm registry"
88+
exit 1
89+
fi
90+
cd -
7191
- name: Tag new target and push to origin
7292
if: env.SKIP_REST != 'true'
7393
run: |

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog - v3
22

3+
## [v3.17.3] (OCT 2 2025)
4+
### Fixes
5+
- Fixed a bug where failed message can't be resend
6+
- Fixed a bug where Reaction is not updated in Thread
7+
- Fixed RTL syntax
8+
39
## [v3.17.2] (Aug 13 2025)
410
### Fixes
511
- Fixed a bug that did not display `the read/delivered` status icon in the `publicGroupChannel`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react",
3-
"version": "3.17.2",
3+
"version": "3.17.3",
44
"description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
55
"keywords": [
66
"sendbird",

0 commit comments

Comments
 (0)