Skip to content

Commit c4a9d9d

Browse files
fix: force https scheme in production
1 parent 6275334 commit c4a9d9d

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

app/Providers/AppServiceProvider.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ public function register(): void
3737
*/
3838
public function boot(): void
3939
{
40+
if ($this->app->environment('production')) {
41+
\Illuminate\Support\Facades\URL::forceScheme('https');
42+
}
43+
4044
$this->registerResilientDatabaseCache();
4145

4246
// Register model observers for Algolia indexing

docs/release-notes/RELEASE_NOTES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Centralized history of notable changes, fixes, and enhancements to the Zettly pl
66

77
| Version | Date | Highlights |
88
|---------|------|------------|
9+
| 0.11.3 | 2025-12-02 | make husky installation optional in production (78f27cc) |
910
| 0.11.2 | 2025-12-02 | add database sync command for production to local sync (29fb811) |
1011
| 0.11.1 | 2025-12-02 | cleanup project structure and update dependencies (85858e5) |
1112
| 0.10.21 | 2025-11-27 | **feat:** Focus edit functionality and history auto-update |
@@ -15,6 +16,17 @@ Centralized history of notable changes, fixes, and enhancements to the Zettly pl
1516

1617

1718

19+
20+
## 0.11.3 – 🐛 Bug Fixes
21+
22+
Released on **2025-12-02**.
23+
24+
- make husky installation optional in production (78f27cc)
25+
- move @headlessui/react to dependencies (9b634ca)
26+
- move axios, laravel-echo, pusher-js to dependencies (36d19a2)
27+
- move build dependencies to production dependencies (db0f1d1)
28+
- move vite-plugin-pwa to dependencies (d915487)
29+
1830
## 0.11.2 – ✨ Features
1931

2032
Released on **2025-12-02**.

0 commit comments

Comments
 (0)