[PR #764] [MERGED] 1.19.2 #779

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

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/764
Author: @mbecker20
Created: 8/24/2025
Status: Merged
Merged: 9/1/2025
Merged by: @mbecker20

Base: mainHead: 1.19.2


📝 Commits (10+)

  • 6e34f2e 1.19.2-dev-0
  • e341f93 deploy 1.19.2-dev-1
  • 0651727 Add option to make run command detachable (#766)
  • c08c12e improve missing files log to include the missing paths
  • 66736d6 bump mungos for urlencoding mongo creds
  • 318d86c Update permissioning.md - typo: "priviledges" -> "privileges" (#770)
  • 5974464 Add support for monaco-yaml and docker compose spec validatiaon (#772)
  • 5ffa32b deploy 1.19.2-dev-2
  • 2f5ceca on delete user, remove from all user groups
  • e89bb7d fix Google login issues around picture

📊 Changes

38 files changed (+2396 additions, -197 deletions)

View changed files

📝 Cargo.lock (+94 -71)
📝 Cargo.toml (+7 -7)
📝 bin/core/src/api/execute/stack.rs (+1 -0)
📝 bin/core/src/api/write/build.rs (+11 -9)
📝 bin/core/src/api/write/stack.rs (+3 -1)
📝 bin/core/src/api/write/sync.rs (+3 -1)
📝 bin/core/src/api/write/user.rs (+8 -0)
📝 bin/core/src/auth/google/client.rs (+3 -2)
📝 bin/core/src/config.rs (+1 -0)
📝 bin/core/src/main.rs (+8 -4)
📝 bin/core/src/monitor/resources.rs (+14 -10)
📝 bin/core/src/startup.rs (+1 -1)
📝 bin/periphery/src/api/compose.rs (+4 -0)
📝 bin/periphery/src/api/terminal.rs (+1 -1)
📝 bin/periphery/src/compose/up.rs (+2 -1)
📝 client/core/rs/Cargo.toml (+1 -0)
📝 client/core/rs/src/api/execute/stack.rs (+3 -0)
📝 client/core/rs/src/entities/config/core.rs (+11 -0)
📝 client/core/rs/src/entities/mod.rs (+11 -2)
📝 client/core/ts/package.json (+1 -1)

...and 18 more files

📄 Description

Changelog

Resource

  • Stack: Add option to make run command detachable in #766 by @bpbradley
  • Stack: Add compose-file specific linting / suggestions as you type in #772 by @chrishoage

Misc

  • Improve container ports display when defined as range in #786 by @jackra1n
  • urlencode database credentials to ensure they reach database correctly
  • Fix file commit Stack / Build / Resource Sync when using these with Linked Repo re #634
  • Fix auto update issue #468
  • Support custom "username" part of git access tokens to allow for more git providers re #387
    • Bitbucket users: For the token you configure with Komodo for the account, prefix it like so: x-token-auth:<ACCESS_TOKEN>

🔄 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/764 **Author:** [@mbecker20](https://github.com/mbecker20) **Created:** 8/24/2025 **Status:** ✅ Merged **Merged:** 9/1/2025 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `main` ← **Head:** `1.19.2` --- ### 📝 Commits (10+) - [`6e34f2e`](https://github.com/moghtech/komodo/commit/6e34f2e28c2f8336f891fe0fc8ac97be83b8c530) 1.19.2-dev-0 - [`e341f93`](https://github.com/moghtech/komodo/commit/e341f933b21b709193e03e92ff2ef373bbfbd9c5) deploy 1.19.2-dev-1 - [`0651727`](https://github.com/moghtech/komodo/commit/0651727f8baacf20fb4642fc8a7a4faecf512c51) Add option to make run command detachable (#766) - [`c08c12e`](https://github.com/moghtech/komodo/commit/c08c12ef6589abedafa0f0af0fecf5a0a1add94f) improve missing files log to include the missing paths - [`66736d6`](https://github.com/moghtech/komodo/commit/66736d65efe9fe6bc219aeeff51e8272781497e4) bump mungos for urlencoding mongo creds - [`318d86c`](https://github.com/moghtech/komodo/commit/318d86c9bd9e1fd7e23d4f4971ec00ae20b09486) Update permissioning.md - typo: "priviledges" -> "privileges" (#770) - [`5974464`](https://github.com/moghtech/komodo/commit/5974464e2c07800c59a47067cbf3ace0204e21ce) Add support for monaco-yaml and docker compose spec validatiaon (#772) - [`5ffa32b`](https://github.com/moghtech/komodo/commit/5ffa32bb9a118b2a6e7fc9f7dfcd9888691830e4) deploy 1.19.2-dev-2 - [`2f5ceca`](https://github.com/moghtech/komodo/commit/2f5cecaa6dd177d9b1f4ce3fe0e169de223db1f5) on delete user, remove from all user groups - [`e89bb7d`](https://github.com/moghtech/komodo/commit/e89bb7d4b7d2b9a2c6f8eeb74e7f7faed7a023fc) fix Google login issues around `picture` ### 📊 Changes **38 files changed** (+2396 additions, -197 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+94 -71) 📝 `Cargo.toml` (+7 -7) 📝 `bin/core/src/api/execute/stack.rs` (+1 -0) 📝 `bin/core/src/api/write/build.rs` (+11 -9) 📝 `bin/core/src/api/write/stack.rs` (+3 -1) 📝 `bin/core/src/api/write/sync.rs` (+3 -1) 📝 `bin/core/src/api/write/user.rs` (+8 -0) 📝 `bin/core/src/auth/google/client.rs` (+3 -2) 📝 `bin/core/src/config.rs` (+1 -0) 📝 `bin/core/src/main.rs` (+8 -4) 📝 `bin/core/src/monitor/resources.rs` (+14 -10) 📝 `bin/core/src/startup.rs` (+1 -1) 📝 `bin/periphery/src/api/compose.rs` (+4 -0) 📝 `bin/periphery/src/api/terminal.rs` (+1 -1) 📝 `bin/periphery/src/compose/up.rs` (+2 -1) 📝 `client/core/rs/Cargo.toml` (+1 -0) 📝 `client/core/rs/src/api/execute/stack.rs` (+3 -0) 📝 `client/core/rs/src/entities/config/core.rs` (+11 -0) 📝 `client/core/rs/src/entities/mod.rs` (+11 -2) 📝 `client/core/ts/package.json` (+1 -1) _...and 18 more files_ </details> ### 📄 Description # Changelog ### Resource - **Stack**: Add option to make run command detachable in #766 by @bpbradley - **Stack**: Add compose-file specific linting / suggestions as you type in #772 by @chrishoage ### Misc - Improve container ports display when defined as range in #786 by @jackra1n - `urlencode` database credentials to ensure they reach database correctly - Fix **file commit** Stack / Build / Resource Sync when using these with Linked Repo re #634 - Fix auto update issue #468 - Support custom "username" part of git access tokens to allow for more git providers re #387 - **Bitbucket users**: For the **token** you configure with Komodo for the account, prefix it like so: `x-token-auth:<ACCESS_TOKEN>` --- <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:21:36 -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#779