From 7973bb7eaa23258f658f329214c162ee183ede63 Mon Sep 17 00:00:00 2001 From: mroxso <24775431+mroxso@users.noreply.github.com> Date: Mon, 5 Aug 2024 00:04:02 +0200 Subject: [PATCH 1/2] Create dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5990d9c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From f4c70179978e1df9a00cf385a2ea1d025e47f208 Mon Sep 17 00:00:00 2001 From: PascalR <24775431+mroxso@users.noreply.github.com> Date: Mon, 21 Oct 2024 11:29:33 +0200 Subject: [PATCH 2/2] change relay from relay.lumina.rocks to relay.nostr.band --- lumina/app/dashboard/[pubkey]/page.tsx | 2 +- lumina/app/feed/page.tsx | 2 +- lumina/app/global/page.tsx | 2 +- lumina/app/note/[id]/page.tsx | 2 +- lumina/app/notifications/page.tsx | 2 +- lumina/app/onboarding/createProfile/page.tsx | 2 +- lumina/app/onboarding/page.tsx | 2 +- lumina/app/page.tsx | 2 +- lumina/app/profile/[pubkey]/page.tsx | 2 +- lumina/app/profile/settings/page.tsx | 2 +- lumina/app/reel/page.tsx | 2 +- lumina/app/search/[searchTag]/page.tsx | 2 +- lumina/app/search/page.tsx | 2 +- lumina/app/tag/[tag]/page.tsx | 2 +- lumina/app/upload/page.tsx | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/lumina/app/dashboard/[pubkey]/page.tsx b/lumina/app/dashboard/[pubkey]/page.tsx index fdc92fb..8a8f76b 100644 --- a/lumina/app/dashboard/[pubkey]/page.tsx +++ b/lumina/app/dashboard/[pubkey]/page.tsx @@ -17,7 +17,7 @@ const DashboardPage: React.FC= ({ }) => { } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/feed/page.tsx b/lumina/app/feed/page.tsx index 9862352..26e6bde 100644 --- a/lumina/app/feed/page.tsx +++ b/lumina/app/feed/page.tsx @@ -28,7 +28,7 @@ export default function FeedPage() { // } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/global/page.tsx b/lumina/app/global/page.tsx index 597578b..d3550eb 100644 --- a/lumina/app/global/page.tsx +++ b/lumina/app/global/page.tsx @@ -6,7 +6,7 @@ import { NostrProvider } from "nostr-react"; export default function Home() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/note/[id]/page.tsx b/lumina/app/note/[id]/page.tsx index cbdc230..c4b67f2 100644 --- a/lumina/app/note/[id]/page.tsx +++ b/lumina/app/note/[id]/page.tsx @@ -16,7 +16,7 @@ export default function NotePage() { } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/notifications/page.tsx b/lumina/app/notifications/page.tsx index 05bd74a..f76c1a6 100644 --- a/lumina/app/notifications/page.tsx +++ b/lumina/app/notifications/page.tsx @@ -19,7 +19,7 @@ const NotificationsPage: React.FC= ({ }) => { } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/onboarding/createProfile/page.tsx b/lumina/app/onboarding/createProfile/page.tsx index 7bc560c..18155cf 100644 --- a/lumina/app/onboarding/createProfile/page.tsx +++ b/lumina/app/onboarding/createProfile/page.tsx @@ -7,7 +7,7 @@ import { NostrProvider } from "nostr-react"; export default function OnboardingCreateProfile() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/onboarding/page.tsx b/lumina/app/onboarding/page.tsx index 1c7e644..5c8dda6 100644 --- a/lumina/app/onboarding/page.tsx +++ b/lumina/app/onboarding/page.tsx @@ -8,7 +8,7 @@ import { NostrProvider } from "nostr-react"; export default function OnboardingHome() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/page.tsx b/lumina/app/page.tsx index e3587b4..ecd4050 100644 --- a/lumina/app/page.tsx +++ b/lumina/app/page.tsx @@ -9,7 +9,7 @@ import { NostrProvider } from "nostr-react"; export default function Home() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/profile/[pubkey]/page.tsx b/lumina/app/profile/[pubkey]/page.tsx index 195b9b9..49cf1d9 100644 --- a/lumina/app/profile/[pubkey]/page.tsx +++ b/lumina/app/profile/[pubkey]/page.tsx @@ -23,7 +23,7 @@ export default function ProfilePage() { } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/profile/settings/page.tsx b/lumina/app/profile/settings/page.tsx index 3fc67d0..3d09e97 100644 --- a/lumina/app/profile/settings/page.tsx +++ b/lumina/app/profile/settings/page.tsx @@ -19,7 +19,7 @@ export default function ProfileSettingsPage() { } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/reel/page.tsx b/lumina/app/reel/page.tsx index 313a8cd..5cd0556 100644 --- a/lumina/app/reel/page.tsx +++ b/lumina/app/reel/page.tsx @@ -5,7 +5,7 @@ import { NostrProvider } from "nostr-react"; export default function ReelPage() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/search/[searchTag]/page.tsx b/lumina/app/search/[searchTag]/page.tsx index 6d420b2..b6609bb 100644 --- a/lumina/app/search/[searchTag]/page.tsx +++ b/lumina/app/search/[searchTag]/page.tsx @@ -33,7 +33,7 @@ export default function SearchPage() { // } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/search/page.tsx b/lumina/app/search/page.tsx index aad638c..74d7ec9 100644 --- a/lumina/app/search/page.tsx +++ b/lumina/app/search/page.tsx @@ -9,7 +9,7 @@ import { NostrProvider } from "nostr-react"; export default function SearchMainPage() { const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/tag/[tag]/page.tsx b/lumina/app/tag/[tag]/page.tsx index c163188..a664e93 100644 --- a/lumina/app/tag/[tag]/page.tsx +++ b/lumina/app/tag/[tag]/page.tsx @@ -22,7 +22,7 @@ export default function Home() { // } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return ( diff --git a/lumina/app/upload/page.tsx b/lumina/app/upload/page.tsx index 07a0029..8281aa0 100644 --- a/lumina/app/upload/page.tsx +++ b/lumina/app/upload/page.tsx @@ -25,7 +25,7 @@ export default function UploadPage() { // } const relayUrls = [ - "wss://relay.lumina.rocks", + "wss://relay.nostr.band", ]; return (