Skip to content

Latest commit

 

History

History
603 lines (315 loc) · 29.8 KB

CHANGELOG.md

File metadata and controls

603 lines (315 loc) · 29.8 KB

0.21.1-beta.0 (2020-09-08)

Bug Fixes

  • setup: add --tag to publish command in generated config (#916) (53121e2)
  • trigger: replace yarn publish with npm publish (#919) (66149dc)

0.21.0 (2020-08-24)

Features

0.20.1 (2020-06-22)

Bug Fixes

  • setup: improve GitHub Actions flow made with (#904) (066ff50)

0.20.0 (2020-06-16)

BREAKING CHANGE

BREAKING CHANGE

From this version, mergeStrategy no longer exists.

If you don't know what it is,

Make sure you run shipjs trigger only on the branches you've specified.

If you have a CircleCI config like the following:

version: 2
jobs:
  shipjs_trigger:
    docker:
      - image: "circleci/node:latest"
    steps:
      - checkout
      - run:
          name: Install
          command: yarn install
      - run:
          name: Triggering Ship.js to Release
          command: yarn shipjs trigger
workflows:
  version: 2
  release_if_needed:
    jobs:
      - shipjs_trigger

then, modify the last part like the following:

workflows:
  version: 2
  release_if_needed:
    jobs:
      - shipjs_trigger:
          filters:
            branches:
              only:
                - master # or whatever branch you'd like (normally your base branch)

This ensures shipjs trigger runs only on the specified branches.

If you were using mergeStrategy,

Ship.js used to have toSameBranch and toReleaseBranch strategies. Now they're gone and it only works like toSameBranch strategy. As explained above, you need to specify branches where to run shipjs trigger, though.

If you were using toReleaseBranch, there is a workaround. You can read Release Snapshot to achieve what you used to do.

Bug Fixes

  • prepare: return correct releaseType (#885) (7d918f6)
  • setup: get correct remote branches (#883) (551dde0)
  • setup: update circleci node version to v12 (#884) (6579294)
  • setup: use current branch when there is no remote at setup flow (#881) (5a0e152)

0.19.0 (2020-05-12)

Features

  • force push to protected branch with explicit config (#813) (3647853)

0.18.4 (2020-05-08)

Bug Fixes

  • actions: fix ejs syntax (#801) (8055a9f)
  • release: push to correct branch in toReleaseBranch strategy (#803) (1367315)

0.18.3 (2020-05-04)

Bug Fixes

  • actions: add fetch-depth and git fetch (#778) (994e4ff)
  • deps: update dependency shelljs to v0.8.4 (#776) (b70fc24)
  • release: skip running publishCommand if nullish (#793) (eb62c8d)

0.18.2 (2020-04-07)

Bug Fixes

  • prepare: fix wrong comparison url in the PR summary when getTagName is overridden in ship.config.js (#753) (4a40920)

0.18.1 (2020-04-03)

Bug Fixes

  • deps: update dependency prettier to v2 (#732) (96d6ff2)
  • prepare: respect custom tag name when getting a revision range (#751) (a1baa93)

0.18.0 (2020-03-17)

Bug Fixes

  • setup: use github-actions[bot] name and email for generated pull requests (#719) (ea4571e)

Features

  • prepare: add a new hook getNextVersion (#724) (21cf827)

0.17.0 (2020-03-06)

BREAKING CHANGE

BREAKING CHANGE

This version introduces some breaking changes.

  • In your ship.config.js, rename pullRequestReviewer to pullRequestReviewers (which accepts only an array of strings).

  • In your ship.config.js, rename pullRequestTeamReviewer to pullRequestTeamReviewers (which accepts only an array of strings).

  • releaseStart for Slack message has been removed. If you'd like to have it back, please create an issue and let's discuss.

  • The default value of testCommandBeforeRelease is now undefined. It used to be ({ isYarn }) => isYarn ? 'yarn test' : 'npm run test'. This change assumes many of you already run tests with CI services when you create pull requests. With the previous config, Ship.js unnecessarily ran tests before release. If you'd like to have it back, add some config like the following:

testCommandBeforeRelease: ({ isYarn }) => isYarn ? 'yarn test' : 'npm run test',

Bug Fixes

  • setup: do not write ship.config.js if not necessary (#705) (82f8cbc)

  • setup: fix wrong config(packagesToBump, packagesToPublish) for monorepo (#701) (0590a38)

  • clean up reviewer related configs (#707) (833d684)

  • allow @(a|b|c) syntax for packagesToBump and packagesToPublish (#702) (de9083c)

  • remove releaseStart hook for slack message (#703) (2a9502b)

  • create CHANGELOG if missing (#697) (72cb4ec)

  • empty testCommandBeforeRelease by default (#696) (34753b0)

  • shipjs-lib: exclude dependencies from final bundle (#651) (f6ec4cf)

  • check nullable value for reviewers (#709) (df7c0be)

0.16.1 (2020-03-03)

Bug Fixes

0.16.0 (2020-02-25)

Bug Fixes

Features

  • error: tell user where to create a GitHub token (#665) (901fcd8)

0.15.0 (2020-02-03)

Features

shouldPrepare

default: undefined

// example
shouldPrepare: ({
                  commits,
                  nextVersion,
                  releaseType,
                  releaseTag,
                  commitNumbersPerType,
               }) => { /* ... */ }

This is a lifecycle hook where you can decide whether or not to proceed with the preparation.

Read the guide to learn more about the hook.

0.14.2 (2020-01-27)

Bug Fixes

0.14.1 (2020-01-22)

Bug Fixes

releaseType

The following shows how releaseType is determined.

normal cases

  • 1.2.3 -> 2.0.0: major
  • 1.2.3 -> 1.3.0: minor
  • 1.2.3 -> 1.2.4: patch

next version has a tag

  • 1.2.3 -> 1.2.4-alpha.0: prerelease
  • 1.2.4-alpha.0 -> 1.2.4-alpha.1: prerelease

version with a tag -> version without one

  • 1.2.4-alpha.0 -> 1.2.4: patch
  • 1.2.4-alpha.0 -> 1.2.5: patch
  • 1.2.4-alpha.0 -> 1.3.0: minor
  • 1.2.4-alpha.0 -> 2.0.0: major
  • 1.3.0-alpha.0 -> 1.3.0: minor Just like normal cases, the new version decides the releaseType.

0.14.0 (2020-01-14)

Bug Fixes

  • release: add version in afterPublish hook (#608) (76c5591)
  • action: pin GitHub Action versions (#612) (b5e576a)
  • action: replace switch with build in checkout (#602) (ef5f8b9)
  • slack: use tag name instead of release tag (#609) (f183425)

Features

  • prepare: provide a config to assign team as reviewer (#619) (14ebf38)

0.13.1 (2019-12-31)

Bug Fixes

  • trigger: fix a bug it threw an exception at finished step (#581) (eb60e56)

0.13.0 (2019-12-31)

Bug Fixes

  • github-actions: fix image name (#557) (33f710c)
  • replace GH_TOKEN with GITHUB_TOKEN (#568) (835e26f)
  • prepare: throw with --yes when git tag is missing (#570) (cee5f35)

Features

  • prepare: add --commit-from option (#572) (041d3d9)
  • release: notify GitHub release url instead of CHANGELOG (#555) (c017067), closes #506

0.12.1 (2019-12-24)

Bug Fixes

  • setup: add SLACK_INCOMING_HOOK env for all GitHub Actions (#550) (dbdd919)
  • setup: don't use escape for config serializion (#549) (59b802d)

0.12.0 (2019-12-20)

Features

  • setup: add github actions as CI option (#502) (923cc87)

0.11.3 (2019-12-17)

Bug Fixes

  • drop conventional-changelog-cli and use its node library instead (#525) (430c303)

0.11.2 (2019-12-04)

Bug Fixes

prepare

  • add missing pr url to slack message (#499) (fa1e654)
  • make versionUpdated and beforeCommitChanges undefined by default (#495) (d9a4c51)

trigger

  • wrong release content due to wrong regexp (#484) (ba9588a)

setup

0.11.1 (2019-12-01)

Bug Fixes

prepare

  • ask commit range when tag is missing (#471) (f659c34)
  • clean up remote origin-with-token after git push (#479) (c81d247)
  • fetch tags before figuring out next version (#468) (045bbc0)
  • update changelog based on commit range (#473) (9841f25)
  • update PR message with publish command (#467) (18cc7e4)

trigger

setup

  • show master as a default branch when there is no remote yet (#466) (f079ba5)

0.11.0 (2019-11-27)

NOTICE

From 0.11.0, GITHUB_TOKEN is required as an environment variable for Ship.js to work.

Please refer to the guide.

Bug Fixes

  • check if origin-with-token already exists on prepare command (#455) (ce296a6)
  • create github release with rest api instead of hub (#458) (0bfeda6)
  • create pull request with rest api instead of hub (#456) (9423f11)
  • guide users to have GITHUB_TOKEN (#460) (b3ae436)
  • remove hub (#459) (cfd4b2f)

Features

0.10.0 (2019-11-26)

Bug Fixes

  • deprecate --first-release and --release-count at shipjs prepare (#447) (d46d83f)
  • pin dependency at shipjs setup (#446) (6560b9f)
  • getChangelog: wrong argument name (#448) (e378e06)

Features

  • releaseType: expose at hooks ("major", "minor", ...) (#441) (c855dbd)

0.9.0 (2019-11-25)

Bug Fixes

  • update path to conventional-changelog binary (#425) (75d9994)

Features

0.8.2 (2019-11-08)

Bug Fixes

  • continue release even if there's no conventional commit (#405) (70fb2ec)
  • fix hubConfigured for GitHub Actions (#393) (635ab7b)

0.8.1 (2019-11-05)

Bug Fixes

0.8.0 (2019-10-25)

Features

0.7.1 (2019-10-21)

Bug Fixes

  • skip creating a release at github when hub cli is not found (#353) (c408a00)

0.7.0 (2019-10-21)

Bug Fixes

Features

  • create GitHub releases (#311) (f1e4e77)
    • This is automatically done and uses the changelog as content of release.
  • upload assets to GitHub release (#334) (fcf2807)
    • At ship.config.js, You can configure releaeses.assetsToUpload. More details in configuration will come soon.

BREAKING CHANGE

BREAKING CHANGE

It's a breaking change but haven't bumped the major version since it's still in beta.

Please bear with any inconvenience.

  • replace monorepo.readVersionFrom with monorepo.mainVersionFile (#350) (107255a), (#351) (98617b4)
    • Now Ship.js updates the version at monorepo.mainVersionFile. With monorepo.readVersionFrom, it didn't update the file itself.

0.6.0 (2019-10-04)

Bug Fixes

  • don't display steps for slack when there's no slack config (#294) (eb1ab44)
  • fix pull request url in slack message (#301) (f89ba1d)

Features

  • add beforePublish and afterPublish hook (#293) (0de5d68)

0.5.5 (2019-10-01)

Bug Fixes

  • exit with 0 when there's nothing to release (#283) (3ef15fa)

0.5.4 (2019-09-25)

0.5.3 (2019-09-24)

0.5.2 (2019-09-24)

Bug Fixes

  • change formatCommitMessage and introduce formatPullRequestTitle (#270) (f21e167)

0.5.0 (2019-09-08)

Bug Fixes

  • add monorepo config (#246) (744cfc4)
  • fix a bug where it couldn't check correctly if hub is configured (#241) (c228772)
  • git push with upstream specified (#206) (ef5eccd)
  • print error message when hub doesn't exist (#205) (9ba45ff)
  • push to git with GITHUB_TOKEN (#234) (a39e7ee)
  • rename release command to trigger (#236) (3cbedb2)
  • throw when hub is installed but not configured (#208) (a4c769c)

Features

0.4.0 (2019-08-20)

Bug Fixes

Features

0.3.4 (2019-08-20)

0.3.2 (2019-08-18)

Bug Fixes

0.3.1 (2019-08-17)

Bug Fixes

  • ignore commits out of convention instead of throwing (#176) (b6fc850)

0.3.0 (2019-08-17)

Bug Fixes

  • deps: update dependency inquirer to v6.5.1 (#154) (040d722)

Features

0.2.0 (2019-08-07)

Bug Fixes

Features

  • reviewer: add config to assign reviewer when creating PR (#139) (4b7b74f)

0.1.0 (2019-08-02)

Initial Release