[PR #28] [MERGED] MTLS, Connection Monitoring, time zone logger #84

Closed
opened 2025-11-19 07:13:33 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/newt/pull/28
Author: @oschwartz10612
Created: 4/6/2025
Status: Merged
Merged: 4/6/2025
Merged by: @oschwartz10612

Base: mainHead: dev


📝 Commits (7)

  • b3e8bf7 Add LOGGER_TIMEZONE env to control the time zone
  • 9b3c826 feat/mtls-support
  • 435b638 feat/mtls-support-cert-script
  • 72e0adc Monitor connection with pings and keep pining
  • b41570e feat/mtls-support-cert: config support
  • d28e3ca feat/mtls-support-cert: doc update, removing config.Endpoint loading duplicates, handling null-pointer case and some logging
  • e7c8dbc Merge pull request #26 from progressive-kiwi/feat-mtls-support

📊 Changes

10 files changed (+431 additions, -66 deletions)

View changed files

📝 .gitignore (+4 -1)
📝 README.md (+35 -2)
📝 go.mod (+1 -0)
📝 go.sum (+2 -0)
📝 logger/logger.go (+17 -1)
📝 main.go (+149 -47)
self-signed-certs-for-mtls.sh (+125 -0)
📝 websocket/client.go (+90 -11)
📝 websocket/config.go (+3 -0)
📝 websocket/types.go (+5 -4)

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description

Add LOGGER_TIMEZONE env to control the time zone
feat/mtls-support
Monitor connection with pings and keep pining


🔄 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/fosrl/newt/pull/28 **Author:** [@oschwartz10612](https://github.com/oschwartz10612) **Created:** 4/6/2025 **Status:** ✅ Merged **Merged:** 4/6/2025 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (7) - [`b3e8bf7`](https://github.com/fosrl/newt/commit/b3e8bf7d12f627f275aaa8cdbb2fbea3d6645ad7) Add LOGGER_TIMEZONE env to control the time zone - [`9b3c826`](https://github.com/fosrl/newt/commit/9b3c82648b1daa452423de3bb67e04e1f1612ba2) feat/mtls-support - [`435b638`](https://github.com/fosrl/newt/commit/435b6387017ede59b3ab7423cefc7a3ec13ba4a7) feat/mtls-support-cert-script - [`72e0adc`](https://github.com/fosrl/newt/commit/72e0adc1bf2b9119dbb8ca8be68ade9f194653bc) Monitor connection with pings and keep pining - [`b41570e`](https://github.com/fosrl/newt/commit/b41570eb2ca5ac28ae30c929d885d556e7992744) feat/mtls-support-cert: config support - [`d28e3ca`](https://github.com/fosrl/newt/commit/d28e3ca5e8ae3e15f67902c1dd0eda9d56670fb1) feat/mtls-support-cert: doc update, removing config.Endpoint loading duplicates, handling null-pointer case and some logging - [`e7c8dbc`](https://github.com/fosrl/newt/commit/e7c8dbc1c830e15734e14131ea202747810cc15e) Merge pull request #26 from progressive-kiwi/feat-mtls-support ### 📊 Changes **10 files changed** (+431 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+4 -1) 📝 `README.md` (+35 -2) 📝 `go.mod` (+1 -0) 📝 `go.sum` (+2 -0) 📝 `logger/logger.go` (+17 -1) 📝 `main.go` (+149 -47) ➕ `self-signed-certs-for-mtls.sh` (+125 -0) 📝 `websocket/client.go` (+90 -11) 📝 `websocket/config.go` (+3 -0) 📝 `websocket/types.go` (+5 -4) </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description [Add LOGGER_TIMEZONE env to control the time zone](https://github.com/fosrl/newt/commit/b3e8bf7d12f627f275aaa8cdbb2fbea3d6645ad7) [feat/mtls-support](https://github.com/fosrl/newt/commit/9b3c82648b1daa452423de3bb67e04e1f1612ba2) [Monitor connection with pings and keep pining](https://github.com/fosrl/newt/commit/72e0adc1bf2b9119dbb8ca8be68ade9f194653bc) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-19 07:13:33 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/newt#84