[PR #70] [MERGED] 1.14.2 #674

Closed
opened 2025-10-31 15:17:56 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/70
Author: @mbecker20
Created: 9/11/2024
Status: Merged
Merged: 9/11/2024
Merged by: @mbecker20

Base: mainHead: 1.14.2


📝 Commits (10+)

  • 52d5ef9 docker builders / buildx prune backend
  • f9bfbd0 seems to work with ferret
  • 26e2840 improve UI error messages
  • 3ffabd8 compose files
  • a4a3284 update compose variables comment
  • 6bb9113 update compose files
  • d436ae5 update sqlite compose
  • b4d33a3 env vars and others support end of line comment starting with " #"
  • f12eb6f aws and hetzner default user data for hands free setup
  • cbaac6e move configs

📊 Changes

62 files changed (+1139 additions, -381 deletions)

View changed files

📝 .gitignore (+0 -1)
📝 Cargo.lock (+12 -12)
📝 Cargo.toml (+2 -2)
📝 bin/cli/src/exec.rs (+12 -0)
📝 bin/core/Dockerfile (+1 -1)
📝 bin/core/src/api/auth.rs (+1 -0)
📝 bin/core/src/api/execute/mod.rs (+2 -0)
📝 bin/core/src/api/execute/server.rs (+101 -1)
📝 bin/core/src/api/read/toml.rs (+8 -0)
📝 bin/core/src/api/write/tag.rs (+1 -0)
📝 bin/core/src/auth/github/mod.rs (+6 -2)
📝 bin/core/src/auth/google/mod.rs (+6 -2)
📝 bin/core/src/auth/local.rs (+8 -4)
📝 bin/core/src/config.rs (+2 -0)
📝 bin/core/src/helpers/mod.rs (+0 -28)
📝 bin/core/src/helpers/procedure.rs (+32 -0)
📝 bin/core/src/helpers/sync/resources.rs (+14 -0)
📝 bin/core/src/helpers/update.rs (+12 -0)
📝 bin/core/src/resource/procedure.rs (+18 -0)
📝 bin/periphery/src/api/build.rs (+29 -1)

...and 42 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/moghtech/komodo/pull/70 **Author:** [@mbecker20](https://github.com/mbecker20) **Created:** 9/11/2024 **Status:** ✅ Merged **Merged:** 9/11/2024 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `main` ← **Head:** `1.14.2` --- ### 📝 Commits (10+) - [`52d5ef9`](https://github.com/moghtech/komodo/commit/52d5ef9a4702f5688ed7c784d6184ad94a8c4d1c) docker builders / buildx prune backend - [`f9bfbd0`](https://github.com/moghtech/komodo/commit/f9bfbd0c7763f95b46a801d4b02528560b4353e7) seems to work with ferret - [`26e2840`](https://github.com/moghtech/komodo/commit/26e284009beb6809203853b29375e31c803d2275) improve UI error messages - [`3ffabd8`](https://github.com/moghtech/komodo/commit/3ffabd8ba56c25e35f8a393d98e2bc2e54987891) compose files - [`a4a3284`](https://github.com/moghtech/komodo/commit/a4a3284b840531a3caeee4f58f38239e2caa6fd9) update compose variables comment - [`6bb9113`](https://github.com/moghtech/komodo/commit/6bb9113d53572b35502db4485ae5e8c16396895f) update compose files - [`d436ae5`](https://github.com/moghtech/komodo/commit/d436ae54b52da43fc12f416742866052c2f8585b) update sqlite compose - [`b4d33a3`](https://github.com/moghtech/komodo/commit/b4d33a3be03a9084e5db9d93d32c31d7d41bb8a4) env vars and others support end of line comment starting with " #" - [`f12eb6f`](https://github.com/moghtech/komodo/commit/f12eb6f93f5691ad16f690ee0c323060f6e399b3) aws and hetzner default user data for hands free setup - [`cbaac6e`](https://github.com/moghtech/komodo/commit/cbaac6ebcd0e40685ced14d53bdd703acaf8cf3c) move configs ### 📊 Changes **62 files changed** (+1139 additions, -381 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+0 -1) 📝 `Cargo.lock` (+12 -12) 📝 `Cargo.toml` (+2 -2) 📝 `bin/cli/src/exec.rs` (+12 -0) 📝 `bin/core/Dockerfile` (+1 -1) 📝 `bin/core/src/api/auth.rs` (+1 -0) 📝 `bin/core/src/api/execute/mod.rs` (+2 -0) 📝 `bin/core/src/api/execute/server.rs` (+101 -1) 📝 `bin/core/src/api/read/toml.rs` (+8 -0) 📝 `bin/core/src/api/write/tag.rs` (+1 -0) 📝 `bin/core/src/auth/github/mod.rs` (+6 -2) 📝 `bin/core/src/auth/google/mod.rs` (+6 -2) 📝 `bin/core/src/auth/local.rs` (+8 -4) 📝 `bin/core/src/config.rs` (+2 -0) 📝 `bin/core/src/helpers/mod.rs` (+0 -28) 📝 `bin/core/src/helpers/procedure.rs` (+32 -0) 📝 `bin/core/src/helpers/sync/resources.rs` (+14 -0) 📝 `bin/core/src/helpers/update.rs` (+12 -0) 📝 `bin/core/src/resource/procedure.rs` (+18 -0) 📝 `bin/periphery/src/api/build.rs` (+29 -1) _...and 42 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>
GiteaMirror added the pull-request label 2025-10-31 15:17:56 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#674