Skip to content

Commit 4a3abb8

Browse files
phmatrayclaude
andcommitted
chore: update GitHub Actions workflow and add generated changelogs
- Update continuous.yml to use build.cmd (generated by NUKE) - Add generated CHANGELOG.md files to project directories - Update main CHANGELOG.md with latest changes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3763081 commit 4a3abb8

File tree

4 files changed

+570
-7
lines changed

4 files changed

+570
-7
lines changed

.github/workflows/continuous.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,31 +37,26 @@ jobs:
3737
name: ubuntu-latest
3838
runs-on: ubuntu-latest
3939
steps:
40-
- name: Check out repository
41-
uses: actions/checkout@v4
40+
- uses: actions/checkout@v4
4241
with:
4342
fetch-depth: 0
44-
4543
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
4644
uses: actions/cache@v4
4745
with:
4846
path: |
4947
.nuke/temp
5048
~/.nuget/packages
5149
key: ${{ runner.os }}-${{ hashFiles('global.json', '**/*.csproj') }}
52-
5350
- name: 'Run: Continuous'
54-
run: ./build.sh Continuous
51+
run: ./build.cmd Continuous
5552
env:
5653
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
5754
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58-
5955
- name: 'Publish: test-results'
6056
uses: actions/upload-artifact@v4
6157
with:
6258
name: test-results
6359
path: test-results
64-
6560
- name: 'Publish: artifacts'
6661
uses: actions/upload-artifact@v4
6762
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ All notable changes to this project will be documented in this file.
88

99
- Add .NET 8 support alongside .NET 9 ([09eaf3a](https://github.com/phmatray/FormCraft/commit/09eaf3a128fd1600871edb6669f7630b0ce0a021))
1010

11+
### 🐛 Bug Fixes
12+
13+
- Integrate changelog generation into NUKE build system ([1928638](https://github.com/phmatray/FormCraft/commit/1928638126c50807e609856e03dc892b079e7900))
14+
1115
### 🔧 Miscellaneous Tasks
1216

1317
- Update test and web packages ([d9b0a1e](https://github.com/phmatray/FormCraft/commit/d9b0a1e30353b0e40d9ef2097f52835f24533403))
Lines changed: 282 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [Unreleased]
6+
7+
### ✨ Features
8+
9+
- Add .NET 8 support alongside .NET 9 ([09eaf3a](https://github.com/phmatray/FormCraft/commit/09eaf3a128fd1600871edb6669f7630b0ce0a021))
10+
11+
### 🐛 Bug Fixes
12+
13+
- Integrate changelog generation into NUKE build system ([1928638](https://github.com/phmatray/FormCraft/commit/1928638126c50807e609856e03dc892b079e7900))
14+
15+
### 🔧 Miscellaneous Tasks
16+
17+
- Update test and web packages ([d9b0a1e](https://github.com/phmatray/FormCraft/commit/d9b0a1e30353b0e40d9ef2097f52835f24533403))
18+
19+
## [2.3.0] - 2025-07-08
20+
21+
### ✨ Features
22+
23+
- Add dialog integration support for FormCraft forms ([0ef83f7](https://github.com/phmatray/FormCraft/commit/0ef83f7532943dd0a028355550dca00be0781c04))
24+
25+
### 🐛 Bug Fixes
26+
27+
- Enable TextArea rendering with Lines attribute support ([bddde10](https://github.com/phmatray/FormCraft/commit/bddde10bf8ca3811b3596b4237ac0b6efc5b292b))
28+
- Resolve race condition in AsyncValidator cancellation token test ([b9fd83e](https://github.com/phmatray/FormCraft/commit/b9fd83e48cf7ef8bea715b2840c6e0bd10a7a89a))
29+
30+
### 🔧 Miscellaneous Tasks
31+
32+
- Update dotnet monorepo to 9.0.7 ([59be2db](https://github.com/phmatray/FormCraft/commit/59be2db8513aabb81e50338578ec270f5a92f79a))
33+
34+
## [2.2.0] - 2025-07-02
35+
36+
### ✨ Features
37+
38+
- Add convenience methods for form field creation ([60a3421](https://github.com/phmatray/FormCraft/commit/60a3421ab8577e702d0cdd401fcd7033bd666799))
39+
40+
### 🐛 Bug Fixes
41+
42+
- Resolve nullable reference type warnings and platform compatibility issues ([f1ebc0e](https://github.com/phmatray/FormCraft/commit/f1ebc0e7d62755205ef2a945082b62dc7bd779d1))
43+
- Resolve MudBlazor component warnings in ForMudBlazor project ([4e6de54](https://github.com/phmatray/FormCraft/commit/4e6de546772148da2186d2dd099f1b9d1cc5b256))
44+
- Remove class constraint from extension methods to support nullable types ([287a33c](https://github.com/phmatray/FormCraft/commit/287a33c74b6f3a573cb6f306e8b5b41ee6c448f7))
45+
46+
### 📚 Documentation
47+
48+
- Update package installation instructions ([948be2d](https://github.com/phmatray/FormCraft/commit/948be2dd9e382be75ba4ed0ca8b134dcc84217c3))
49+
50+
### 🔧 Miscellaneous Tasks
51+
52+
- Update MudBlazor to 8.9.0 and Markdig to 0.41.3 ([f62014e](https://github.com/phmatray/FormCraft/commit/f62014ec3b5e2c265f68858556f9108c0b9db12b))
53+
54+
## [2.1.0] - 2025-06-19
55+
56+
### ✨ Features
57+
58+
- Add FluentValidation integration support ([5107899](https://github.com/phmatray/FormCraft/commit/51078993f5589a11b4696866ed8ab0b534909c24))
59+
60+
### 🔧 Miscellaneous Tasks
61+
62+
- Update dependency dotnet-sdk to v9.0.301 ([74652b6](https://github.com/phmatray/FormCraft/commit/74652b63ab521baa38cdc5bcbc735112e60a73e6))
63+
- Update dependency gitversion.msbuild to 6.3.0 ([e2c8e25](https://github.com/phmatray/FormCraft/commit/e2c8e257ca48d39f9d1ef584d88893226f590b17))
64+
- Update dependency bunit to 1.40.0 ([a91c2ea](https://github.com/phmatray/FormCraft/commit/a91c2eaea88a81419022b96dd5853c4c35b04110))
65+
- Update dependency mudblazor to 8.8.0 ([ef9130b](https://github.com/phmatray/FormCraft/commit/ef9130bbac5aba19507a84603bb1e8f9770fc149))
66+
67+
## [2.0.0] - 2025-06-10
68+
69+
### Ci
70+
71+
- Fix duplicate projects ids ([b1c797d](https://github.com/phmatray/FormCraft/commit/b1c797d92c420b197f11e6a66a0884f5526d6d08))
72+
- Move Nuke dependencies to CPM ([f6f4263](https://github.com/phmatray/FormCraft/commit/f6f4263b27af1fdb326dbd81daeccef3da6dc99c))
73+
74+
### ♻️ Refactor
75+
76+
- Split razor components and code-behind ([405aedd](https://github.com/phmatray/FormCraft/commit/405aeddf292f491553fb79fc80aa32dbd740b1b8))
77+
- Fix some warnings ([bf2b3d8](https://github.com/phmatray/FormCraft/commit/bf2b3d86d3acee0e6b9ff58ef25791f74ef3a47c))
78+
- Create some components for the demo pages ([c74dcd1](https://github.com/phmatray/FormCraft/commit/c74dcd12f6f82ef0c93468c11ee0e1286dc70d9c))
79+
- Improve AddField method for enforce indentation ([649384c](https://github.com/phmatray/FormCraft/commit/649384c4e34040b84e9a0b6762adf6d4c50a66a2))
80+
- Complex method split ([d65f04c](https://github.com/phmatray/FormCraft/commit/d65f04c1c4a36e17b17ce1425721469453534974))
81+
- Refine SimplifiedForm demo page ([89f7508](https://github.com/phmatray/FormCraft/commit/89f750820eb08012806264fbdac14dbfc1cba667))
82+
- Remove FormCodeGeneratorService ([cccf304](https://github.com/phmatray/FormCraft/commit/cccf30475bd5112631247fea6b328538eea1219d))
83+
- Simplify multi-step form validation ([ad5aa5e](https://github.com/phmatray/FormCraft/commit/ad5aa5e3950b4af3070a3d0598d3d4e1abf90e28))
84+
85+
### ✅ Testing
86+
87+
- Refactor FormCraftComponentTests ([fadbec3](https://github.com/phmatray/FormCraft/commit/fadbec3f6549f3a1bad1259317bdd3f54a7d1150))
88+
89+
### ✨ Features
90+
91+
- Extract mudblazor components to their own library ([c9d48e5](https://github.com/phmatray/FormCraft/commit/c9d48e5c73de5596e368417cbcc08eedf36bf305))
92+
- Add SubmitButtonClass property ([0a5a9f4](https://github.com/phmatray/FormCraft/commit/0a5a9f48768ead4433eb18cd7303aea38eb9df9c))
93+
- Add form slots (before and after) ([1aba4bd](https://github.com/phmatray/FormCraft/commit/1aba4bdab8cf8caec25bf7eefbc78367aebb805b))
94+
- Add StepperForm example ([1655cf6](https://github.com/phmatray/FormCraft/commit/1655cf65073a1755b9a862bc24d552fd2f4188ec))
95+
- Create demo for TabbedForm ([7c01d5b](https://github.com/phmatray/FormCraft/commit/7c01d5bc9c6e711a352fb3e35cb2771d3f2ecd3f))
96+
- Add header right content ([877c0de](https://github.com/phmatray/FormCraft/commit/877c0de69b215b1d95198c93419e9d648d46f929))
97+
- Add MudSlider custom renderer ([baaf20c](https://github.com/phmatray/FormCraft/commit/baaf20c67d645776e9152979c0ab8ca3171c2aba))
98+
- Add CSRF, AuditLog, RateLimit and Encryption ([052011d](https://github.com/phmatray/FormCraft/commit/052011dbf843c1db12719708bfc6d46880fb9c54))
99+
100+
### 🐛 Bug Fixes
101+
102+
- Broken link on github pages ([29af90d](https://github.com/phmatray/FormCraft/commit/29af90de1f11f8a566e8ea39618e05e88aa07988))
103+
- Broken links ([83f4c09](https://github.com/phmatray/FormCraft/commit/83f4c09c68f0307666d7efaea01e8c531966395d))
104+
- Urls in demo app ([85d5a9b](https://github.com/phmatray/FormCraft/commit/85d5a9b3571d405b31fd1126eca1406f9bf12d6f))
105+
- Broken links in productions and some minor visual adjustments ([f1c4c35](https://github.com/phmatray/FormCraft/commit/f1c4c35e79fb13b25077e95d9d1678824e9753a1))
106+
- Use required behavior from FluentValidation ([9458e12](https://github.com/phmatray/FormCraft/commit/9458e12ed6171ed0f35359282fa9b82c6d807b79))
107+
- Validation messages are concatened without spacing ([7c5ee17](https://github.com/phmatray/FormCraft/commit/7c5ee17ea8bd7f5c96059ef5fa966ac0953a77cc))
108+
- Update code examples ([37d71bb](https://github.com/phmatray/FormCraft/commit/37d71bb32601625be38663f14e9e414a47ab3590))
109+
- Select field renders as a text field ([b41a138](https://github.com/phmatray/FormCraft/commit/b41a138d1e8ad92ed2256336e493bdda2b2c1ec2))
110+
- Field groups rendering ([94bf53e](https://github.com/phmatray/FormCraft/commit/94bf53e0ce52ed41a05fcebcde7d813dc214aeaf))
111+
- Custom renderers does not render correctly ([f9c7a23](https://github.com/phmatray/FormCraft/commit/f9c7a2375414249f4d0a9003283b3a033b99ca06))
112+
- Use fluent validation in StepperForm ([fb50343](https://github.com/phmatray/FormCraft/commit/fb503435a4ee8649c2a8588e5683c22f4522c005))
113+
- Help text positioning ([b069e1a](https://github.com/phmatray/FormCraft/commit/b069e1ac33ab2ff4932b4d9f28bc9f614899aea9))
114+
- Improve file upload rendering ([ae122c5](https://github.com/phmatray/FormCraft/commit/ae122c537cd86e95c666cf8427e94f29424031e1))
115+
- Code example on home page ([654e456](https://github.com/phmatray/FormCraft/commit/654e4562bdd0015b7e0005c6ca3d27c3272f7ee4))
116+
117+
### 📚 Documentation
118+
119+
- Improve the documentation ([3fdd591](https://github.com/phmatray/FormCraft/commit/3fdd591866f4dd90a1094d122d64c611218174cc))
120+
121+
### 🔧 Miscellaneous Tasks
122+
123+
- Add CLAUDE.md file ([8ea08e6](https://github.com/phmatray/FormCraft/commit/8ea08e6af0686bd12529852cf6adf7e805899066))
124+
- Prepare v2.0.0 ([64adc13](https://github.com/phmatray/FormCraft/commit/64adc13d40e7cdba504a1b2b11646435a526f3fe))
125+
- Update dotnet monorepo to 9.0.6 ([ab0c61d](https://github.com/phmatray/FormCraft/commit/ab0c61d0f7025456b428cf2a6be2f928404aeb0c))
126+
- Update dependency coverlet.collector to 6.0.4 ([7322a73](https://github.com/phmatray/FormCraft/commit/7322a73524e1f00e33e692f705cbabeaaab34d04))
127+
- Update dependency xunit to 2.9.3 ([0b6ece4](https://github.com/phmatray/FormCraft/commit/0b6ece49b1596c781f3ffadc0db931a95fec265f))
128+
129+
## [1.3.3] - 2025-06-09
130+
131+
### ♻️ Refactor
132+
133+
- Fix some warnings ([0ab6bc3](https://github.com/phmatray/FormCraft/commit/0ab6bc32b4430b5218e5f8f7a5d8ff19f9e8fd35))
134+
- Convert blazor server to blazor wasm ([24bfea6](https://github.com/phmatray/FormCraft/commit/24bfea66024a45b600280811dcad0816e67ab5e0))
135+
136+
### 📚 Documentation
137+
138+
- Update readme and create solution folders ([37dcb59](https://github.com/phmatray/FormCraft/commit/37dcb59212449531e2cdf1951877d747a0830b36))
139+
140+
### 🔧 Miscellaneous Tasks
141+
142+
- Update dependency dotnet-sdk to v9.0.300 ([e3c6662](https://github.com/phmatray/FormCraft/commit/e3c6662f3f2c843f9e91c42b90f2aa268f438f29))
143+
144+
## [1.3.2] - 2025-06-08
145+
146+
### Ci
147+
148+
- Fix version detection ([6f5e295](https://github.com/phmatray/FormCraft/commit/6f5e2956684d12e7bfac418ddb56c501ddf3605b))
149+
150+
### 🔧 Miscellaneous Tasks
151+
152+
- Update dependency octokit to v14 ([411b025](https://github.com/phmatray/FormCraft/commit/411b025afe5f2955e6317e40ccdda378db0164fb))
153+
154+
## [1.3.1] - 2025-06-08
155+
156+
### Ci
157+
158+
- Update the build script to publish release ([344f716](https://github.com/phmatray/FormCraft/commit/344f716a98f791a486f07c66edf4943480c46b95))
159+
160+
## [1.3.0] - 2025-06-08
161+
162+
### Ci
163+
164+
- Use nuke build ([38a41b7](https://github.com/phmatray/FormCraft/commit/38a41b7bdf6b25630a7473f93ec25a653bf310d4))
165+
- Fix gitcliff installation ([ffeeac6](https://github.com/phmatray/FormCraft/commit/ffeeac6c62a502a33c5360c9016423b9c91409d0))
166+
- Use official gitcliff integration ([19a1f45](https://github.com/phmatray/FormCraft/commit/19a1f458a72daf5908637ffc5c55535ee88add4c))
167+
- Use dotnet 9 with nuke ([dd2732d](https://github.com/phmatray/FormCraft/commit/dd2732dc1d438f2e84d33be8c02187d9633ef87c))
168+
- Another try to fix the gitcliff integration ([b732ae5](https://github.com/phmatray/FormCraft/commit/b732ae5a7c38ebe2f75061eb1cfd32f59ef98f81))
169+
- Another try to fix the gitcliff integration ([8b0a655](https://github.com/phmatray/FormCraft/commit/8b0a655eaca814ca1692ee60d960d8f44d7949ee))
170+
- Simplify gitcliff integration ([5e59df0](https://github.com/phmatray/FormCraft/commit/5e59df01ca87b11f99d020b88a08bbceb0f52cc9))
171+
172+
### ♻️ Refactor
173+
174+
- Fix some warnings ([ad485db](https://github.com/phmatray/FormCraft/commit/ad485dbcecfee2b3bf760b7447efec1bdcbc546a))
175+
176+
### ✨ Features
177+
178+
- Add FileUpload renderer ([4142397](https://github.com/phmatray/FormCraft/commit/4142397c5d686e0ffe337e58687cd69a9bd232b2))
179+
- Add fileupload error handling ([f4a4ad8](https://github.com/phmatray/FormCraft/commit/f4a4ad8269a5de2adabf2af6b5aeb537a16519db))
180+
- Create onboarding welcome page ([abfaad1](https://github.com/phmatray/FormCraft/commit/abfaad197b130feae5b952c83d8d109b8850e16c))
181+
182+
### 🔧 Miscellaneous Tasks
183+
184+
- Update changelog [skip ci] ([9757738](https://github.com/phmatray/FormCraft/commit/97577383fd02244eae40a5c3486fcc96d478753b))
185+
- Update orhun/git-cliff-action action to v4 ([b07c869](https://github.com/phmatray/FormCraft/commit/b07c86963d97f2e8a3a712993825c28df3888481))
186+
187+
## [1.2.0] - 2025-06-08
188+
189+
### Ci
190+
191+
- Fix ci workflow ([e128e94](https://github.com/phmatray/FormCraft/commit/e128e943ed595ba7ba9febc12d12ed7839dfa462))
192+
193+
### ♻️ Refactor
194+
195+
- Improve the demo website ([22348f0](https://github.com/phmatray/FormCraft/commit/22348f0fc620bcd6d5037426e9eea6d50a197849))
196+
197+
### ✨ Features
198+
199+
- Add custom renderers ([4da5046](https://github.com/phmatray/FormCraft/commit/4da50468429cbccbc2ed85e4a40691a89c1b879a))
200+
201+
### 🔧 Miscellaneous Tasks
202+
203+
- Update changelog [skip ci] ([e662e0e](https://github.com/phmatray/FormCraft/commit/e662e0e896559c8a3e273c9aee92798fe533c82e))
204+
205+
## [1.1.0] - 2025-06-08
206+
207+
### ♻️ Refactor
208+
209+
- Rename demo website ([70ca396](https://github.com/phmatray/FormCraft/commit/70ca39617d7c129993c4a6922b80bab57c5cd800))
210+
- Add FieldGroups demo page ([2f79f3b](https://github.com/phmatray/FormCraft/commit/2f79f3b7f252b978785b163d2a39528d2c0b97fc))
211+
212+
### ✨ Features
213+
214+
- Add decimal and double field renderers ([f09166b](https://github.com/phmatray/FormCraft/commit/f09166b7c4bba7f5f2e1a854bc19f8979e49bf87))
215+
- Add FieldGroupBuilder ([d2e8c52](https://github.com/phmatray/FormCraft/commit/d2e8c52cfa64ef3a53521437131d44c6fb32ddb7))
216+
217+
### 📚 Documentation
218+
219+
- Update readme ([115988e](https://github.com/phmatray/FormCraft/commit/115988e3159c0a95d88ce06a0038ff1733724f7d))
220+
221+
### 🔧 Miscellaneous Tasks
222+
223+
- Add changelog generation ([012a0a7](https://github.com/phmatray/FormCraft/commit/012a0a7e8b52e96871085a6c61bb9faf3f86cafd))
224+
- Generate changelog before a commit with the setup-hooks script ([43990dd](https://github.com/phmatray/FormCraft/commit/43990ddc108b68737b62b05d43811b6aee4fa07d))
225+
- Improve changelog generation ([a7faaf7](https://github.com/phmatray/FormCraft/commit/a7faaf734f6b29daf83817f27bacaca0a1fadd1b))
226+
- Create a github action workflow to handle changelog ([5beeea7](https://github.com/phmatray/FormCraft/commit/5beeea7c93de7709a0a487e01d8b120242569ad1))
227+
- Update changelog [skip ci] ([dcb5599](https://github.com/phmatray/FormCraft/commit/dcb55996ebc421d3e5c8443ebb957abfde65f170))
228+
229+
## [1.0.3] - 2025-06-07
230+
231+
### ♻️ Refactor
232+
233+
- Fix some warnings ([8ad1127](https://github.com/phmatray/FormCraft/commit/8ad1127e8a36025ceca93953c1d367e57d043fc1))
234+
235+
### 🐛 Bug Fixes
236+
237+
- Reduce icon size ([aadb0bf](https://github.com/phmatray/FormCraft/commit/aadb0bfe56dd33e0127457e11998c464c4b62ee9))
238+
239+
## [1.0.1] - 2025-06-07
240+
241+
### 🔧 Miscellaneous Tasks
242+
243+
- Fix icon format ([a24700b](https://github.com/phmatray/FormCraft/commit/a24700be32a1476fe83f564a4fbfd61a83cb44e6))
244+
245+
## [1.0.0] - 2025-06-07
246+
247+
### ♻️ Refactor
248+
249+
- Move rendering logic to FieldDefinition ([57d8ef0](https://github.com/phmatray/FormCraft/commit/57d8ef0f00895ee10f95e4999eb617433e4b1a6f))
250+
- Improve rendering ([5caabf3](https://github.com/phmatray/FormCraft/commit/5caabf3d1f5166e80dc50bc3eede2c1d15c18656))
251+
- Fix some warnings ([2cfccba](https://github.com/phmatray/FormCraft/commit/2cfccba16586e7f55541ce59d12d179f39f84e7e))
252+
- Fix warnings ([553c239](https://github.com/phmatray/FormCraft/commit/553c2394ad0e98bcb16bbcc9d84819b8222ae21f))
253+
- Create FormCraft RCL project ([baaa310](https://github.com/phmatray/FormCraft/commit/baaa3100766258e3fb47a3b230e2cfa75f51876e))
254+
- Create Abstractions folder ([537a9e7](https://github.com/phmatray/FormCraft/commit/537a9e7b8a37f072d69f229c5313e1c303aa3690))
255+
- Simplify namespace structure ([b9ba918](https://github.com/phmatray/FormCraft/commit/b9ba918916a6b03a4cf3f2c04c0c438bb2e47125))
256+
257+
### ✅ Testing
258+
259+
- Add unit tests ([5650136](https://github.com/phmatray/FormCraft/commit/5650136d13ee7148de898cefc05db182a32df623))
260+
- Replace FluentAssertions by Shouldly ([52cb498](https://github.com/phmatray/FormCraft/commit/52cb4982e4ad2200124409dcf0a9f84f83c2dbe6))
261+
- Improve code coverage ([5bc1513](https://github.com/phmatray/FormCraft/commit/5bc1513ce207ed195cd1141d5ff20feb9d7993ed))
262+
- Add tests for renderers ([9e5d24a](https://github.com/phmatray/FormCraft/commit/9e5d24a1ea39bb28384ada16a014904861d2c82a))
263+
264+
### ✨ Features
265+
266+
- Add validation ([1f02319](https://github.com/phmatray/FormCraft/commit/1f0231996d06c98011f7f8d1606eabf7fc9898e6))
267+
- Improve dynamic form generation ([028b0bc](https://github.com/phmatray/FormCraft/commit/028b0bccdcd0d5d189163f61d59446835b44dd50))
268+
- Add form layout system ([519a398](https://github.com/phmatray/FormCraft/commit/519a3986fe878444b2cb7247b54c6ffff5e0f627))
269+
- Add documentation pages and refine demo layout ([fef0430](https://github.com/phmatray/FormCraft/commit/fef043032b6267e9d3a4ff8476342428d56e3960))
270+
- Enable prism for documentation pages ([d42a939](https://github.com/phmatray/FormCraft/commit/d42a939b4eacc0175d6e78194b0a90a3912300f0))
271+
272+
### 🐛 Bug Fixes
273+
274+
- Make validation works ([7dd3b84](https://github.com/phmatray/FormCraft/commit/7dd3b84b459b1c6397d0ea1940c563a35f446763))
275+
- Validation message concatenation ([30a0f81](https://github.com/phmatray/FormCraft/commit/30a0f81cff82d05a130b62fafea30f15aaadc9f5))
276+
277+
### 🔧 Miscellaneous Tasks
278+
279+
- Remove pages not related to FormCraft ([1848bac](https://github.com/phmatray/FormCraft/commit/1848bac46fafc435a639bb3b1416882b003ac73a))
280+
- Prepare NuGet package ([3b8b33e](https://github.com/phmatray/FormCraft/commit/3b8b33e936abb8c2a0daf052447fc49a70868a81))
281+
282+
<!-- generated by git-cliff -->

0 commit comments

Comments
 (0)