2022-04-29 15:03:35 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 3.1.1. From the changelog:
- Fixes a bug where `mob clean` failed to delete an orphaned wip branch
because of unmerged commits.
|
2022-04-25 17:14:08 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 3.1.0. From the changelog:
- Add `mob clean` command that removes orphan wip branches that might be
a left over of someone else doing a `mob done`. This is especially
helpful when using a lot of feature branches. If you call `mob clean`
on an orphan wip branch, it will switch you to the base branch,
falling back to main/master if the base branch does not exist.
- The values `squash`, `no-squash` and `squash-wip` for MOB_DONE_SQUASH
can be set not only via env var, but now in the .mob configuration
file as well.
|
2022-04-13 09:51:02 by Benny Siegert | Files touched by this commit (106) | |
Log message:
Revbump all Go packages after go117 update
|
2022-03-28 17:27:17 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 3.0.0. From the changelog:
- **NEW** Mob will automatically open the last modified file of the
previous typist in your preferred IDE. Therefore, you need to set the
configuration option `MOB_OPEN_COMMAND` to a command which opens your
IDE. For example, the open command for IntelliJ is `idea %s`
- Add a Smiley face to Happy Collaborating message to make your day :)
|
2022-03-07 10:14:13 by Benny Siegert | Files touched by this commit (106) | |
Log message:
Revbump all Go packages after go117 update
|
2022-02-27 18:51:24 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 2.6.0. From the changelog:
- **NEW** Allow keeping manual commits while squashing all wip commits
by finishing a mob-session with `mob done --squash-wip`.
- Removed experimental command `mob squash-wip` in favor of new `mob
done --squash-wip`.
- Added missing configuration option `MOB_WIP_BRANCH_PREFIX` for
`.mob` file.
|
2022-02-18 18:55:40 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 2.5.0. From the changelog:
- Enable git hooks with `MOB_GIT_HOOKS_ENABLED=true`. By default, this
option is false and no git hooks such as `pre-commit` or `pre-push`
are triggered via mob itself.
|
2022-02-13 20:24:33 by Benny Siegert | Files touched by this commit (106) | |
Log message:
Revump all Go packages after go117 update
|
2022-02-13 01:48:39 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 2.4.0. From the changelog:
- As an alternative to the environment variables, you can configure the
mob tool with a `.mob` file in your home directory. For an example
have a look at `mob-configuration-example` file.
- As an alternative to the environment variables, you can configure the
mob tool with a `.mob` file in your git project root directory. The
configuration options `MOB_VOICE_COMMAND`, `MOB_VOICE_MESSAGE`,
`MOB_NOTIFY_COMMAND`, and `MOB_NOTIFY_MESSAGE` are disabled for the
project specific configuration to prevent bash injection attacks.
Thanks to @vrpntngr & @hollesse making this release possible as part
of the @INNOQ Hands-On Event, February 2022.
|
2022-01-30 21:27:52 by Amitai Schleier | Files touched by this commit (2) |
Log message:
Update to 2.3.0. From the changelog:
- With `export MOB_TIMER_ROOM_USE_WIP_BRANCH_QUALIFIER=true` the room
name is automatically derived from the value you passed in via the
`mob start --branch <branch>` parameter.
|