Skip to content

Commit

Permalink
Merge pull request #4714 from coralproject/develop
Browse files Browse the repository at this point in the history
v9.6.1
  • Loading branch information
tessalt authored Dec 13, 2024
2 parents 17cc296 + 5e84459 commit d399c8e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coralproject/talk",
"version": "9.6.0",
"version": "9.6.1",
"author": "The Coral Project",
"homepage": "https://coralproject.net/",
"sideEffects": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const AllCommentsTabContainer: FunctionComponent<Props> = ({
if (visible && isNotFirstLoad && live) {
setShowCommentRefreshButton(true);
}
}, [visible, setShowCommentRefreshButton, live, isNotFirstLoad]);
}, [visible, setShowCommentRefreshButton, live]);

useEffect(() => {
if (!topOfCommentsInView && allCommentsInView) {
Expand Down
2 changes: 1 addition & 1 deletion common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "common",
"version": "9.6.0",
"version": "9.6.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "common",
"version": "9.6.0",
"version": "9.6.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coralproject/talk",
"version": "9.6.0",
"version": "9.6.1",
"author": "The Coral Project",
"homepage": "https://coralproject.net/",
"sideEffects": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ export async function findOrCreateSSOUser(
// not affected by this update feature.
role: role || user.role,
avatar,
ssoURL: url,
},
lastIssuedAt
);
Expand Down
1 change: 1 addition & 0 deletions server/src/core/server/models/user/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1317,6 +1317,7 @@ export interface UpdateUserInput {
badges?: string[];
role?: GQLUSER_ROLE;
avatar?: string;
ssoURL?: string;
}

export async function updateUserFromSSO(
Expand Down

0 comments on commit d399c8e

Please sign in to comment.