mirror of
https://github.com/offen/website.git
synced 2024-11-25 02:10:26 +01:00
layout updates for articles
This commit is contained in:
parent
640956dc41
commit
f0ebec7d63
@ -16,7 +16,7 @@ After a lot of experimenting, taking detours and having unanticipated revelation
|
||||
|
||||
Yet, onboarding users onto a product that is still being developed and that will stay pretty volatile in the near future needs a thorough plan so you do not burn and churn your early adopters by locking them into buggy software without an upgrade path. At the same time, you do not want to lose the velocity and flexibility of an early stage product, enabling you to iterate fast and add well architected features of real value.
|
||||
|
||||
While there is lots of theory and writing about how to version and release software that is already established, the way to get there is mostly uncharted territory and has developers figure this journey out for themselves over and over again. In this post we try to collect our considerations, options and conclusions when trying to define **how we want to handle the versioning of Offen on its way from an alpha stage product to a stable v1.0**.
|
||||
While there is lots of theory and writing about how to version and release software that is already established, the way to get there is mostly uncharted territory and has developers figure this journey out for themselves over and over again. In this post we try to collect our considerations, options and conclusions when trying to define *how we want to handle the versioning of Offen on its way from an alpha stage product to a stable v1.0*.
|
||||
|
||||
---
|
||||
|
||||
@ -26,19 +26,19 @@ In the earliest stage of any project, you will still be figuring out the interfa
|
||||
|
||||
It's interesting to think about the opportunities this gives you, especially when you consider that they won't last forever. Right now, you still can easily refactor everything in any way you want it to look like. If something in your codebase feels awkward, go refactor and try to find that interface that your application should expose now. Venturing into large refactors because something just doesn't "feel right" might feel counter intuitive when you're at an early stage, and want to get features out of the door and users on board, but large changes will never be as easy for you as they are right now. Once you have users that rely on an established versioning scheme, any refactor will come with a significant toll of compatibility layers and migration scripts. And these will hurt you just like your users.
|
||||
|
||||
The only decision that affects the outside world at this point is the following: **how do you communicate the volatile nature of your project to the outside world**? Do you supply packaged releases at all, or do potential users need to build the software from source if they want to use it? In case you do supply releases, a commit-based versioning scheme is probably fine. If people are courageous enough to start using what you are building already, it's best for both parties if you're clear about what you are up to.
|
||||
The only decision that affects the outside world at this point is the following: *how do you communicate the volatile nature of your project to the outside world?* Do you supply packaged releases at all, or do potential users need to build the software from source if they want to use it? In case you do supply releases, a commit-based versioning scheme is probably fine. If people are courageous enough to start using what you are building already, it's best for both parties if you're clear about what you are up to.
|
||||
|
||||
<img class="smaller-image" alt="Lots of ways to break your software" src="/theme/images/offen-blog-0020-untoldRoads-A.png"/>
|
||||
<img class="smaller-image mt4" alt="Lots of ways to break your software" src="/theme/images/offen-blog-0020-untoldRoads-A.png"/>
|
||||
|
||||
## Lots of ways to break your software
|
||||
|
||||
Another thing you will need to think about before you can even start versioning your software are the interfaces you expect your users to use, and those that your users will actually use. Just because you do not document a method of your library, it doesn't necessarily mean it will not be used in the wild. And just because your database migration script assumes a well defined set of tables in the application database, it doesn't mean some user might have started storing other data in there. Applications like Offen will have different constraints than libraries or developer tools do. It's important to know if **you need to interface with data, code or humans** as all of these interfaces come with their own set of constraints.
|
||||
Another thing you will need to think about before you can even start versioning your software are the interfaces you expect your users to use, and those that your users will actually use. Just because you do not document a method of your library, it doesn't necessarily mean it will not be used in the wild. And just because your database migration script assumes a well defined set of tables in the application database, it doesn't mean some user might have started storing other data in there. Applications like Offen will have different constraints than libraries or developer tools do. It's important to know if *you need to interface with data, code or humans* as all of these interfaces come with their own set of constraints.
|
||||
|
||||
Steering the code being written and the interfaces exposed into a direction where its usage is as unambiguous as possible will pay off when it comes to knowing what you can actually break with a release. If you explicitly consider something to be unstable and internal, communicating this clearly will be of great help to anyone who's trying to use your product or build upon it.
|
||||
|
||||
## When do you even start versioning?
|
||||
|
||||
If you develop software, you want others to use it. If you're a user, you want your software to be reliably versioned and updated. This means that at some point, a project will have to start versioning, and its **users will start to project their expectations onto the version numbers being applied**.
|
||||
If you develop software, you want others to use it. If you're a user, you want your software to be reliably versioned and updated. This means that at some point, a project will have to start versioning, and its *users will start to project their expectations onto the version numbers being applied*.
|
||||
|
||||
When exactly you choose to start doing this depends on what you are focusing on.
|
||||
|
||||
@ -50,10 +50,10 @@ Depending on your product, it might not make sense to use it before all of the f
|
||||
|
||||
Alternatively - assuming your product allows you to do so - you might also want to start shipping way before you are feature complete, establish a userbase, and gain understanding on what these users are doing with your product. These insights come with a price: you need to start versioning. Users that don't have clear and documented ways of upgrading their software without any unexpected surprises stop being users once the version they are using stops being on par with what both you and others are offering. If it's just as easy to install something else as it would be to upgrade to a newer version, why should your users stick?
|
||||
|
||||
Just like when working without any approach to versioning **communicating what you are planning to do now that you started versioning** is key. Do you already know how often are you going to release new versions? Where can users find migration and update instructions? If you plan to release breaking versions without an upgrade path: will you backport and patch possible security issues in older versions?
|
||||
Just like when working without any approach to versioning *communicating what you are planning to do now that you started versioning* is key. Do you already know how often are you going to release new versions? Where can users find migration and update instructions? If you plan to release breaking versions without an upgrade path: will you backport and patch possible security issues in older versions?
|
||||
|
||||
<div class="flex justify-end pb3">
|
||||
<img class="smaller-image" alt="Detour" src="/theme/images/offen-blog-0020-untoldRoads-B.png"/>
|
||||
<img class="smaller-image mt4" alt="Detour" src="/theme/images/offen-blog-0020-untoldRoads-B.png"/>
|
||||
</div>
|
||||
|
||||
## Detour: What's in a version number
|
||||
@ -74,13 +74,13 @@ Another important factor to consider here is which target audience you are actua
|
||||
|
||||
### SemVer and early stage software
|
||||
|
||||
For what their spec calls "initial development", SemVer uses `0.x.x` versions that come with no guarantees at all, which in the scope of this article doesn't leave us with much but the underlying concepts of **breaking changes, features and patches**. Certain scenarios might want to map these to a pre-v1 scheme or at least adopt the same vocabulary when communicating about the changes included in a new release in your changelog.
|
||||
For what their spec calls "initial development", SemVer uses `0.x.x` versions that come with no guarantees at all, which in the scope of this article doesn't leave us with much but the underlying concepts of *breaking changes, features and patches*. Certain scenarios might want to map these to a pre-v1 scheme or at least adopt the same vocabulary when communicating about the changes included in a new release in your changelog.
|
||||
|
||||
---
|
||||
|
||||
## Flexibility vs Stability
|
||||
|
||||
Moving towards a v1.0 every slightly larger project will find itself oscillating between these two goals. What makes decisions in this regard even harder is the fact that both opposites are of equal importance to your project. **Adding new features to a product requires flexibility and stability** at the same time.
|
||||
Moving towards a v1.0 every slightly larger project will find itself oscillating between these two goals. What makes decisions in this regard even harder is the fact that both opposites are of equal importance to your project. *Adding new features to a product requires flexibility and stability* at the same time.
|
||||
|
||||
A common approach towards solving this antagonism is the introduction of budgets for both sides. Maybe each iteration has a dedicated budget for breakage and experimenting, just like it has a budget for areas that remain stable and will only change when their interfaces can be guaranteed to stay the same. Maybe every other iteration will focus on stability while the alternating ones will allow for breakage and experimenting. The latter is a concept adopted early on by the Node.js project where an odd version number will signal "punk rock", i.e. unstable and rapid progress, and even version numbers will signal "Fortune 500", i.e. stability.
|
||||
|
||||
@ -88,17 +88,17 @@ Whatever approach a project picks, finding a suitable way of balancing these two
|
||||
|
||||
## Migration plans and pains
|
||||
|
||||
Sometimes, breakage you want to or have to introduce, can be cushioned softly when you are able to supply **scripts and tooling for users** to adjust their setup so that is is compatible with a new version.
|
||||
Sometimes, breakage you want to or have to introduce, can be cushioned softly when you are able to supply *scripts and tooling for users* to adjust their setup so that is is compatible with a new version.
|
||||
|
||||
If you are working on a library and its public API has changed, it's sometimes possible to supply users with automated codemods that adjust the usage of deprecated methods so that they match the updated methods. This approach is heavily utilized by for example the React Library. The maintainers are doing a fantastic job in maintaining backwards compatibility and progress. API changes are planned and announced early on, and come with user friendly deprecation messages and [automated codemods](https://github.com/reactjs/react-codemod) that can update your codebase for you.
|
||||
|
||||
The same can be done for configuration changes. If an update requires new or changed settings, a script that prompts for the new values and updates the system accordingly will make a great incentive for upgrading.
|
||||
|
||||
<img class="smaller-image" alt="Eat your own dogfood" src="/theme/images/offen-blog-0020-untoldRoads-C.png"/>
|
||||
<img class="smaller-image mt4" alt="Eat your own dogfood" src="/theme/images/offen-blog-0020-untoldRoads-C.png"/>
|
||||
|
||||
## Eat your own dogfood
|
||||
|
||||
While this is a scenario you cannot easily create just for its own sake, a setup where **you are a user of your own product** - a.k.a. dogfooding - will be pretty insightful in this context.
|
||||
While this is a scenario you cannot easily create just for its own sake, a setup where *you are a user of your own product* - a.k.a. dogfooding - will be pretty insightful in this context.
|
||||
|
||||
You as a user will certainly cover only a single use case, yet this one use case will already give you hints on how hard or how easy it is to adopt a new release. Does the effort invested in upgrading justify the improvements made? If you don't feel like it's a good idea to upgrade, other users probably won't do it either.
|
||||
|
||||
@ -106,7 +106,7 @@ Keep in mind though that when you represent one usecase, the first hand knowledg
|
||||
|
||||
## 1.0 like you mean it
|
||||
|
||||
It's impossible to tell how your project will get to a v1.0, but it's very likely it will do so at some point. This will likely feel very good, but **putting that label onto a piece of software will come with certain expectations**.
|
||||
It's impossible to tell how your project will get to a v1.0, but it's very likely it will do so at some point. This will likely feel very good, but *putting that label onto a piece of software will come with certain expectations*.
|
||||
|
||||
If you can embrace v1.0 and all the new requirements it brings, they will allow the pace and mode you develop at to change and become more formalized. It makes it easier for yourself to prioritize future goals. It's also easier for external contributors to join something that has stabilized further. In case you feel this is what you want to do, go ahead and draft those release notes.
|
||||
|
||||
@ -127,23 +127,23 @@ Upgrade paths for our users will mostly be bound to the event and key data that
|
||||
|
||||
### Initial development
|
||||
|
||||
Right now, Offen is still in the stages of initial development. During this period we will **release an alpha version on each milestone** we hit. We invite users to start using Offen by deploying these releases (or by building any revision themselves), but we also need to make sure that while we are still in initial development, we will possibly **introduce breaking changes** or changes that are **hard to upgrade**.
|
||||
Right now, Offen is still in the stages of initial development. During this period we will *release an alpha version on each milestone* we hit. We invite users to start using Offen by deploying these releases (or by building any revision themselves), but we also need to make sure that while we are still in initial development, we will possibly *introduce breaking changes* or changes that are *hard to upgrade*.
|
||||
|
||||
### From v0.1 to v1.0
|
||||
|
||||
Once all features we deem necessary for Offen to be used in the wild are included, we are planning to continue as following: kicking off, we will release an officially supported **v0.1.0**.
|
||||
Once all features we deem necessary for Offen to be used in the wild are included, we are planning to continue as following: kicking off, we will release an officially supported *v0.1.0*.
|
||||
|
||||
Working our way from there to a v1.0 we will follow these principles:
|
||||
|
||||
- Bugfixes and new features that do not require any particular actions when upgrading other than replacing binaries will be released on a rolling basis and increment the **patch version**. This means deployment can be kept up to date by downloading and re-deploying new versions.
|
||||
- A new **minor version** is released in the following cases:
|
||||
- There is an upgrade path from the previous minor version, yet **it requires manual interaction** before upgrading. This might mean following instructions for changing configuration values supplied by us or running scripts against your installation that perform necessary updated.
|
||||
- The new version **contains a breaking change** that does not have an upgrade path. We hope this rarely happens, but we also need to guard against unforeseen changes, so it's probably a good idea to state the possibility of such a release happening upfront. Longterm quality of the product will benefit massively from keeping this option.
|
||||
- **Security related bugfixes will be backported to the previous minor version** (if it exists). This means that even if you cannot or do not want to upgrade to the next minor version, your application will stay safe in the near future. Note that these backports will stop once a deployment is two minor versions behind though.
|
||||
- Bugfixes and new features that do not require any particular actions when upgrading other than replacing binaries will be released on a rolling basis and increment the *patch version*. This means deployment can be kept up to date by downloading and re-deploying new versions.
|
||||
- A new *minor version* is released in the following cases:
|
||||
- There is an upgrade path from the previous minor version, yet *it requires manual interaction* before upgrading. This might mean following instructions for changing configuration values supplied by us or running scripts against your installation that perform necessary updated.
|
||||
- The new version *contains a breaking change* that does not have an upgrade path. We hope this rarely happens, but we also need to guard against unforeseen changes, so it's probably a good idea to state the possibility of such a release happening upfront. Longterm quality of the product will benefit massively from keeping this option.
|
||||
- *Security related bugfixes will be backported to the previous minor version* (if it exists). This means that even if you cannot or do not want to upgrade to the next minor version, your application will stay safe in the near future. Note that these backports will stop once a deployment is two minor versions behind though.
|
||||
|
||||
When releasing a **v1.0** we will have worked hard to have a good upgrade story for users of early versions, but we'll also spare you the fortune telling we'd have to do to predict when and how this is going to happen.
|
||||
When releasing a *v1.0* we will have worked hard to have a good upgrade story for users of early versions, but we'll also spare you the fortune telling we'd have to do to predict when and how this is going to happen.
|
||||
|
||||
We definitely do invite you to start experimenting with Offen right now and also to start using it in user-facing scenarios once we are at **v0.1.0**. Get in touch if you have feedback or need help with configuring, running or upgrading Offen.
|
||||
We definitely do invite you to start experimenting with Offen right now and also to start using it in user-facing scenarios once we are at *v0.1.0*. Get in touch if you have feedback or need help with configuring, running or upgrading Offen.
|
||||
|
||||
---
|
||||
|
||||
|
@ -53,9 +53,9 @@ DECORATE_CONTENT = {
|
||||
'[data-button="black"]': ['brd-cclr-mid-black', 'fnt-cclr-mid-black'],
|
||||
'a': ['link', 'b', 'dim'],
|
||||
'a:not([data-button])': ['gray'],
|
||||
'h2': ['f25', 'ma0', 'mb3', 'light-silver'],
|
||||
'h3': ['f5', 'normal', 'mt4', 'ma0', 'mb3', 'fnt-cclr-mid-black'],
|
||||
'h4': ['f5', 'normal', 'mt4', 'ma0', 'mb3'],
|
||||
'h2': ['f25', 'normal', 'mt4', 'mb0', 'mb3', 'light-silver'],
|
||||
'h3': ['f5', 'normal', 'mt4', 'mb0', 'mb3', 'fnt-cclr-mid-black'],
|
||||
'h4': ['f5', 'normal', 'mt4', 'mb0', 'mb3'],
|
||||
'h5': ['ma0'],
|
||||
'h6': ['f5', 'lh-solid', 'normal', 'ma0', 'mb3', 'light-silver'],
|
||||
'p': ['ma0', 'pb3'],
|
||||
|
@ -275,6 +275,7 @@ IMAGES
|
||||
.smaller-image {
|
||||
width: 200px;
|
||||
height: 109px;
|
||||
margin-bottom: -2rem;
|
||||
}
|
||||
/* Custom media query - extra small */
|
||||
@media only screen and (min-width: 30em) {
|
||||
|
Loading…
Reference in New Issue
Block a user