[2.5.7] - 2022-12-5 PR: #56
Fixes the scripts and workflows
[2.5.6] - 2022-12-5 PR: #55
Attempt to fix
[2.5.5] - 2022-12-5 PR: #54
Use node16
[2.5.4] - 2022-12-5 PR: #53
Update dependencies and use latest dolittle typescript packages
[2.5.3] - 2021-11-25 PR: #45
Trims the spaces around prerelease branch names after splitting on comma to allow specifying:
- name: Establish context
id: context
uses: dolittle/establish-context-action@v2
with:
prerelease-branches: legolas, gandalf
instead of:
- name: Establish context
id: context
uses: dolittle/establish-context-action@v2
with:
prerelease-branches: legolas,gandalf
- Trim spaces around prerelease branch names
[2.5.2] - 2021-5-18 PR: #41
The main purpose of this PR was to fix an issue we were having when we were releasing fixes while working on a new prerelease in a branch. So for example say we were working on 5.6.0-embeddings
while the latest release was on 5.5.2
. When we merged in a patch to master, the expected new version should be 5.5.3
, but was 5.6.0
.
Factored out the fetching of versions from CurrentVersionFinder
so that we can write some specs for it, wrote specs, and fixed the implementation. Also cleaned up some documentation to make it all the same (a few different styles floating around), and removed some unused code.
IVersionFetcher
and implementationGitHubTagsVersionFetcher
using existing code.- Specifications for
CurrentVersionFinder
CurrentVersionFinder
so that it disregards running prereleases when pulling in a normal release. Also found some other potential small issues that we have not encountered.