diff --git a/CHANGELOG.md b/CHANGELOG.md
index 709652730..b84534c16 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,26 @@
All notable changes to [**GZCTF**](https://github.com/GZTimeWalker/GZCTF) will be documented in this file.
+---
+## [0.18.4](https://github.com/GZTimeWalker/GZCTF/compare/v0.18.3..v0.18.4) - 2024-03-31
+
+### ⛰️ Features
+
+- use Dictionary for scoreboard item cache - ([332356](https://github.com/GZTimeWalker/GZCTF/commit/332356)) by **GZTime**
+- enhance searching and use string.Contains - ([43d215](https://github.com/GZTimeWalker/GZCTF/commit/43d215)) by **Steven He**
+
+### 🐛 Bug Fixes
+
+- cidr and dns config not being overwritten - ([37d9cb](https://github.com/GZTimeWalker/GZCTF/commit/37d9cb)) by **Steven He**
+
+### 🎨 Styling
+
+- pointer cursor when hover to link - ([7928fb](https://github.com/GZTimeWalker/GZCTF/commit/7928fb)) by **GZTime**
+
+### ⚙️ Miscellaneous Tasks
+
+- customize the GitHub Issues creation (#258) - ([039beb](https://github.com/GZTimeWalker/GZCTF/commit/039beb)) by **Aether Chen**
+
---
## [0.18.3](https://github.com/GZTimeWalker/GZCTF/compare/v0.18.2..v0.18.3) - 2024-03-25
diff --git a/docs/package.json b/docs/package.json
index 77dc61bb8..d640b01fd 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -1,6 +1,6 @@
{
"name": "gzctf-docs",
- "version": "0.18.3",
+ "version": "0.18.4",
"private": true,
"scripts": {
"dev": "next",
@@ -17,8 +17,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@types/node": "^20.11.30",
- "@types/react": "^18.2.69",
+ "@types/node": "^20.12.2",
+ "@types/react": "^18.2.73",
"typescript": "^5.4.3"
}
}
diff --git a/docs/pnpm-lock.yaml b/docs/pnpm-lock.yaml
index 798077e43..b7f744639 100644
--- a/docs/pnpm-lock.yaml
+++ b/docs/pnpm-lock.yaml
@@ -29,11 +29,11 @@ dependencies:
devDependencies:
'@types/node':
- specifier: ^20.11.30
- version: 20.11.30
+ specifier: ^20.12.2
+ version: 20.12.2
'@types/react':
- specifier: ^18.2.69
- version: 18.2.69
+ specifier: ^18.2.73
+ version: 18.2.73
typescript:
specifier: ^5.4.3
version: 5.4.3
@@ -94,7 +94,7 @@ packages:
react: '>=16'
dependencies:
'@types/mdx': 2.0.11
- '@types/react': 18.2.69
+ '@types/react': 18.2.73
react: 18.2.0
dev: false
@@ -419,8 +419,8 @@ packages:
resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
dev: false
- /@types/node@20.11.30:
- resolution: {integrity: sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==}
+ /@types/node@20.12.2:
+ resolution: {integrity: sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==}
dependencies:
undici-types: 5.26.5
dev: true
@@ -428,16 +428,12 @@ packages:
/@types/prop-types@15.7.12:
resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
- /@types/react@18.2.69:
- resolution: {integrity: sha512-W1HOMUWY/1Yyw0ba5TkCV+oqynRjG7BnteBB+B7JmAK7iw3l2SW+VGOxL+akPweix6jk2NNJtyJKpn4TkpfK3Q==}
+ /@types/react@18.2.73:
+ resolution: {integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==}
dependencies:
'@types/prop-types': 15.7.12
- '@types/scheduler': 0.16.8
csstype: 3.1.3
- /@types/scheduler@0.16.8:
- resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
-
/@types/unist@2.0.10:
resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
dev: false
diff --git a/src/GZCTF.Test/GZCTF.Test.csproj b/src/GZCTF.Test/GZCTF.Test.csproj
index 9af31beb4..82b9fbdae 100644
--- a/src/GZCTF.Test/GZCTF.Test.csproj
+++ b/src/GZCTF.Test/GZCTF.Test.csproj
@@ -6,7 +6,7 @@
false
true
Debug;Release;GenAPI
- 0.18.3
+ 0.18.4
True
4
diff --git a/src/GZCTF.sln b/src/GZCTF.sln
index 9f93b25dd..ba2a76860 100644
--- a/src/GZCTF.sln
+++ b/src/GZCTF.sln
@@ -40,6 +40,6 @@ Global
SolutionGuid = {643F6AF8-C22F-4E8E-9AB2-504B7C560CD6}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
- version = 0.18.3
+ version = 0.18.4
EndGlobalSection
EndGlobal
diff --git a/src/GZCTF/ClientApp/package.json b/src/GZCTF/ClientApp/package.json
index f872fc981..49966a113 100644
--- a/src/GZCTF/ClientApp/package.json
+++ b/src/GZCTF/ClientApp/package.json
@@ -1,6 +1,6 @@
{
"name": "gzctf-client",
- "version": "0.18.3",
+ "version": "0.18.4",
"private": true,
"type": "module",
"scripts": {
diff --git a/src/GZCTF/GZCTF.csproj b/src/GZCTF/GZCTF.csproj
index 21527cf08..45de022a1 100644
--- a/src/GZCTF/GZCTF.csproj
+++ b/src/GZCTF/GZCTF.csproj
@@ -2,7 +2,7 @@
net8.0
- 0.18.3.0
+ 0.18.4.0
GZ::CTF $(VITE_APP_GIT_NAME)-$(VITE_APP_GIT_SHA) build at $(VITE_APP_BUILD_TIMESTAMP)
enable
enable
@@ -18,7 +18,7 @@
http://localhost:63000
npm run dev -- --host
Debug;Release
- 0.18.3
+ 0.18.4
4
preview
True