Skip to content

Commit b162dcb

Browse files
committedApr 12, 2024·
chore: bumped version
1 parent 56777e1 commit b162dcb

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.0-rc.15 (2024-04-12)
2+
3+
This was a version bump only, there were no code changes.
4+
15
## 1.0.0-rc.14 (2024-04-10)
26

37
This was a version bump only, there were no code changes.

‎libs/bootstrap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ng-supabase/bootstrap",
3-
"version": "1.0.0-rc.14",
3+
"version": "1.0.0-rc.15",
44
"author": "Rusty Green <me@rusty.green>",
55
"contributors": [
66
"Rusty Green <me@rusty.green>"

‎libs/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ng-supabase/core",
3-
"version": "1.0.0-rc.14",
3+
"version": "1.0.0-rc.15",
44
"author": "Rusty Green <me@rusty.green>",
55
"contributors": [
66
"Rusty Green <me@rusty.green>"

‎libs/core/src/lib/supabase.service.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ export class SupabaseService {
4545
private readonly log: LogService,
4646
private readonly config: SupabaseConfig
4747
) {
48-
this.user.subscribe((user: User | null) => this.setUserInformation(user));
48+
this.user.subscribe((user: User | null) =>
49+
this.refreshUserDisplayInfo(user)
50+
);
4951

5052
this.clientReady = firstValueFrom(
5153
this.initialized.pipe(
@@ -66,7 +68,7 @@ export class SupabaseService {
6668
);
6769
}
6870

69-
private async setUserInformation(user: User | null): Promise<void> {
71+
async refreshUserDisplayInfo(user: User | null): Promise<void> {
7072
const profileTable = this.config.profile.table;
7173
let displayName = '';
7274

‎libs/material/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ng-supabase/material",
3-
"version": "1.0.0-rc.14",
3+
"version": "1.0.0-rc.15",
44
"author": "Rusty Green <me@rusty.green>",
55
"contributors": [
66
"Rusty Green <me@rusty.green>"

‎libs/primeng/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ng-supabase/primeng",
3-
"version": "1.0.0-rc.14",
3+
"version": "1.0.0-rc.15",
44
"author": "Rusty Green <me@rusty.green>",
55
"contributors": [
66
"Rusty Green <me@rusty.green>"

0 commit comments

Comments
 (0)
Please sign in to comment.