Skip to content

chore: Configure Renovate#1

Merged
tusharmath merged 1 commit intomainfrom
renovate/configure
Dec 17, 2024
Merged

chore: Configure Renovate#1
tusharmath merged 1 commit intomainfrom
renovate/configure

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Dec 9, 2024

Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.


Detected Package Files

  • crates/forge-ci/Cargo.toml (cargo)
  • crates/forge-cli/Cargo.toml (cargo)
  • crates/forge-provider/Cargo.toml (cargo)
  • .github/workflows/autofix.yml (github-actions)
  • .github/workflows/ci.yml (github-actions)

Configuration Summary

Based on the default config's presets, Renovate will:

  • Start dependency updates only once this onboarding PR is merged
  • Show all Merge Confidence badges for pull requests.
  • Enable Renovate Dependency Dashboard creation.
  • Use semantic commit type fix for dependencies and chore for all others if semantic commits are in use.
  • Ignore node_modules, bower_components, vendor and various test/tests (except for nuget) directories.
  • Group known monorepo packages together.
  • Use curated list of recommended non-monorepo package groupings.
  • Apply crowd-sourced package replacement rules.
  • Apply crowd-sourced workarounds for known problems with packages.

🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to renovate.json in this branch. Renovate will update the Pull Request description the next time it runs.


What to Expect

With your current configuration, Renovate will create 3 Pull Requests:

fix(deps): update rust crate async-openai to 0.26
  • Schedule: ["at any time"]
  • Branch name: renovate/async-openai-0.x
  • Merge into: main
  • Upgrade async-openai to 0.26
fix(deps): update rust crate reqwest to 0.12
  • Schedule: ["at any time"]
  • Branch name: renovate/reqwest-0.x
  • Merge into: main
  • Upgrade reqwest to 0.12
fix(deps): update strum monorepo to 0.26
  • Schedule: ["at any time"]
  • Branch name: renovate/strum-monorepo
  • Merge into: main
  • Upgrade strum to 0.26
  • Upgrade strum_macros to 0.26

🚸 Branch creation will be limited to maximum 2 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for prhourlylimit for details.


❓ Got questions? Check out Renovate's Docs, particularly the Getting Started section.
If you need any further assistance then you can also request help here.


This PR was generated by Mend Renovate. View the repository job log.

@tusharmath tusharmath merged commit 276325f into main Dec 17, 2024
@renovate renovate Bot deleted the renovate/configure branch December 17, 2024 19:37
Zetkolink referenced this pull request in Zetkolink/forgecode Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- tailcallhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- tailcallhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- tailcallhq#7: ForgeServiceImpl fields private, added new() constructor
- tailcallhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- tailcallhq#9: Removed unused lock_conn helper, kept consistent pattern
- tailcallhq#11: Documented ends_with filter limitation in qdrant.rs
- tailcallhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- tailcallhq#18: Added extract_workspace_id() helper

Co-Authored-By: ForgeCode <noreply@users.noreply.github.com>
Zetkolink referenced this pull request in Zetkolink/forgecode Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- tailcallhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- tailcallhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- tailcallhq#7: ForgeServiceImpl fields private, added new() constructor
- tailcallhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- tailcallhq#9: Removed unused lock_conn helper, kept consistent pattern
- tailcallhq#11: Documented ends_with filter limitation in qdrant.rs
- tailcallhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- tailcallhq#18: Added extract_workspace_id() helper
Zetkolink referenced this pull request in Zetkolink/forgecode Apr 8, 2026
Bugs fixed:
- #1: Unified timestamp format — all tables use strftime('%s','now') (unix seconds)
- #2: delete_file_refs and delete_workspace wrapped in transactions
- tailcallhq#19: Removed chrono_now(), use SQLite DEFAULT instead

Security:
- tailcallhq#15: All workspace methods verify ownership (authenticate_and_verify_owner)
- Added db.verify_workspace_owner() method

Code quality:
- tailcallhq#7: ForgeServiceImpl fields private, added new() constructor
- tailcallhq#8: IntoStatus trait eliminates 15+ duplicate .map_err() calls
- tailcallhq#9: Removed unused lock_conn helper, kept consistent pattern
- tailcallhq#11: Documented ends_with filter limitation in qdrant.rs
- tailcallhq#10: reqwest Client with 120s timeout + 10s connect_timeout
- tailcallhq#18: Added extract_workspace_id() helper
xihale added a commit to xihale/forgecode that referenced this pull request Apr 26, 2026
- Fix path traversal bypass in validate_hook_path_for_delete: add
  lexical normalization to resolve `..` components before the
  starts_with check (tailcallhq#1)
- Ensure validate_hook_path_for_delete returns paths relative to the
  non-canonical base, so relative_hook_path() can strip the prefix
  correctly even when HOME is a symlink (tailcallhq#6)
- Upgrade PreparedHook::prepare() failure from debug! to warn! so
  users are alerted when trusted hooks fail to load (tailcallhq#2)
- Replace 3-tuple return in resolve_and_validate_hook_path with a
  named ResolvedHook struct for readability (tailcallhq#4)
- Use structured logging fields (path + error) in TrustStore::load()
  warning instead of inline format string (tailcallhq#5)

Co-Authored-By: ForgeCode <noreply@forgecode.dev>
xihale added a commit to xihale/forgecode that referenced this pull request Apr 26, 2026
- Replace unwrap_or fallback with expect() in validate_hook_path_for_delete
  traversal check — strip_prefix cannot fail unless there is a logic bug,
  and the fallback silently bypassed the security check (tailcallhq#1)
- Fix relative_hook_path to fall back to canonical base when the input
  path is canonicalized (e.g. validate_hook_path returns a canonical path
  but HOME is a symlink) — prevents storing absolute-path keys in the
  trust store (tailcallhq#2)
- Move ResolvedHook struct to module level for better reusability (tailcallhq#4)

Co-Authored-By: ForgeCode <noreply@forgecode.dev>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant