{"id":46540422,"url":"https://github.com/chainguard-dev/omnibump","last_synced_at":"2026-03-09T16:23:31.301Z","repository":{"id":340467077,"uuid":"1156481490","full_name":"chainguard-dev/omnibump","owner":"chainguard-dev","description":"Universal declarative depenency bump tool","archived":false,"fork":false,"pushed_at":"2026-02-25T00:30:22.000Z","size":2696,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-25T06:11:01.721Z","etag":null,"topics":["cargo","go","gradle","maven"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chainguard-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-12T17:41:55.000Z","updated_at":"2026-02-25T00:30:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/chainguard-dev/omnibump","commit_stats":null,"previous_names":["chainguard-dev/omnibump"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/chainguard-dev/omnibump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-dev%2Fomnibump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-dev%2Fomnibump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-dev%2Fomnibump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-dev%2Fomnibump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chainguard-dev","download_url":"https://codeload.github.com/chainguard-dev/omnibump/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-dev%2Fomnibump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30204452,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cargo","go","gradle","maven"],"created_at":"2026-03-07T01:03:53.836Z","updated_at":"2026-03-07T01:03:54.398Z","avatar_url":"https://github.com/chainguard-dev.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# omnibump\n\n![omnibump](docs/images/omnibump-linky.png)\n\n**Dependency version management tool**\n\n`omnibump` is a CLI tool for updating dependency versions across multiple language ecosystems with an easy-to-use interface with automatic language detection.\n\n## Features\n\n- **Multi-Language Support**: Go, Rust, and Java (Maven, Gradle)\n- **Automatic Detection**: Identifies project language automatically\n- **Unified Configuration**: Single configuration format across all languages\n- **Property-Based Updates**: Smart property management for Maven\n- **Version Resolution**: Resolves `@latest` queries without spurious changes\n- **Dependency Analysis**: Understand project's dependency structure\n- **Dry Run Mode**: Preview changes before applying\n- **Backward Compatible**: Works with legacy configuration file names\n\n## Supported Languages\n\n| Language | Build Tool | Manifest Files |\n|----------|-----------|----------------|\n| Go | Go Modules | `go.mod`, `go.sum` |\n| Rust | Cargo | `Cargo.lock`, `Cargo.toml` |\n| Java | Maven | `pom.xml` |\n| Java | Gradle | `build.gradle`, `build.gradle.kts` |\n\n## Installation\n\n### From Source\n\n```bash\ngit clone https://github.com/chainguard-dev/omnibump\ncd omnibump\nmake build\nsudo make install\n```\n\n### Verify Installation\n\n```bash\nomnibump version\n```\n\nFor detailed installation instructions including build targets and development setup, see the [Installation Guide](docs/installation.md).\n\n## Quick Start\n\n### 1. Analyze Your Project\n\nBefore updating dependencies, analyze your project to understand its structure:\n\n```bash\n# Analyze current directory\nomnibump analyze\n\n# Get recommendations for specific dependencies\nomnibump analyze --packages \"golang.org/x/sys@v0.28.0\"\n```\n\n### 2. Update Dependencies\n\n```bash\n# Using configuration file\nomnibump --deps deps.yaml\n\n# Using inline packages\nomnibump --packages \"golang.org/x/sys@v0.28.0\"\n\n# Dry run first (recommended)\nomnibump --deps deps.yaml --dry-run\n\n# With automatic tidying\nomnibump --deps deps.yaml --tidy\n```\n\n## Basic Usage\n\n### Go Projects\n\n```bash\n# Update a single dependency\nomnibump --language go --packages \"golang.org/x/sys@latest\" --tidy\n```\n\nOr create `deps.yaml`:\n\n```yaml\npackages:\n  - name: golang.org/x/sys\n    version: v0.28.0\n  - name: golang.org/x/crypto\n    version: v0.31.0\n```\n\nRun update:\n\n```bash\nomnibump --deps deps.yaml --tidy\n```\n\n### Rust Projects\n\nCreate `deps.yaml`:\n\n```yaml\npackages:\n  - name: tokio\n    version: 1.42.0\n  - name: serde\n    version: 1.0.217\n```\n\nRun update:\n\n```bash\nomnibump --deps deps.yaml\n```\n\n### Java (Maven) Projects\n\nCreate `deps.yaml`:\n\n```yaml\npackages:\n  - groupId: io.netty\n    artifactId: netty-codec-http\n    version: 4.1.94.Final\n  - groupId: junit\n    artifactId: junit\n    version: 4.13.2\n    scope: test\n```\n\nRun update:\n\n```bash\nomnibump --deps deps.yaml\n```\n\nFor properties-based updates:\n\n```yaml\n# properties.yaml\nproperties:\n  - property: slf4j.version\n    value: 2.0.16\n```\n\n```bash\nomnibump --properties properties.yaml\n```\n\n### Java (Gradle) Projects\n\nCreate `deps.yaml`:\n\n```yaml\npackages:\n  - name: \"org.apache.commons:commons-lang3\"\n    version: \"3.18.0\"\n  - name: \"io.netty:netty-all\"\n    version: \"4.1.101.Final\"\n```\n\nRun update:\n\n```bash\nomnibump --deps deps.yaml\n```\n\n## Documentation\n\nComprehensive documentation is available in the `docs/` directory:\n\n- **[Installation Guide](docs/installation.md)** - Detailed installation, build targets, and development setup\n- **[Usage Examples](docs/usage-examples.md)** - Comprehensive examples for all supported languages\n- **[Configuration Guide](docs/configuration.md)** - Configuration file formats and package specifications\n- **[CLI Reference](docs/cli-reference.md)** - Complete command-line interface documentation\n- **[Validation and Safety](docs/validation-and-safety.md)** - Built-in validation rules and safety features\n- **[Common Workflows](docs/workflows.md)** - CVE response, batch updates, CI/CD integration\n- **[Best Practices](docs/best-practices.md)** - Recommendations for using omnibump effectively\n- **[Troubleshooting](docs/troubleshooting.md)** - Common issues and solutions\n- **[Migration Guide](docs/migration-guide.md)** - Migrating from gobump, cargobump, or pombump\n- **[Advanced Usage](docs/advanced-usage.md)** - Debug mode, automation, and advanced features\n\n## FAQ\n\n### Does omnibump support Gradle?\n\nYes! Gradle support is fully implemented. omnibump auto-detects Gradle projects and supports both Groovy DSL (`build.gradle`) and Kotlin DSL (`build.gradle.kts`). See the [Usage Examples](docs/usage-examples.md) for details.\n\n### Can I use omnibump in CI/CD?\n\nYes! omnibump is designed for automation. Use `--dry-run` for validation and regular mode for updates. See the [Common Workflows](docs/workflows.md) guide for CI/CD integration examples.\n\n### How does omnibump compare to Dependabot or Renovate?\n\nomnibump is a CLI tool for manual/scripted updates. Dependabot and Renovate are automated services that create PRs. They serve different use cases and can complement each other.\n\n### Is omnibump safe to use?\n\nYes, with proper testing. Always use `--dry-run` first, review changes, run tests, and maintain backups. See the [Validation and Safety](docs/validation-and-safety.md) guide for details on built-in safety features.\n\n## Contributing\n\nContributions are welcome! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.\n\n## License\n\nCopyright 2026 Chainguard, Inc.\n\nLicensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.\n\n## Support\n\n- **Issues**: https://github.com/chainguard-dev/omnibump/issues\n- **Documentation**: https://github.com/chainguard-dev/omnibump/tree/main/docs\n- **Discussions**: https://github.com/chainguard-dev/omnibump/discussions\n\n## Related Tools\n\n- **gobump**: Legacy Go-specific dependency updater (superseded by omnibump)\n- **cargobump**: Legacy Rust-specific dependency updater (superseded by omnibump)\n- **pombump**: Legacy Maven-specific dependency updater (superseded by omnibump)\n- **Dependabot**: Automated dependency updates via GitHub\n- **Renovate**: Automated dependency updates across platforms\n\n---\n\nMade with 💜 by [Chainguard](https://chainguard.dev)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchainguard-dev%2Fomnibump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchainguard-dev%2Fomnibump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchainguard-dev%2Fomnibump/lists"}