From c85934a1d5b9c62e7c64702c29615b8b7152e359 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 22:16:07 +0000 Subject: [PATCH 1/3] Bump docker/metadata-action from 4 to 6 in /.github/workflows Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 4 to 6. - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v4...v6) --- updated-dependencies: - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release-docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-docker.yaml b/.github/workflows/release-docker.yaml index 541ee89..635fa9a 100644 --- a/.github/workflows/release-docker.yaml +++ b/.github/workflows/release-docker.yaml @@ -73,7 +73,7 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v6 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: ${{ env.REGISTRY }}/${{ github.repository }} From ffcdd846f44250191c974bdefa54e0f96fc4da3e Mon Sep 17 00:00:00 2001 From: aayushprsingh Date: Sat, 9 May 2026 02:37:27 +0530 Subject: [PATCH 2/3] fix: respect LOG_URLS=false to disable request URL logging When LOG_URLS=false is set, request URL paths (e.g. GET /https://...) are no longer logged. Previously only NOLOGS=true was checked, making LOG_URLS ineffective for suppressing request logs. Fixes #78 --- cmd/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/main.go b/cmd/main.go index 54cab3a..96c824c 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -124,7 +124,7 @@ func main() { URL: basePath + "/favicon.ico", })) - if os.Getenv("NOLOGS") != "true" { + if os.Getenv("NOLOGS") != "true" && os.Getenv("LOG_URLS") != "false" { app.Use(func(c *fiber.Ctx) error { log.Println(c.Method(), c.Path()) From 90b23a3708e5ba58893b924f5008a7f256a1521f Mon Sep 17 00:00:00 2001 From: aayushprsingh Date: Sat, 9 May 2026 02:56:54 +0530 Subject: [PATCH 3/3] feat(form): add Paste & Go button for mobile users On mobile (screen < sm), show a 'Paste & Go' button that reads the clipboard and navigates directly to the proxied URL. On larger screens the button is hidden (sm:hidden) and users can paste directly into the input field. Fixes #71 --- handlers/form.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/handlers/form.html b/handlers/form.html index 50f042c..c159091 100644 --- a/handlers/form.html +++ b/handlers/form.html @@ -22,9 +22,10 @@

+