From 120a867ad2bf2b5305ff1169ecfb81ace826530b Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Mon, 7 Mar 2022 15:20:06 -0500 Subject: [PATCH] Mark 0.0.10 (#88) # 0.0.10 / 2022-03-07 ### Added - Add support for pages in event repos - Add the `ctf pages install` command that looks for markdown and html files with frontmatter in a special pages folder - Add `healthcheck` key in `challenge.yml` to specify a healthcheck script - Add `ctf challenge healthcheck [challenge_name]` - Add `ssl_verify` in the `.ctf/config` file to support SSL verification disabling. `ssl_verify` can be `true` or `false` or a string (specifying the trusted SSL certificates) - Adds a `--no-git` option to `ctf init` to skip git repo creation in event folder ### Changed - Allow empty string in CTFd URL and CTFd access token values for `ctf init` - `ctf init` will not attempt to create git repos when the event folder is in a git repo already - `ctf init ` can now be used to create the event folder instead of creating the folder beforehand ### Fixed - Fix issue in `ctf challenge add` where challenges weren't being added to `.ctf/config` - Fix issue where plugins couldnt be installed if only pip3 was available --- CHANGELOG.md | 22 ++++++++++++++++++++++ ctfcli/__init__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb4446..5f1a126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +# 0.0.10 / 2022-03-07 + +### Added + +- Add support for pages in event repos + - Add the `ctf pages install` command that looks for markdown and html files with frontmatter in a special pages folder +- Add `healthcheck` key in `challenge.yml` to specify a healthcheck script + - Add `ctf challenge healthcheck [challenge_name]` +- Add `ssl_verify` in the `.ctf/config` file to support SSL verification disabling. `ssl_verify` can be `true` or `false` or a string (specifying the trusted SSL certificates) +- Adds a `--no-git` option to `ctf init` to skip git repo creation in event folder + +### Changed + +- Allow empty string in CTFd URL and CTFd access token values for `ctf init` +- `ctf init` will not attempt to create git repos when the event folder is in a git repo already +- `ctf init ` can now be used to create the event folder instead of creating the folder beforehand + +### Fixed + +- Fix issue in `ctf challenge add` where challenges weren't being added to `.ctf/config` +- Fix issue where plugins couldnt be installed if only pip3 was available + # 0.0.9 / 2021-08-06 ### Added diff --git a/ctfcli/__init__.py b/ctfcli/__init__.py index ae5ad15..04a74e3 100644 --- a/ctfcli/__init__.py +++ b/ctfcli/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.0.9" +__version__ = "0.0.10" __name__ = "ctfcli"