Releases: mutagen-io/mutagen
v0.18.0
Overview
This release adds support for one major feature (.dockerignore
syntax) and has been a long time coming in an effort to ensure the stability of that feature. It's finally time to release it and make way for more features, enhancements, and bug fixes.
.dockerignore
syntax
Mutagen's default ignore syntax is based on .gitignore
syntax, which differs not only syntactically from .dockerignore
, but also in terms of filesystem traversal behavior. Implementing support for .dockerignore
syntax was technically complex, but well worth the effort. This makes it easier for Docker and BuildKit users to align their tooling with Mutagen. To enable the new syntax, use the --ignore-syntax
flag with mutagen sync create
or use YAML configuration similar to the following:
sync:
defaults:
ignore:
syntax: docker
paths:
- ignore1
- ignore2
- ...
Note that Mutagen merely supports the same syntax as .dockerignore
files, but it won't read them from disk.
Changes
A full accounting of changes since v0.17.x can be found here. Notable changes include:
- Added support for
.dockerignore
-style ignore syntax - Improved executability preservation detection for FAT32 and ExFAT on macOS
- Improved the behavior of scan operations when preempted
- Improved support for unmarshaling from JSON in
pkg/api/models
- Improved various integration APIs
- Updated Go to 1.23.2
- Updated various dependencies
- Removed some internal assembly code on macOS that is now available upstream
- Fixed various CI issues when working with forks
- Updated various CI dependencies
- Various other typo and bug fixes
v0.18.0-rc3
NOTE: This is a pre-release version of Mutagen. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license). For a better experience, you may wish to use the latest stable release.
Mutagen maintains backward compatibility between releases, but sessions created with pre-release versions are not guaranteed to be compatible with final releases. Please wait for the final release if you want to be sure that you can avoid recreating sessions.
Changes
This release includes the following changes from v0.18.0-rc2:
- Fixed an issue that prevented publishing of the Mutagen sidecar images
v0.18.0-rc2
NOTE: This is a pre-release version of Mutagen. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license). For a better experience, you may wish to use the latest stable release.
Mutagen maintains backward compatibility between releases, but sessions created with pre-release versions are not guaranteed to be compatible with final releases. Please wait for the final release if you want to be sure that you can avoid recreating sessions.
Changes
This release includes the following changes from v0.18.0-rc1:
- Improved filesystem behavior probing for FAT32 and ExFAT on macOS
- Fixed
pkg/api/models
types to fully support decoding from JSON - Updated to Go 1.23.2
- Updated assorted Go dependencies
- Removed custom assembly code on macOS
- Updated to Alpine 3.20 base images
- Updated CI runners and dependencies
- Fixed various CI quirks
v0.18.0-rc1
NOTE: This is a pre-release version of Mutagen. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license). For a better experience, you may wish to use the latest stable release.
Mutagen maintains backward compatibility between releases, but sessions created with pre-release versions are not guaranteed to be compatible with final releases. Please wait for the final release if you want to be sure that you can avoid recreating sessions.
Changes
This release includes the following changes from v0.18.0-beta2:
- Updated to Go 1.22.2
- Updated assorted Go dependencies
- Improved scan preemption when using recursive watching
v0.17.6
v0.18.0-beta2
NOTE: This is a pre-release version of Mutagen. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license). For a better experience, you may wish to use the latest stable release.
Mutagen maintains backward compatibility between releases, but sessions created with pre-release versions are not guaranteed to be compatible with final releases. Please wait for the final release if you want to be sure that you can avoid recreating sessions.
Changes
This release includes the following changes from v0.18.0-beta1:
- Updated to Go 1.21.6
- Updated assorted Go dependencies
- Removed
license
commands (which are no longer required)
v0.17.5
v0.18.0-beta1
NOTE: This is a pre-release version of Mutagen. It should not be used on production or mission-critical systems. Use on any system is at your own risk (please see the license). For a better experience, you may wish to use the latest stable release.
Mutagen maintains backward compatibility between releases, but sessions created with pre-release versions are not guaranteed to be compatible with final releases. Please wait for the final release if you want to be sure that you can avoid recreating sessions.
Changes
Final release notes and documentation will be issued when v0.18.0 is released.
This release is primarily focused on updating dependencies and adding support for .dockerignore
-style ignore syntax.
The .dockerignore
-style ignore syntax can be enabled on the command line with:
mutagen sync create --ignore-syntax=docker ...
Or in Mutagen YAML configuration with:
sync:
sessionname: # (or "defaults")
ignore:
syntax: docker
The default ignore syntax is still Mutagen's .gitignore
-based syntax. Ignore syntax can only be set at the session level, it can't be set on a per-endpoint basis.
v0.17.4
v0.17.3
Changes
This release includes the following changes from v0.17.2:
- Updated to Go 1.20.11
- Go 1.20.11 contains fixes for CVE-2023-45283 and CVE-2023-45284, which could affect Mutagen users
- Updated assorted dependencies