Skip to content

Commit 866d37a

Browse files
committed
upgrade dependencies
1 parent ef9187c commit 866d37a

10 files changed

Lines changed: 107 additions & 37 deletions

File tree

.forgejo/issue_template/bug.yaml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,40 @@ title: '[:bug:] '
44
labels:
55
- Kind/Bug
66
- Status/New
7+
assignees:
8+
- andrei
9+
ref: main
710
body:
811
- type: markdown
912
attributes:
1013
value: |
1114
Thank you for taking the time to file a bug report!
1215
Try to be as detailed as possible as this will help get it reviewed faster.
13-
- type: input
14-
id: summary
15-
attributes:
16-
label: Summary
17-
description: A brief summary of the issue
18-
placeholder: Help! This isn't working!
19-
validations:
20-
required: false
2116
- type: input
2217
id: version
2318
attributes:
2419
label: Version
25-
description: The version of the mod used
26-
placeholder: 21.1.0
20+
description: The version used
21+
placeholder: 12.34.56
2722
validations:
2823
required: true
2924
- type: textarea
3025
id: description
3126
attributes:
3227
label: Description
3328
description: Describe in as much detail as you can what the issue is
29+
placeholder: Whilst doing X I encountered Y...
3430
validations:
3531
required: true
3632
- type: textarea
3733
id: logs
3834
attributes:
3935
label: Relevant logs
4036
description: Paste any logs that are relevant to this issue
37+
placeholder: |
38+
15.10.2025 11:38:06 [Debug] [example] [Client] [ConfigSystem] Received configuration packet
39+
15.10.2025 11:38:06 [Debug] [example] [Client] [ConfigSystem] Processing server-to-client synchronization packet
40+
...
4141
render: shell
4242
validations:
4343
required: false
@@ -46,6 +46,12 @@ body:
4646
attributes:
4747
label: Relevant code
4848
description: Paste any code that is relevant to this issue
49+
placeholder: |
50+
protected override void RegisterConfigs(IConfigSystem configSystem)
51+
{
52+
configSystem.Register<ExampleCommonConfig>();
53+
}
54+
...
4955
render: shell
5056
validations:
5157
required: false

.forgejo/issue_template/feature.yaml

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,46 @@ title: '[:sparkles:] '
44
labels:
55
- Kind/Feature
66
- Status/New
7+
assignees:
8+
- andrei
9+
ref: main
710
body:
811
- type: markdown
912
attributes:
1013
value: |
1114
Thank you for taking the time to file a feature request!
1215
Try to be as detailed as possible as this will help get it reviewed faster.
13-
- type: input
14-
id: summary
15-
attributes:
16-
label: Summary
17-
description: A brief summary of the feature
18-
placeholder: I'd like this to bake cookies.
19-
validations:
20-
required: false
2116
- type: textarea
2217
id: description
2318
attributes:
2419
label: Description
2520
description: Describe in as much detail as you can what the requested feature is
21+
placeholder: I'd like to be able to do Y...
2622
validations:
2723
required: true
2824
- type: textarea
2925
id: logs
3026
attributes:
3127
label: Relevant logs
32-
description: Paste any logs that are relevant to this feature
28+
description: Paste any logs that are relevant to this issue
29+
placeholder: |
30+
15.10.2025 11:38:06 [Debug] [example] [Client] [ConfigSystem] Received configuration packet
31+
15.10.2025 11:38:06 [Debug] [example] [Client] [ConfigSystem] Processing server-to-client synchronization packet
32+
...
3333
render: shell
3434
validations:
3535
required: false
3636
- type: textarea
3737
id: code
3838
attributes:
3939
label: Relevant code
40-
description: Paste any code that is relevant to this feature
40+
description: Paste any code that is relevant to this issue
41+
placeholder: |
42+
protected override void RegisterConfigs(IConfigSystem configSystem)
43+
{
44+
configSystem.Register<ExampleCommonConfig>();
45+
}
46+
...
4147
render: shell
4248
validations:
4349
required: false

.woodpecker/build.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@ when:
22
- event: push
33
branch: main
44

5-
matrix:
6-
PROJECT:
7-
- DurableBetterProspecting
8-
95
steps:
106
- name: bootstrap
117
image: git.omni.ms/omnilium/toolbox:latest
8+
pull: true
129
environment:
1310
REMOTE_USERNAME:
1411
from_secret: copyparty_user
@@ -19,5 +16,6 @@ steps:
1916

2017
- name: build
2118
image: mcr.microsoft.com/dotnet/sdk:9.0
19+
pull: true
2220
commands:
23-
- bash build.sh --target Build --general-project ${PROJECT}
21+
- bash build.sh --target Build --general-project DurableBetterProspecting

.woodpecker/release.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
when:
22
- event: tag
33

4-
matrix:
5-
PROJECT:
6-
- DurableBetterProspecting
7-
84
steps:
95
- name: bootstrap
106
image: git.omni.ms/omnilium/toolbox:latest
7+
pull: true
118
environment:
129
REMOTE_USERNAME:
1310
from_secret: copyparty_user
@@ -18,11 +15,13 @@ steps:
1815

1916
- name: archive
2017
image: mcr.microsoft.com/dotnet/sdk:9.0
18+
pull: true
2119
commands:
22-
- bash build.sh --target Archive --general-project ${PROJECT} --general-version ${CI_COMMIT_TAG}
20+
- bash build.sh --target Archive --general-project DurableBetterProspecting --general-version ${CI_COMMIT_TAG}
2321

2422
- name: release
2523
image: woodpeckerci/plugin-release:latest
24+
pull: true
2625
settings:
2726
api-key:
2827
from_secret: forgejo_release_key

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 21.2.0
2+
**:green_heart: CI/CD**
3+
- Added `pull: true` to all steps
4+
- Removed redundant matrix definition
5+
6+
**:arrow_up: Dependencies**
7+
- Upgraded to `Cake.Frosting@5.1.0`
8+
- Upgraded to `Common.Build@0.5.1`
9+
- Upgraded to `Common.Build.Generator@0.5.1`
10+
- Upgraded to `Common.Mod@0.6.0`
11+
- Upgraded to `Common.Mod.Generator@0.6.0`
12+
113
## 21.1.3
214
**:bug: Bug Fixes**
315
- Fix CTD due to improper registering of `OnAssetsLoaded` event handler

DurableBetterProspecting.Cake/DurableBetterProspecting.Cake.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Cake.Frosting" Version="5.0.0"/>
12+
<PackageReference Include="Cake.Frosting" Version="5.1.0" />
1313
<PackageReference Include="Cake.Json" Version="7.0.1"/>
14-
<PackageReference Include="Common.Build" Version="0.4.0"/>
15-
<PackageReference Include="Common.Build.Generator" Version="0.4.0"/>
14+
<PackageReference Include="Common.Build" Version="0.5.1" />
15+
<PackageReference Include="Common.Build.Generator" Version="0.5.1" />
1616
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2">
1717
<PrivateAssets>all</PrivateAssets>
1818
<ExcludeAssets>runtime</ExcludeAssets>
@@ -25,6 +25,7 @@
2525
<None Include="../build.sh"/>
2626
<None Include="../buildConfig.json"/>
2727
<None Include="../CHANGELOG.md"/>
28+
<None Include="../GITMOJI.md"/>
2829
<None Include="../README.md"/>
2930
</ItemGroup>
3031

DurableBetterProspecting/DurableBetterProspecting.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
</ItemGroup>
5252

5353
<ItemGroup>
54-
<PackageReference Include="Common.Mod" Version="0.5.6" />
55-
<PackageReference Include="Common.Mod.Generator" Version="0.5.6" />
54+
<PackageReference Include="Common.Mod" Version="0.6.0" />
55+
<PackageReference Include="Common.Mod.Generator" Version="0.6.0" />
5656
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2">
5757
<PrivateAssets>all</PrivateAssets>
5858
<ExcludeAssets>runtime</ExcludeAssets>

DurableBetterProspecting/DurableBetterProspectingSystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Common.Mod.Common.Config;
2-
using Common.Mod.Core;
2+
using Common.Mod;
33
using DryIoc;
44
using DurableBetterProspecting.Items;
55
using DurableBetterProspecting.Managers;

DurableBetterProspecting/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
{
6161
"className": "DurableBetterProspectingClientConfig",
6262
"classNamespace": "DurableBetterProspecting",
63-
"version": "0.0.0",
63+
"version": "12.34.56",
6464
"type": "Client",
6565
"description": null,
6666
"entries": [

GITMOJI.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Copied from https://gist.github.com/parmentf/035de27d6ed1dce0b36a.
2+
3+
| Commit type | Emoji |
4+
|:---------------------------|:----------------------------------------------------------|
5+
| Initial commit | :tada: `:tada:` |
6+
| Version tag | :bookmark: `:bookmark:` |
7+
| New feature | :sparkles: `:sparkles:` |
8+
| Bugfix | :bug: `:bug:` |
9+
| Metadata | :card_index: `:card_index:` |
10+
| Documentation | :books: `:books:` |
11+
| Documenting source code | :bulb: `:bulb:` |
12+
| Performance | :racehorse: `:racehorse:` |
13+
| Cosmetic | :lipstick: `:lipstick:` |
14+
| Tests | :rotating_light: `:rotating_light:` |
15+
| Adding a test | :white_check_mark: `:white_check_mark:` |
16+
| Make a test pass | :heavy_check_mark: `:heavy_check_mark:` |
17+
| General update | :zap: `:zap:` |
18+
| Improve format/structure | :art: `:art:` |
19+
| Refactor code | :hammer: `:hammer:` |
20+
| Removing code/files | :fire: `:fire:` |
21+
| Continuous Integration | :green_heart: `:green_heart:` |
22+
| Security | :lock: `:lock:` |
23+
| Upgrading dependencies | :arrow_up: `:arrow_up:` |
24+
| Downgrading dependencies | :arrow_down: `:arrow_down:` |
25+
| Lint | :shirt: `:shirt:` |
26+
| Translation | :alien: `:alien:` |
27+
| Text | :pencil: `:pencil:` |
28+
| Critical hotfix | :ambulance: `:ambulance:` |
29+
| Deploying stuff | :rocket: `:rocket:` |
30+
| Fixing on MacOS | :apple: `:apple:` |
31+
| Fixing on Linux | :penguin: `:penguin:` |
32+
| Fixing on Windows | :checkered_flag: `:checkered_flag:` |
33+
| Work in progress | :construction: `:construction:` |
34+
| Adding CI build system | :construction_worker: `:construction_worker:` |
35+
| Analytics or tracking code | :chart_with_upwards_trend: `:chart_with_upwards_trend:` |
36+
| Removing a dependency | :heavy_minus_sign: `:heavy_minus_sign:` |
37+
| Adding a dependency | :heavy_plus_sign: `:heavy_plus_sign:` |
38+
| Docker | :whale: `:whale:` |
39+
| Configuration files | :wrench: `:wrench:` |
40+
| Package.json in JS | :package: `:package:` |
41+
| Merging branches | :twisted_rightwards_arrows: `:twisted_rightwards_arrows:` |
42+
| Bad code / need improv. | :hankey: `:hankey:` |
43+
| Reverting changes | :rewind: `:rewind:` |
44+
| Breaking changes | :boom: `:boom:` |
45+
| Code review changes | :ok_hand: `:ok_hand:` |
46+
| Accessibility | :wheelchair: `:wheelchair:` |
47+
| Move/rename repository | :truck: `:truck:` |
48+
| Other | [Be creative](http://www.emoji-cheat-sheet.com/) |

0 commit comments

Comments
 (0)