Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [0.8.0] - 2026-04-19

### Added

- Add support for XFS filesystem on EBS volumes.

### Changed

- Update [easyto-assets](https://github.com/cloudboss/easyto-assets) to `v0.6.0`. This includes: a kernel configuration trimmed specifically for EC2 Nitro, new support for XFS, and version updates to zlib, OpenSSL, and OpenSSH.
- Update [easyto-init](https://github.com/cloudboss/easyto-init) to `v0.5.0`.

## [0.7.0] - 2026-04-17

### Added
Expand Down Expand Up @@ -98,6 +109,7 @@

Initial release

[0.8.0]: https://github.com/cloudboss/easyto/releases/tag/v0.8.0
[0.7.0]: https://github.com/cloudboss/easyto/releases/tag/v0.7.0
[0.6.0]: https://github.com/cloudboss/easyto/releases/tag/v0.6.0
[0.5.0]: https://github.com/cloudboss/easyto/releases/tag/v0.5.0
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ endif
DIR_RELEASE = $(DIR_OUT)/release

EASYTO_ASSETS_RELEASES = https://github.com/cloudboss/easyto-assets/releases/download
EASYTO_ASSETS_VERSION = v0.5.1
EASYTO_ASSETS_VERSION = v0.6.0
EASYTO_ASSETS_BUILD = easyto-assets-build-$(EASYTO_ASSETS_VERSION)
EASYTO_ASSETS_BUILD_ARCHIVE = $(EASYTO_ASSETS_BUILD).tar.gz
EASYTO_ASSETS_BUILD_URL = $(EASYTO_ASSETS_RELEASES)/$(EASYTO_ASSETS_VERSION)/$(EASYTO_ASSETS_BUILD_ARCHIVE)
Expand All @@ -31,7 +31,7 @@ EASYTO_ASSETS_RUNTIME = easyto-assets-runtime-$(EASYTO_ASSETS_VERSION)
EASYTO_ASSETS_RUNTIME_ARCHIVE = $(EASYTO_ASSETS_RUNTIME).tar.gz
EASYTO_ASSETS_RUNTIME_URL = $(EASYTO_ASSETS_RELEASES)/$(EASYTO_ASSETS_VERSION)/$(EASYTO_ASSETS_RUNTIME_ARCHIVE)
EASYTO_INIT_RELEASES = https://github.com/cloudboss/easyto-init/releases/download
EASYTO_INIT_VERSION = v0.4.1
EASYTO_INIT_VERSION = v0.5.0
EASYTO_INIT = easyto-init-$(EASYTO_INIT_VERSION)
EASYTO_INIT_ARCHIVE = easyto-init-$(EASYTO_INIT_VERSION).tar.gz
EASYTO_INIT_URL = $(EASYTO_INIT_RELEASES)/$(EASYTO_INIT_VERSION)/$(EASYTO_INIT_ARCHIVE)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ A template volume is used to render a mustache template to a file. This is a pse

`destination`: (Required, type _string_) - The mount destination. This may be a file or a directory depending on the configuration of the volume.

`fs-type`: (Conditional, type _string_) - Filesystem type of the device. Available types are `ext2`, `ext3`, `ext4`, and `btrfs`. The filesystem will be formatted on the first boot. Required for EBS volumes and ignored otherwise.
`fs-type`: (Conditional, type _string_) - Filesystem type of the device. Available types are `ext2`, `ext3`, `ext4`, `btrfs`, and `xfs`. The filesystem will be formatted on the first boot. Required for EBS volumes and ignored otherwise.

`group-id`: (Optional, type _int_, default is the value of `security.run-as-group-id`) - The group ID of the destination.

Expand Down
Loading