Skip to content

Commit 004263f

Browse files
committedApr 12, 2024·
chore: bumped version
1 parent b162dcb commit 004263f

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.0-rc.16 (2024-04-12)
2+
3+
This was a version bump only, there were no code changes.
4+
15
## 1.0.0-rc.15 (2024-04-12)
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.15",
3+
"version": "1.0.0-rc.16",
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.15",
3+
"version": "1.0.0-rc.16",
44
"author": "Rusty Green <me@rusty.green>",
55
"contributors": [
66
"Rusty Green <me@rusty.green>"

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

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

5250
this.clientReady = firstValueFrom(
5351
this.initialized.pipe(
@@ -68,7 +66,11 @@ export class SupabaseService {
6866
);
6967
}
7068

71-
async refreshUserDisplayInfo(user: User | null): Promise<void> {
69+
refreshUserDisplayInfo(): Promise<void> {
70+
return this.setUserInformation(this.user.value);
71+
}
72+
73+
private async setUserInformation(user: User | null): Promise<void> {
7274
const profileTable = this.config.profile.table;
7375
let displayName = '';
7476

‎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.15",
3+
"version": "1.0.0-rc.16",
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.15",
3+
"version": "1.0.0-rc.16",
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.