[PR #163] [MERGED] 1.16.6 #701

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

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/163
Author: @mbecker20
Created: 10/30/2024
Status: Merged
Merged: 10/30/2024
Merged by: @mbecker20

Base: mainHead: 1.16.6


📝 Commits (10+)

  • ae6a876 remove instrument from validate_cancel_build
  • 5c42c7c use type safe AllResources map - Action not showing omnisearch
  • 7dc93e0 Stack support replicated services
  • f28b635 server docker nested tables
  • 256a8ee fix container networks which use network of another container
  • dcd9917 bump version
  • 4195784 add 'address' to ServerListItemInfo
  • a471ce7 secrets list on variables page wraps
  • f4dba51 fix user data script
  • ee0c27a update default template user data

📊 Changes

44 files changed (+1440 additions, -977 deletions)

View changed files

📝 Cargo.lock (+12 -12)
📝 Cargo.toml (+1 -1)
📝 bin/core/src/api/execute/build.rs (+0 -1)
📝 bin/core/src/api/read/mod.rs (+3 -0)
📝 bin/core/src/helpers/builder.rs (+24 -1)
📝 bin/core/src/helpers/query.rs (+1 -1)
📝 bin/core/src/resource/builder.rs (+3 -0)
📝 bin/core/src/resource/mod.rs (+15 -4)
📝 bin/core/src/resource/server.rs (+1 -0)
📝 bin/core/src/stack/services.rs (+37 -10)
📝 bin/core/src/sync/toml.rs (+1 -0)
📝 bin/periphery/src/docker.rs (+26 -19)
client/core/rs/src/deserializers/maybe_string_i64.rs (+213 -0)
📝 client/core/rs/src/deserializers/mod.rs (+2 -0)
📝 client/core/rs/src/entities/builder.rs (+96 -4)
📝 client/core/rs/src/entities/server.rs (+2 -0)
📝 client/core/rs/src/entities/server_template/aws.rs (+1 -1)
📝 client/core/rs/src/entities/server_template/hetzner.rs (+1 -1)
📝 client/core/rs/src/entities/stack.rs (+13 -3)
📝 client/core/ts/package.json (+1 -1)

...and 24 more files

📄 Description

  • Stack:
    • Correctly support replicated services
    • Improve Stack service page
  • Container table:
    • Fix incorrect network name (either container:Id... or just Id...)
    • Show multiple networks in the table
  • Builder:
    • Add Url type - just add Periphery address instead of having to make a Server

🔄 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/163 **Author:** [@mbecker20](https://github.com/mbecker20) **Created:** 10/30/2024 **Status:** ✅ Merged **Merged:** 10/30/2024 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `main` ← **Head:** `1.16.6` --- ### 📝 Commits (10+) - [`ae6a876`](https://github.com/moghtech/komodo/commit/ae6a8760ed23952298f2ed44dee90da4b300fc9b) remove instrument from validate_cancel_build - [`5c42c7c`](https://github.com/moghtech/komodo/commit/5c42c7cf5b0d57717a366a4ba756bc9fad6b4729) use type safe AllResources map - Action not showing omnisearch - [`7dc93e0`](https://github.com/moghtech/komodo/commit/7dc93e03adfc4e495816bffe51808a08189e1473) Stack support replicated services - [`f28b635`](https://github.com/moghtech/komodo/commit/f28b635e88c11f583ff40a66b4943f5fc2b91625) server docker nested tables - [`256a8ee`](https://github.com/moghtech/komodo/commit/256a8eef3d54f1d3d07c1a025f1dda778a536a8a) fix container networks which use network of another container - [`dcd9917`](https://github.com/moghtech/komodo/commit/dcd99175f17afae52ba05a89e80139ff0f5c2a39) bump version - [`4195784`](https://github.com/moghtech/komodo/commit/4195784e587d34e3e548739376574ab8c4724c53) add 'address' to ServerListItemInfo - [`a471ce7`](https://github.com/moghtech/komodo/commit/a471ce7131e85dc08dc92308a8b89681c8fc0966) secrets list on variables page wraps - [`f4dba51`](https://github.com/moghtech/komodo/commit/f4dba514531ec3ec2c03ed1d791fcef9e9c01469) fix user data script - [`ee0c27a`](https://github.com/moghtech/komodo/commit/ee0c27a094c6e4092aeb3464c156d81323c217c2) update default template user data ### 📊 Changes **44 files changed** (+1440 additions, -977 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+12 -12) 📝 `Cargo.toml` (+1 -1) 📝 `bin/core/src/api/execute/build.rs` (+0 -1) 📝 `bin/core/src/api/read/mod.rs` (+3 -0) 📝 `bin/core/src/helpers/builder.rs` (+24 -1) 📝 `bin/core/src/helpers/query.rs` (+1 -1) 📝 `bin/core/src/resource/builder.rs` (+3 -0) 📝 `bin/core/src/resource/mod.rs` (+15 -4) 📝 `bin/core/src/resource/server.rs` (+1 -0) 📝 `bin/core/src/stack/services.rs` (+37 -10) 📝 `bin/core/src/sync/toml.rs` (+1 -0) 📝 `bin/periphery/src/docker.rs` (+26 -19) ➕ `client/core/rs/src/deserializers/maybe_string_i64.rs` (+213 -0) 📝 `client/core/rs/src/deserializers/mod.rs` (+2 -0) 📝 `client/core/rs/src/entities/builder.rs` (+96 -4) 📝 `client/core/rs/src/entities/server.rs` (+2 -0) 📝 `client/core/rs/src/entities/server_template/aws.rs` (+1 -1) 📝 `client/core/rs/src/entities/server_template/hetzner.rs` (+1 -1) 📝 `client/core/rs/src/entities/stack.rs` (+13 -3) 📝 `client/core/ts/package.json` (+1 -1) _...and 24 more files_ </details> ### 📄 Description - **Stack**: - Correctly support replicated services - Improve Stack service page - **Container table**: - Fix incorrect network name (either `container:Id...` or just `Id...`) - Show multiple networks in the table - **Builder**: - Add **Url** type - just add Periphery address instead of having to make a `Server` --- <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:18:57 -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#701
No description provided.