Skip to content

Commit

Permalink
feat: add support for flexible lease acquisition and production readi…
Browse files Browse the repository at this point in the history
…ness (#830)

Signed-off-by: Nathan Klick <[email protected]>
Signed-off-by: Jeromy Cannon <[email protected]>
Co-authored-by: Jeromy Cannon <[email protected]>
  • Loading branch information
nathanklick and jeromy-cannon authored Nov 20, 2024
1 parent 6e472b5 commit 7fa86ad
Show file tree
Hide file tree
Showing 107 changed files with 2,472 additions and 2,718 deletions.
61 changes: 8 additions & 53 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,8 @@
name: Bug Report
description: File a bug report
title: "<Please write a short description of what didn't work for you here>"
#title: "<Please write a short description of what didn't work for you here>"
labels: ["Bug", "Pending Triage"]
body:
- type: input
id: bom-cli-version
attributes:
label: Bill of Materials or CLI Version
description: Which version of the BOM or CLI are you using?
placeholder: |
ex. 0.18.2 or git commit ID
The bill of materials version can be found in your Gradle or Maven
build configuration. The CLI version can be found by using the `--version` switch.
- type: dropdown
id: execution-environment
attributes:
label: Execution Environment
description: Which front-end execution environment are you using?
options:
- JUnit Extensions
- Performance CLI
- Local Node CLI
- Other
validations:
required: true
- type: dropdown
id: logging-implementation
attributes:
label: Slf4j Logging Implementation
description: Which slf4j compatible logging implementation are you using? **JUnit Users Only**
options:
- Log4j 1.x
- Log4j 2.x
- Logback Classic
- Other
validations:
required: false
- type: textarea
id: reproduction-steps
attributes:
label: To Reproduce
description: Steps to reproduce the behavior
render: markdown
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
Expand All @@ -67,13 +20,15 @@ body:
validations:
required: true
- type: textarea
id: test-cli-logs
id: reproduction-steps
attributes:
label: Whole JUnit/CLI Logs
description: "NEVER EVER OMIT THIS! Include logs from JUnit test output or CLI console/log file output. Don't omit the parts you think irrelevant!"
render: shell
label: To Reproduce
description: Steps to reproduce the behavior
placeholder: |
PROVIDE THE LOGS VIA A GIST LINK (https://gist.github.com/), NOT DIRECTLY IN THIS TEXT AREA
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
Expand Down
4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE/feature_enhancement.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Feature Enhancement
description: Enhance an existing feature
title: "<Please write a brief description of the feature enhancement here>"
#title: "<Please write a brief description of the feature enhancement here>"
labels: ["Feature Enhancement", "Pending Triage"]
body:
- type: textarea
Expand All @@ -18,7 +18,6 @@ body:
attributes:
label: Requested Enhancement
description: What would you like to enhance or change about this feature?
render: markdown
placeholder: |
_A clear and concise description of what you want to happen._
Expand All @@ -30,7 +29,6 @@ body:
attributes:
label: Business Need
description: Why is this needed?
render: markdown
placeholder: |
_A clear and concise description of any alternative solutions or other features you've considered._
Expand Down
4 changes: 1 addition & 3 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
name: New Feature
description: Request a new feature
title: "<Please write a brief description of the new feature here>"
#title: "<Please write a brief description of the new feature here>"
labels: ["New Feature", "Pending Triage"]
body:
- type: textarea
id: feature-description
attributes:
label: Requested Feature
description: What would you like added?
render: markdown
placeholder: |
_A clear and concise description of what you want to happen._
Expand All @@ -20,7 +19,6 @@ body:
attributes:
label: Business Need
description: Why is this needed?
render: markdown
placeholder: |
_A clear and concise description of any alternative solutions or features you've considered._
Expand Down
8 changes: 6 additions & 2 deletions .mocharc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,12 @@ verbose: true
file:
- test/setup.ts
require:
- ts-node/register
- test/setup.ts
extension:
- ts
loader: ts-node/esm
node-option:
- 'enable-source-maps'
- 'import=tsx'
full-trace: true
enable-source-maps: true
ui: bdd
18 changes: 0 additions & 18 deletions .swcrc

This file was deleted.

2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default [
"@typescript-eslint/consistent-type-imports": ["error", { fixStyle: 'inline-type-imports'}],
'space-before-function-paren': 'error',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/class-literal-property-style': 'off'
'@typescript-eslint/class-literal-property-style': 'off',
}
},
{
Expand Down
Loading

0 comments on commit 7fa86ad

Please sign in to comment.