-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1110 from Dockbox-OSS/develop/0.6.0
Release candidate 0.6.0 (RC1)
- Loading branch information
Showing
1,225 changed files
with
35,770 additions
and
17,826 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: 'Bug report' | ||
description: 'If you found a bug in the project, please create an issue here.' | ||
labels: ['type: bug'] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 'Description' | ||
description: 'Provide a clear and concise description of the bug you found.' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: 'Reproduction' | ||
description: 'Describe the steps to reproduce the bug, if applicable.' | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: 'Expected behavior' | ||
description: 'Describe what you expected to happen.' | ||
validations: | ||
required: true | ||
- type: input | ||
id: related | ||
attributes: | ||
label: 'Related issues' | ||
description: 'If applicable, list any related issues here.' | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: 'Maintenance chore' | ||
description: 'Any issues related to maintenance tasks, such as refactoring or updating dependencies.' | ||
labels: ['type: chore'] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 'Description' | ||
description: 'Provide a clear and concise description of the maintenance task.' | ||
validations: | ||
required: true | ||
- type: input | ||
id: related | ||
attributes: | ||
label: 'Related issues' | ||
description: 'If applicable, list any related issues here.' | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: 'Documentation' | ||
description: 'Any issues related to documentation, such as missing or incorrect information.' | ||
labels: ['type: documentation'] | ||
body: | ||
- type: dropdown | ||
id: type | ||
attributes: | ||
label: 'Type' | ||
description: 'What type of documentation issue is this?' | ||
options: | ||
- 'Missing information' | ||
- 'Incorrect information' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 'Description' | ||
description: 'Provide a clear and concise description of the documentation issue.' | ||
validations: | ||
required: true | ||
- type: input | ||
id: related | ||
attributes: | ||
label: 'Related issues' | ||
description: 'If applicable, list any related issues here.' | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Checkstyle | ||
|
||
on: [pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
depCheck: | ||
name: Checkstyle | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 21 | ||
distribution: temurin | ||
- name: Check code style | ||
run: mvn clean install -DskipTests -P ci,all -Dcheckstyle.skip=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Security Policy | ||
## JAR signing (as of July 2024) | ||
All JAR files released on Maven Central are signed with the following GPG key: | ||
```plaintext | ||
Key ID: [email protected] | ||
Fingerprint: 6F34 6237 5920 3A7C 0E97 1D9E 979A 72D9 DFAB F6A2 | ||
Key size: RSA 4096 | ||
Date: 2024-07-30T16:53:39Z | ||
``` | ||
|
||
You can import this key using the public key server: | ||
```shell | ||
$ gpg --keyserver keyserver.ubuntu.com --recv 6F34623759203A7C0E971D9E979A72D9DFABF6A2 | ||
``` | ||
|
||
## JAR signing (before July 2024) | ||
JAR files released before July 2024 (up to and including release 0.5.0) were signed with the following GPG key: | ||
```plaintext | ||
Key ID: [email protected] | ||
Fingerprint: CCC8 A24E D300 4EF6 22DE 752E F180 83C0 F99D 2EFB | ||
Key size: RSA 4096 | ||
Date: 2021-11-11T18:13:20Z | ||
``` | ||
|
||
```shell | ||
$ gpg --keyserver keyserver.ubuntu.com --recv CCC8A24ED3004EF622DE752EF18083C0F99D2EFB | ||
``` | ||
|
||
> [!NOTE] | ||
> You can find a permanent copy of this notice at https://dockbox.org/gpg-key-hartshorn.txt |
Oops, something went wrong.