Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create and document a versioning and release strategy #248

Closed
11 tasks done
brettdh opened this issue Sep 4, 2020 · 0 comments · Fixed by #253
Closed
11 tasks done

Create and document a versioning and release strategy #248

brettdh opened this issue Sep 4, 2020 · 0 comments · Fixed by #253
Assignees

Comments

@brettdh
Copy link
Contributor

brettdh commented Sep 4, 2020

Motivation

The app has two components that we release:

  • The app that we publish in Apple/Google app stores
  • The over-the-air javascript-only updates that we publish to Expo

We need a strategy for versioning and releasing both of these, which should have the following properties:

  • We should be able to start using Conventional Commits and related tooling - e.g. standard-version and its expo plugin - to manage our releases (possibly after some upstream contributions of our own).
    • Alternative tooling would be fine too; these just seem like a good starting point
  • From information we track in our commits, we should be able to determine whether the change requires a new app store release
  • When we tag a new app store release, further expo bundle updates are published to a matching release channel
    • This ensures that existing users of versions older than the latest don't receive incompatible bundle updates
  • An about screen should be added to the app, identifying the app store version and the bundle commit hash
  • The version and commit sha should also be included when reporting errors to Sentry
  • The app store release process should be automated in CI, based on git tags and branches
  • We should be able to separate beta releases from production releases
    • This applies to both app store builds and bundle publishes

Simple approach that should work well:

  • Any semver release is a new app store version
  • Only major releases require a new expo release channel
  • Beta releases are simply new versions with a -beta.N tag, where N is the build number.

Relevant discussion on Expo developer forums

https://forums.expo.io/t/how-to-handle-releases-and-changelogs-with-conventional-commits/42611

Plan of action

Scope

  • For simplicity, this issue will include implementing the strategy as well as writing it down.
  • For this first attempt, I'm going to largely punt on the hard parts - see the unanswered questions in the discussion linked above - unless that discussion yields some obvious and simple next steps.
@brettdh brettdh added this to To do in v1.0 Release via automation Sep 7, 2020
@brettdh brettdh self-assigned this Sep 8, 2020
@brettdh brettdh moved this from To do to In progress in v1.0 Release Sep 8, 2020
v1.0 Release automation moved this from In progress to Done Dec 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
v1.0 Release
  
Done
Development

Successfully merging a pull request may close this issue.

1 participant