Public Lab Research note


First-timer-only release workflow

by sagarpreet_chadha | October 20, 2020 08:26 20 Oct 08:26 | #24773 | #24773

What is this program about?

As Outreachy season is around the corner, we wanted to come up with an interesting approach to develop industry-standard skills for interns and to make their internship period more fun!

The program will help the interns develop skills on how the versions of a software are maintained and what all steps are needed to make sure that the software package is published correctly and at the same time ensuring backward compatibility is maintained so that any production code does not break!

This program will also make sure that there is no integration problem while bumping a library in plots2 and making the entire process seamless.

How will this work?

( For Javascript based projects)

  1. At the start of each 2 week period, we will have a meeting and plan according to the proposals, all the features we plan to do in the coming 2 weeks.
  2. For that 2 weeks, we will appoint a DEPLOYMENT LEAD (DL), whose job will be to make sure all PR' planned to go LIVE in that week are reviewed and merged to the main branch.
  3. DL can tag other reviewers or/and review themself
  4. Only permissions we need to give to interns will be that of adding labels, tagging reviewers.
  5. While reviewing the PR, the DL has to make sure that the code in that PR has proper unit/functional tests coverage.
  6. Once all the PR's planned for that week are merged to the main branch, the DL can publish the new version of that project to NPM.
  7. For the first few iterations, it will be mandatory to get the PR reviewed by Outreachy mentors so that they can merge the PR.
  8. After the first 2-3 iterations of each DL, we can give the interns the merging rights as well if we feel they are comfortable with the workflow.
  9. In the first week of each new Deployment Lead, the intern has to first do a PATCH release and document it. This will make sure that the DL gains some experience by doing a safe release and is ready for doing minor/major releases.

How to choose a new version of the project?

Before we deep dive into how a package is published, it is of utmost importance to understand the versioning of packages. Below are some FAQs that will help us understand the DO's ✅ and DON'Ts ❎ of versioning and some common scenarios encountered after a release is made to the world.

What are breaking changes and why we should not do them frequently?

  • Breaking changes means when we do a major release by changing the X number in X.Y.Z (ex: 15.6.2 to 16.0.0)
  • When downstream users upgrade the package with the new major version, then their code will break!
  • Major releases can contain architectural changes, new features, and bug fixes.
  • Breaking changes are inconvenient for everyone, so we try to minimize the number of major releases -- for example, React 15 was released in April 2016 and React 16 was released in September 2017; React 17 isn't expected until sometime in 2020.
  • Instead, we release new features in minor versions. That means that minor releases are often more interesting and compelling than majors, despite their unassuming name.
    • See how React maintains versioning here.
    • See example of webpack's recent major release (10/10/2020 / tweet), which contains architectural changes.

When can we do Major release?

  • if there's sure to be only a single downstream user.
  • if everyone on both teams is aware and are in agreement for a major release!
  • If there hasn't been a major release for a long time and doing a major release will make
    • better architectural changes and
    • will make it easy to maintain the project
    • Open possibility of adding more features which would have been difficult to do so without this major release.
  • if all documentation is updated with the changes.

Difference between Minor and Patch release?

  • When releasing new features or non-critical bug fixes, we do a minor release by incrementing the Y number in X.Y.Z (ex: 15.6.2 to 15.7.0).
  • When releasing critical bug fixes, we do a patch release by incrementing the Z number in X.Y.Z (ex: 15.6.2 to 15.6.3).

I have done a Major/ Minor release but there is some bug introduced now, what to do?

  • It is normal to have bugs 🐛 introduced after doing a release especially after a major release.
  • Make sure after you figure out the bug, you immediately do a PATCH release and document the BUG FIX.
  • Example: We did a minor release of v2.1.0 in PL.editor project, but after doing this release we found a bug which was solved immediately in this PR .
  • Finally we bumped the version to v2.1.1 here and did a PATCH release.
  • See the picture below describing how only bug fixes were done to make the latest minor release stable. Source:https://github.com/webpack/webpack/releases

How to publish?

  1. Increment the version in package.json from x.y.z to:

  2. x+1.y.z if there are major changes like new features or change in syntax, etc.

  3. x.y+1.z if there is a minor change like changing in some logic or upgrading dependent libraries maybe, etc
  4. x.y.z+1 if there are some patches to be made like some bug is solved, etc

  5. Make sure package-lock.json is changed if some dependencies are changed in package.json.

  6. Make sure your changes are there in the dist folder.
    • Run the build command like grunt build or npm run-script build.
  7. That's it for PL.editor repo! Let's publish to npm via npm publish command.
    • PS: this will publish the dist folder from your local and not from github.
    • You need to create an account in npm here.
    • Sign in using terminal: npm login
    • Enter your username, password and email
    • Run npm publish command
  8. Make a release using npm run-script create-release
    • This will automatically create a pretty release mentioning the authors and their PR's. More details about this command here.
    • Well done till now, you have successfully published the changes to npm.
    • You may tweet about it :)
  9. Once published to npm, dependabot will make PR automatically in plots2 to upgrade the PL editor version in package.json.
  10. Assuming that proper versioning is done in PL.editor, then for minor and patch releases all checks will pass 💯
  11. For major releases, check into the dependabot branch or make a new PR having package upgrade changes.
    After manually changing the version in package.json, make sure to run npm install -> this will install the latest PL editor to your local node_modules folder.
    Now make sure that the breaking change is also added to your PR like
  12. syntax change, or
  13. if the id of some div is changed in PL.editor then the same change has to be done in rich.html.erb file.
  14. All done now 🎉 , make sure this PR is reviewed and then the integration is complete .
  15. Once this PR is merged to plots2, in the next production release by Jeff and Icarito the changes will be LIVE :)
  16. Celebrate on twitter? Share your username and describe your contribution in a single sentence, and @publiclab will give you a shoutout! 😍

Week of Deployment Lead:


I did this Help out by offering feedback!


People who did this (0)

None yet. Be the first to post one!


0 Comments

Login to comment.