Skip to content

Commit 120a867

Browse files
authored
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 <folder>` 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
1 parent 43be702 commit 120a867

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
# 0.0.10 / 2022-03-07
4+
5+
### Added
6+
7+
- Add support for pages in event repos
8+
- Add the `ctf pages install` command that looks for markdown and html files with frontmatter in a special pages folder
9+
- Add `healthcheck` key in `challenge.yml` to specify a healthcheck script
10+
- Add `ctf challenge healthcheck [challenge_name]`
11+
- 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)
12+
- Adds a `--no-git` option to `ctf init` to skip git repo creation in event folder
13+
14+
### Changed
15+
16+
- Allow empty string in CTFd URL and CTFd access token values for `ctf init`
17+
- `ctf init` will not attempt to create git repos when the event folder is in a git repo already
18+
- `ctf init <folder>` can now be used to create the event folder instead of creating the folder beforehand
19+
20+
### Fixed
21+
22+
- Fix issue in `ctf challenge add` where challenges weren't being added to `.ctf/config`
23+
- Fix issue where plugins couldnt be installed if only pip3 was available
24+
325
# 0.0.9 / 2021-08-06
426

527
### Added

ctfcli/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.9"
1+
__version__ = "0.0.10"
22
__name__ = "ctfcli"

0 commit comments

Comments
 (0)