vibetuner 2.15.1__py3-none-any.whl → 2.16.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of vibetuner might be problematic. Click here for more details.

@@ -36,7 +36,7 @@
36
36
  User ID: <code>{{ current_user_id }}</code>
37
37
  </p>
38
38
  <div class="card-actions justify-end">
39
- <form method="post" action="/debug/stop-impersonation">
39
+ <form method="post" action="{{ url_for('debug.stop_impersonation') }}">
40
40
  <button type="submit" class="btn btn-secondary btn-sm">Stop Impersonation</button>
41
41
  </form>
42
42
  </div>
@@ -105,7 +105,7 @@
105
105
  <td class="text-center">
106
106
  {% if current_user_id != user.id|string %}
107
107
  <form method="post"
108
- action="/debug/impersonate/{{ user.id }}"
108
+ action="{{ url_for('debug.impersonate_user', user_id=user.id) }}"
109
109
  class="inline">
110
110
  <button type="submit" class="btn btn-outline btn-sm">Impersonate</button>
111
111
  </form>
@@ -15,7 +15,11 @@
15
15
  {% if has_oauth and providers %}
16
16
  <div class="space-y-3 mb-6">
17
17
  {% for provider in providers %}
18
- <a href="{{ url_for('login_with_' + provider) }}{%- if next %}?next={{ next }}{%- endif %}"
18
+ {% set login_url = url_for('login_with_' + provider) %}
19
+ {% if next %}
20
+ {% set login_url = login_url ~ '?next=' ~ next %}
21
+ {% endif %}
22
+ <a href="{{ login_url }}"
19
23
  class="btn btn-outline btn-block justify-start gap-3 hover:btn-primary group transition-all duration-300 hover:scale-[1.02]">
20
24
  <span>{{ _("Continue with %(provider)s") | format(provider=provider.title()) }}</span>
21
25
  </a>
@@ -23,13 +27,13 @@
23
27
  </div>
24
28
  {% endif %}
25
29
  <!-- Divider -->
26
- {% if has_oauth and providers and has_email %}<div class="divider text-base-content/50">{{ _("OR") }}</div>{% endif %}
30
+ {% if has_oauth and providers and has_email %}
31
+ <div class="divider text-base-content/50">{{ _("OR") }}</div>
32
+ {% endif %}
27
33
  <!-- Email Magic Link -->
28
34
  {% if has_email %}
29
35
  <div class="bg-base-200/50 rounded-2xl p-6 border border-base-300/50">
30
- <form method="post"
31
- class="space-y-4"
32
- action="{{ url_for("send_magic_link") }}">
36
+ <form method="post" class="space-y-4" action="{{ url_for("send_magic_link") }}">
33
37
  {% if next %}<input type="hidden" name="next" value="{{ next }}" />{% endif %}
34
38
  <div class="form-control">
35
39
  <label class="label" for="email">
@@ -44,10 +48,7 @@
44
48
  required
45
49
  autocomplete="email" />
46
50
  <div class="absolute inset-y-0 right-0 flex items-center pr-3">
47
- <svg class="w-5 h-5 text-base-content/40"
48
- fill="none"
49
- stroke="currentColor"
50
- viewBox="0 0 24 24">
51
+ <svg class="w-5 h-5 text-base-content/40" fill="none" stroke="currentColor" viewBox="0 0 24 24">
51
52
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z" />
52
53
  </svg>
53
54
  </div>
@@ -64,10 +65,7 @@
64
65
  <span>{{ _("Send Magic Link") }}</span>
65
66
  </button>
66
67
  <div class="alert alert-info bg-info/10 border-info/20">
67
- <svg class="w-5 h-5 text-info shrink-0"
68
- fill="none"
69
- stroke="currentColor"
70
- viewBox="0 0 24 24">
68
+ <svg class="w-5 h-5 text-info shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
71
69
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
72
70
  </svg>
73
71
  <div class="text-sm">
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: vibetuner
3
- Version: 2.15.1
3
+ Version: 2.16.2
4
4
  Summary: Core Python framework and blessed dependencies for production-ready FastAPI + MongoDB + HTMX projects
5
5
  Keywords: fastapi,mongodb,htmx,web-framework,scaffolding,oauth,background-jobs
6
6
  Author: All Tuner Labs, S.L.
@@ -42,15 +42,14 @@ Requires-Dist: streaq[web]<6.0.0
42
42
  Requires-Dist: typer-slim[standard]>=0.20.0
43
43
  Requires-Dist: babel>=2.17.0 ; extra == 'dev'
44
44
  Requires-Dist: cloudflare>=4.3.1 ; extra == 'dev'
45
- Requires-Dist: djlint>=1.36.4 ; extra == 'dev'
46
45
  Requires-Dist: dunamai>=1.25.0 ; extra == 'dev'
47
46
  Requires-Dist: gh-bin>=2.81.0 ; extra == 'dev'
48
47
  Requires-Dist: granian[pname,reload]>=2.5.7 ; extra == 'dev'
49
48
  Requires-Dist: just-bin>=1.43.0 ; extra == 'dev'
50
49
  Requires-Dist: pre-commit>=4.3.0 ; extra == 'dev'
51
50
  Requires-Dist: pysemver>=0.5.0 ; extra == 'dev'
52
- Requires-Dist: ruff>=0.14.3 ; extra == 'dev'
53
- Requires-Dist: rumdl>=0.0.171 ; extra == 'dev'
51
+ Requires-Dist: ruff>=0.14.4 ; extra == 'dev'
52
+ Requires-Dist: rumdl>=0.0.172 ; extra == 'dev'
54
53
  Requires-Dist: semver>=3.0.4 ; extra == 'dev'
55
54
  Requires-Dist: taplo>=0.9.3 ; extra == 'dev'
56
55
  Requires-Dist: ty>=0.0.1a25 ; extra == 'dev'
@@ -176,7 +175,6 @@ vibetuner run prod worker
176
175
  The `[dev]` extra includes all tools needed for development:
177
176
 
178
177
  - **Ruff**: Fast linting and formatting
179
- - **djlint**: Template linting
180
178
  - **Babel**: i18n message extraction
181
179
  - **pre-commit**: Git hooks
182
180
  - **Type stubs**: For aioboto3, authlib, PyYAML
@@ -48,8 +48,8 @@ vibetuner/tasks/context.py,sha256=FOFUDWGNo1h8G8qlE-1Gbkh-Kd1z3WZTqSMHkvZ68v8,86
48
48
  vibetuner/tasks/worker.py,sha256=UUknSuVl0orXl3hrW8EPpaGgRI8wYoVm-p5FnDki0Gc,437
49
49
  vibetuner/templates/email/AGENTS.md,sha256=oRCocZqDM0qKCg6REwU-MwTtDbDTbL5DwpmkshVhIEY,1274
50
50
  vibetuner/templates/email/CLAUDE.md,sha256=oRCocZqDM0qKCg6REwU-MwTtDbDTbL5DwpmkshVhIEY,1274
51
- vibetuner/templates/email/default/magic_link.html.jinja,sha256=7npaw9XzttjAe4Y5pk7J47eZJ3K0vR_h7Dz01YT3Xis,567
52
- vibetuner/templates/email/default/magic_link.txt.jinja,sha256=dANak9ion1cpILt45V3GcI2qnL_gKFPj7PsZKYV0m5s,200
51
+ vibetuner/templates/email/magic_link.html.jinja,sha256=7npaw9XzttjAe4Y5pk7J47eZJ3K0vR_h7Dz01YT3Xis,567
52
+ vibetuner/templates/email/magic_link.txt.jinja,sha256=dANak9ion1cpILt45V3GcI2qnL_gKFPj7PsZKYV0m5s,200
53
53
  vibetuner/templates/frontend/AGENTS.md,sha256=LHUslpKlYJ2eQXY7s3uyuAvhyCIoK_6Qox0O0rwIuaI,2299
54
54
  vibetuner/templates/frontend/CLAUDE.md,sha256=LHUslpKlYJ2eQXY7s3uyuAvhyCIoK_6Qox0O0rwIuaI,2299
55
55
  vibetuner/templates/frontend/base/favicons.html.jinja,sha256=TIFiB013aWvQN1zMuHK9K_10AS2zjW7ZtWCxJJmD1kg,70
@@ -61,13 +61,13 @@ vibetuner/templates/frontend/debug/collections.html.jinja,sha256=YpvUaqKJDQ_Rre1
61
61
  vibetuner/templates/frontend/debug/components/debug_nav.html.jinja,sha256=czC5xsguAU3m-LC_DDna067B-pJY9k-i7hXRh5hihHY,2963
62
62
  vibetuner/templates/frontend/debug/index.html.jinja,sha256=FGIvBfmOGJ0OI2_e8oYiFQ9WCLjy2e-aIxyM6qdIzW8,4890
63
63
  vibetuner/templates/frontend/debug/info.html.jinja,sha256=lylzLX-K2TbDq8SmrLOzo8rKUng3njmkwQAgmFNqy5I,14966
64
- vibetuner/templates/frontend/debug/users.html.jinja,sha256=CqC1lBGsuea-JgIqgeQAHRUILtZbRMCC4kVotifTUc8,7767
64
+ vibetuner/templates/frontend/debug/users.html.jinja,sha256=9GSCCLz4oCtbQj24tkmBaGeUL7tg9CTnXurp2GmG7gE,7807
65
65
  vibetuner/templates/frontend/debug/version.html.jinja,sha256=nLh_zUzkO5OuyYHs_SH3Bu9Fa2b2N-YJLiQBTTmQVJM,2899
66
66
  vibetuner/templates/frontend/email/magic_link.txt.jinja,sha256=fTVl3Wjfvp3EJAB5DYt01EL_O7o9r8lHedDH05YP44c,192
67
67
  vibetuner/templates/frontend/email_sent.html.jinja,sha256=Cpvzza80v9KmON66hKmhwIgvd9tkhjhM7O8qe0YLjF4,5235
68
68
  vibetuner/templates/frontend/index.html.jinja,sha256=P4pcI1JKrr5YBMGbgjTSrKlvORRgzi87VvNKsh1B5GE,924
69
69
  vibetuner/templates/frontend/lang/select.html.jinja,sha256=4jHo8QWvMOIeK_KqHzSaDzgvuT3v8MlmjTrrYIl2sjk,224
70
- vibetuner/templates/frontend/login.html.jinja,sha256=9jzEyeCdB2Xe_braaojf1lCLH0qaLN6-lPUHPoGfGRM,5365
70
+ vibetuner/templates/frontend/login.html.jinja,sha256=JvyC6-C09IyxSYa84HOX6D6vpqxPXQLZPp3HTTpJwAc,5279
71
71
  vibetuner/templates/frontend/meta/browserconfig.xml.jinja,sha256=5DE-Dowxw3fRg4UJerW6tVrUYdHWUsUOfS_YucoRVXQ,300
72
72
  vibetuner/templates/frontend/meta/robots.txt.jinja,sha256=SUBJqQCOW5FFdD4uIkReo04NcAYnjITLyB4Wk1wBcS4,46
73
73
  vibetuner/templates/frontend/meta/site.webmanifest.jinja,sha256=QCg2Z2GXd2AwJ3C8CnW9Brvu3cbXcZiquLNEzA8FsOc,150
@@ -80,7 +80,7 @@ vibetuner/templates/markdown/CLAUDE.md,sha256=jcvoQNazCj-t54s0gr-4_qyxLMP8iPf2ur
80
80
  vibetuner/templates.py,sha256=xRoMb_oyAI5x4kxfpg56UcLKkT8e9HVn-o3KFAu9ISE,5094
81
81
  vibetuner/time.py,sha256=3_DtveCCzI20ocTnAlTh2u7FByUXtINaUoQZO-_uZow,1188
82
82
  vibetuner/versioning.py,sha256=UAHGoNsv3QEPAJgHyt_Q8I26SW7ng2FnZlX2-0M6r6U,156
83
- vibetuner-2.15.1.dist-info/WHEEL,sha256=5w2T7AS2mz1-rW9CNagNYWRCaB0iQqBMYLwKdlgiR4Q,78
84
- vibetuner-2.15.1.dist-info/entry_points.txt,sha256=aKIj9YCCXizjYupx9PeWkUJePg3ncHke_LTS5rmCsfs,49
85
- vibetuner-2.15.1.dist-info/METADATA,sha256=G4ldJKFjykEi35VDkpleq1oSltCCCI4zWTIdATuuV3I,8092
86
- vibetuner-2.15.1.dist-info/RECORD,,
83
+ vibetuner-2.16.2.dist-info/WHEEL,sha256=DpNsHFUm_gffZe1FgzmqwuqiuPC6Y-uBCzibcJcdupM,78
84
+ vibetuner-2.16.2.dist-info/entry_points.txt,sha256=aKIj9YCCXizjYupx9PeWkUJePg3ncHke_LTS5rmCsfs,49
85
+ vibetuner-2.16.2.dist-info/METADATA,sha256=GhHpeWNkqWJHrzm9szot_tWu_3z5eVp4IfbaQ_BFkP8,8014
86
+ vibetuner-2.16.2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.7
2
+ Generator: uv 0.9.8
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any