Dependabot Core
Dependabot Core is a collection of helper classes for automating dependency updating in Ruby, JavaScript, Python and PHP. It is used by Dependabot. Highlights include:
- Logic to check for the latest version of a dependency that's resolvable given a project's other dependencies. That means tapping into the package manager's dependency resolution logic
- Logic to generate updated manifest and lockfiles for a new dependency version
- Logic to find changelogs, release notes, and commits for a dependency update
Setup
To run Dependabot Core, you'll need Ruby, Python, PHP and Node installed. The main library is written in Ruby, while JavaScript, Python and PHP are required for dealing with updates for their respective languages.
Before running Dependabot Core, install dependencies for the core library and the helpers:
bundle install
cd helpers/javascript && yarn install && cd -
cd helpers/php && composer install && cd -
pip install pip==9.0.1
Internals
Dependabot Core has helper classes for seven concerns. Where relevant, each concern will have a language-specific class.
Service | Description |
---|---|
Dependabot::FileFetchers |
Fetches the relevant dependency files for a project (e.g., the Gemfile and Gemfile.lock ). |
Dependabot::FileParsers |
Parses a dependency file and extracts a list of dependencies for a project. |
Dependabot::UpdateCheckers |
Checks whether a given dependency is up-to-date. |
Dependabot::FileUpdaters |
Updates a dependency file to use the latest version of a given dependency. |
Dependabot::MetadataFinders |
Looks up metadata about a dependency, such as its GitHub URL. |
Dependabot::PullRequestCreator |
Creates a Pull Request to the original repo with the updated dependency file. |
Dependabot::PullRequestUpdater |
Updates an existing Pull Request with new dependency files (e.g., to resolve conflicts). |
Why is this open source?
As the name suggests, Dependabot Core is the core of Dependabot (the rest of the app is pretty much just a UI and database). If we were paranoid about someone stealing our business then we'd be keeping it under lock and key.
Dependabot Core is open source because we're more interested in it having an impact than we are in making a buck from it. We'd love you to use Dependabot, so that we can continue to develop it, but if you want to build and host your own version then this library should make doing so a lot easier.
If you use Dependabot Core then we'd love to hear what you build!
History
Dependabot and Dependabot Core started life as Bump and Bump Core, back when Harry and Grey were working at GoCardless. We remain grateful for the help and support of GoCardless in helping make Dependabot possible - if you need to collect recurring payments from Europe, check them out.
Contributing
We'd love to see the following improvements to Dependabot Core: