Skip to content

Latest commit

 

History

History
88 lines (53 loc) · 5.11 KB

CONTRIBUTING.md

File metadata and controls

88 lines (53 loc) · 5.11 KB

Contributing

Thank you for considering contributing to Medusa! This document will outline how to submit changes to this repository and which conventions to follow. If you are ever in doubt about anything we encourage you to reach out either by submitting an issue here or reaching out via Discord.

If you're contributing to our documentation, make sure to also check out the contribution guidelines on our documentation website.

Important

Our core maintainers prioritize pull requests (PRs) from within our organization. External contributions are regularly triaged, but not at any fixed cadence. It varies depending on how busy the maintainers are. This is applicable to all types of PRs, so we kindly ask for your patience.

If you, as a community contributor, wish to work on more extensive features, please reach out to CODEOWNERS instead of directly submitting a PR with all the changes. This approach saves us both time, especially if the PR is not accepted (which will be the case if it does not align with our roadmap), and helps us effectively review and evaluate your contribution if it is accepted.

Prerequisites

  • You're familiar with GitHub Issues and Pull Requests
  • You've read the docs.
  • You've setup a test project with medusa new

Issues before PRs

  1. Before you start working on a change please make sure that there is an issue for what you will be working on. You can either find and existing issue or open a new issue if none exists. Doing this makes sure that others can contribute with thoughts or suggest alternatives, ultimately making sure that we only add changes that make

  2. When you are ready to start working on a change you should first fork the Medusa repo and branch out from the develop branch.

  3. Make your changes.

  4. Open a pull request towards the develop branch in the Medusa repo. Within a couple of days a Medusa team member will review, comment and eventually approve your PR.

Workflow

Branches

There are currently two base branches:

  • develop - development of Medusa 2.0
  • v1.x - development of Medusa v1.x

Note, if you wish to patch v1.x you should use v1.x as the base branch for your pull request. This is not the default when you clone the repository.

All changes should be part of a branch and submitted as a pull request - your branches should be prefixed with one of:

  • fix/ for bug fixes
  • feat/ for features
  • docs/ for documentation changes

Commits

Strive towards keeping your commits small and isolated - this helps the reviewer understand what is going on and makes it easier to process your requests.

Pull Requests

Base branch

If you wish to patch v1.x your base branch should be v1.x.

If your changes should result in a new version of Medusa, you will need to generate a changelog. Follow this guide on how to generate a changeset.

Finally, submit your branch as a pull request. Your pull request should be opened against the develop branch in the main Medusa repo.

In your PR's description you should follow the structure:

  • What - what changes are in this PR
  • Why - why are these changes relevant
  • How - how have the changes been implemented
  • Testing - how has the changes been tested or how can the reviewer test the feature

We highly encourage that you do a self-review prior to requesting a review. To do a self review click the review button in the top right corner, go through your code and annotate your changes. This makes it easier for the reviewer to process your PR.

Merge Style

All pull requests are squashed and merged.

Testing

All PRs should include tests for the changes that are included. We have two types of tests that must be written:

  • Unit tests found under packages/*/src/services/__tests__ and packages/*/src/api/routes/*/__tests__
  • Integration tests found in integration-tests/*/__tests__

Check out our local development documentation to learn how to test your changes both in the Medusa repository and in a local server.

Documentation

  • We generally encourage to document your changes through comments in your code.
  • If you alter user-facing behaviour you must provide documentation for such changes.
  • All methods and endpoints should be documented using JSDoc and swagger-inline

Release

The Medusa team will regularly create releases from two release branches:

  • develop - preview releases of Medusa 2.0
  • v1.x - official releases of Medusa 1.x