[PR #200] [CLOSED] Update with upstream #216

Closed
opened 2026-03-01 14:40:34 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/arikchakma/maily.to/pull/200
Author: @thomasaelbrecht
Created: 6/5/2025
Status: Closed

Base: mainHead: update/upstream


📝 Commits (10+)

  • ab49bf5 fix: add correct redirect URI for auth with OTP
  • 0ed74c2 feat: remove google sign in button
  • 5c04710 feat: remove Google Analytics tracking configuration
  • 9b7a5c2 Merge remote-tracking branch 'upstream/main' into update-upstream
  • 1ef02b5 Merge pull request #1 from Databoy9000/update-upstream
  • 4381db6 fix: fix OTP sign in
  • d8ccc34 chore: remove Google login
  • f9e0877 feat: add first attempt for a render api call
  • 63d6562 chore: also render plain text email
  • 19d08f1 chore: add Dependabot configuration

📊 Changes

51 files changed (+8899 additions, -3409 deletions)

View changed files

.github/ISSUE_TEMPLATE/feature.md (+25 -0)
.github/ISSUE_TEMPLATE/fix.md (+46 -0)
.github/ISSUE_TEMPLATE/task.md (+28 -0)
.github/dependabot.yml (+56 -0)
.github/workflows/main.yml (+37 -0)
📝 .prettierrc.cjs (+1 -1)
📝 apps/web/.env.example (+2 -2)
📝 apps/web/app/components/auth/email-login.tsx (+29 -32)
apps/web/app/components/auth/github-login.tsx (+0 -28)
apps/web/app/components/auth/google-login.tsx (+0 -28)
📝 apps/web/app/components/copy-email-html.tsx (+2 -2)
📝 apps/web/app/components/icons.tsx (+1 -45)
📝 apps/web/app/components/ui/button.tsx (+0 -1)
apps/web/app/lib/api-key-auth.ts (+3 -0)
📝 apps/web/app/lib/http.ts (+28 -32)
📝 apps/web/app/lib/merge-meta.ts (+1 -7)
📝 apps/web/app/lib/metadata.ts (+1 -1)
📝 apps/web/app/lib/supabase/server.ts (+5 -1)
📝 apps/web/app/routes/_index.tsx (+3 -212)
apps/web/app/routes/api.v1._index.tsx (+8 -0)

...and 31 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/arikchakma/maily.to/pull/200 **Author:** [@thomasaelbrecht](https://github.com/thomasaelbrecht) **Created:** 6/5/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `update/upstream` --- ### 📝 Commits (10+) - [`ab49bf5`](https://github.com/arikchakma/maily.to/commit/ab49bf5f61ef71b256c36c9922b645fd1303ff13) fix: add correct redirect URI for auth with OTP - [`0ed74c2`](https://github.com/arikchakma/maily.to/commit/0ed74c2656bbfccee432c0c16abd82b45be9dee2) feat: remove google sign in button - [`5c04710`](https://github.com/arikchakma/maily.to/commit/5c04710cf18ae28e2083498c600a310daf0e8db1) feat: remove Google Analytics tracking configuration - [`9b7a5c2`](https://github.com/arikchakma/maily.to/commit/9b7a5c24c9cbc67b9fb29036ff0ff631402ab765) Merge remote-tracking branch 'upstream/main' into update-upstream - [`1ef02b5`](https://github.com/arikchakma/maily.to/commit/1ef02b5e9616008c9a9dda204811f5d18d883a1b) Merge pull request #1 from Databoy9000/update-upstream - [`4381db6`](https://github.com/arikchakma/maily.to/commit/4381db6d3ce9153bbb42cf576956002a07a15e17) fix: fix OTP sign in - [`d8ccc34`](https://github.com/arikchakma/maily.to/commit/d8ccc34d312a76d696fd73a75a00c56932c47d14) chore: remove Google login - [`f9e0877`](https://github.com/arikchakma/maily.to/commit/f9e0877497dbf929e6a0d48476b39c00f50e0553) feat: add first attempt for a render api call - [`63d6562`](https://github.com/arikchakma/maily.to/commit/63d6562fc6ae9fe0c1f33d74ea685321fc312d0a) chore: also render plain text email - [`19d08f1`](https://github.com/arikchakma/maily.to/commit/19d08f1bab8248e450a2c8ecd37519144c3846bf) chore: add Dependabot configuration ### 📊 Changes **51 files changed** (+8899 additions, -3409 deletions) <details> <summary>View changed files</summary> ➕ `.github/ISSUE_TEMPLATE/feature.md` (+25 -0) ➕ `.github/ISSUE_TEMPLATE/fix.md` (+46 -0) ➕ `.github/ISSUE_TEMPLATE/task.md` (+28 -0) ➕ `.github/dependabot.yml` (+56 -0) ➕ `.github/workflows/main.yml` (+37 -0) 📝 `.prettierrc.cjs` (+1 -1) 📝 `apps/web/.env.example` (+2 -2) 📝 `apps/web/app/components/auth/email-login.tsx` (+29 -32) ➖ `apps/web/app/components/auth/github-login.tsx` (+0 -28) ➖ `apps/web/app/components/auth/google-login.tsx` (+0 -28) 📝 `apps/web/app/components/copy-email-html.tsx` (+2 -2) 📝 `apps/web/app/components/icons.tsx` (+1 -45) 📝 `apps/web/app/components/ui/button.tsx` (+0 -1) ➕ `apps/web/app/lib/api-key-auth.ts` (+3 -0) 📝 `apps/web/app/lib/http.ts` (+28 -32) 📝 `apps/web/app/lib/merge-meta.ts` (+1 -7) 📝 `apps/web/app/lib/metadata.ts` (+1 -1) 📝 `apps/web/app/lib/supabase/server.ts` (+5 -1) 📝 `apps/web/app/routes/_index.tsx` (+3 -212) ➕ `apps/web/app/routes/api.v1._index.tsx` (+8 -0) _...and 31 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-01 14:40:34 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/maily.to#216
No description provided.