[PR #49] [MERGED] merge feat/oidc-middleware #150

Closed
opened 2025-12-29 14:25:41 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/yusing/godoxy/pull/49
Author: @yusing
Created: 1/19/2025
Status: Merged
Merged: 1/19/2025
Merged by: @yusing

Base: feat/oidc-middlewareHead: v0.8


📝 Commits (7)

  • 04e118c api: enrich provider statistifcs
  • 26d259b fix: docker monitor now uses container status
  • 589b3a7 Feat/auto schemas (#48)
  • b253dce cleanup some loadbalancer code
  • fe7740f api: cleanup websocket code
  • 1adba05 api: add /v1/health/ws for health bubbles on dashboard
  • 0fad7b3 feat: experimental memory logger and logs api for WebUI

📊 Changes

64 files changed (+5522 additions, -1078 deletions)

View changed files

📝 .gitignore (+2 -1)
📝 .vscode/settings.example.json (+2 -2)
📝 Dockerfile (+2 -2)
📝 Makefile (+25 -1)
📝 cmd/main.go (+8 -0)
📝 go.mod (+11 -11)
📝 go.sum (+20 -20)
📝 internal/api/handler.go (+2 -0)
internal/api/v1/health.go (+18 -0)
internal/api/v1/mem_logger.go (+161 -0)
📝 internal/api/v1/schema.go (+1 -1)
📝 internal/api/v1/stats.go (+2 -41)
internal/api/v1/utils/ws.go (+68 -0)
📝 internal/common/constants.go (+5 -5)
📝 internal/common/env.go (+3 -0)
📝 internal/config/config.go (+5 -0)
📝 internal/config/query.go (+9 -8)
📝 internal/config/types/config.go (+3 -0)
internal/docker/container_test.go (+43 -0)
📝 internal/docker/idlewatcher/waker.go (+5 -0)

...and 44 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/yusing/godoxy/pull/49 **Author:** [@yusing](https://github.com/yusing) **Created:** 1/19/2025 **Status:** ✅ Merged **Merged:** 1/19/2025 **Merged by:** [@yusing](https://github.com/yusing) **Base:** `feat/oidc-middleware` ← **Head:** `v0.8` --- ### 📝 Commits (7) - [`04e118c`](https://github.com/yusing/godoxy/commit/04e118c081ef84a987906e38eef6b8cd3179dce3) api: enrich provider statistifcs - [`26d259b`](https://github.com/yusing/godoxy/commit/26d259b9529dbc277e7a24835f95b10babd5c34c) fix: docker monitor now uses container status - [`589b3a7`](https://github.com/yusing/godoxy/commit/589b3a7a1337d23acc220b882affa7dbf7916ab7) Feat/auto schemas (#48) - [`b253dce`](https://github.com/yusing/godoxy/commit/b253dce7e19a74623ef3b3e1d40e9ea4f591df2d) cleanup some loadbalancer code - [`fe7740f`](https://github.com/yusing/godoxy/commit/fe7740f1b0165a3779be9a577e706c63539a07d1) api: cleanup websocket code - [`1adba05`](https://github.com/yusing/godoxy/commit/1adba050654f7d564f063c7574c932a35c22cf30) api: add /v1/health/ws for health bubbles on dashboard - [`0fad7b3`](https://github.com/yusing/godoxy/commit/0fad7b3411db50ebbb7ace4a81662d13fb305042) feat: experimental memory logger and logs api for WebUI ### 📊 Changes **64 files changed** (+5522 additions, -1078 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -1) 📝 `.vscode/settings.example.json` (+2 -2) 📝 `Dockerfile` (+2 -2) 📝 `Makefile` (+25 -1) 📝 `cmd/main.go` (+8 -0) 📝 `go.mod` (+11 -11) 📝 `go.sum` (+20 -20) 📝 `internal/api/handler.go` (+2 -0) ➕ `internal/api/v1/health.go` (+18 -0) ➕ `internal/api/v1/mem_logger.go` (+161 -0) 📝 `internal/api/v1/schema.go` (+1 -1) 📝 `internal/api/v1/stats.go` (+2 -41) ➕ `internal/api/v1/utils/ws.go` (+68 -0) 📝 `internal/common/constants.go` (+5 -5) 📝 `internal/common/env.go` (+3 -0) 📝 `internal/config/config.go` (+5 -0) 📝 `internal/config/query.go` (+9 -8) 📝 `internal/config/types/config.go` (+3 -0) ➕ `internal/docker/container_test.go` (+43 -0) 📝 `internal/docker/idlewatcher/waker.go` (+5 -0) _...and 44 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>
adam added the pull-request label 2025-12-29 14:25:41 +01:00
adam closed this issue 2025-12-29 14:25:41 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/godoxy-yusing#150