-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/npm_and_yarn/extensions/wrapper/c…
…lients/typescript-client-example/undici-and-sveltejs/kit-5.26.5
- Loading branch information
Showing
11 changed files
with
408 additions
and
283 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
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,27 @@ | ||
--- | ||
name: Enhancement | ||
about: Implement a task / improve something | ||
title: "" | ||
labels: ["kind/enhancement", "scope/ce"] | ||
assignees: "" | ||
--- | ||
|
||
# Enhancement | ||
|
||
## Description | ||
|
||
_A clear and concise description of what the customer wants to happen._ | ||
|
||
- As a USER who PRECONDITIONS, I want to DO_THING, so I can ACCOMPLISH_GOAL. | ||
|
||
## Stakeholders | ||
|
||
_Add more on who asked for this, i.e. company, person, how much they pay us, what their tier is, are they a strategic account, etc. Who needs to be kept up-to-date about this feature?_ | ||
|
||
## Solution Proposal and Work Breakdown | ||
|
||
```[tasklist] | ||
- [ ] Fix the GitHub Projects Labels, Sprint and other Metadata | ||
- [ ] Refine a Solution Proposal / Work Breakdown | ||
``` | ||
|
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
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 |
---|---|---|
@@ -1,43 +1,12 @@ | ||
# Pull Request | ||
|
||
_Briefly describe WHAT your PR changes, which features it adds/modifies._ | ||
_What issues does this PR close?_ | ||
|
||
## How Has This Been Tested? | ||
|
||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration | ||
```[tasklist] | ||
### Checklist | ||
- [ ] The PR title is short and expressive. | ||
- [ ] I have updated the CHANGELOG.md. See [changelog_update.md](https://github.com/sovity/edc-extensions/tree/main/docs/dev/changelog_updates.md) for more information. | ||
- [ ] I have updated the Deployment Migration Notes Section in the CHANGELOG.md for any configuration / external API changes. | ||
- [ ] I have performed a **self-review** | ||
``` | ||
|
||
- Test A | ||
- Test B | ||
- ... | ||
|
||
**Test Configuration**: | ||
|
||
- Firmware version: | ||
- Hardware: | ||
- Toolchain: | ||
- SDK: | ||
|
||
## Linked Issue(s) | ||
|
||
_Use keywords to automate: https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword_ | ||
|
||
- fixes # (issue) | ||
- closes # (issue) | ||
- ... | ||
|
||
## PR is blocked by | ||
|
||
- [ ] blocked by # (issue) | ||
|
||
# Checklist | ||
|
||
- [ ] I have **formatted the title** correctly and precisely | ||
- [ ] My code follows the **style guidelines** of this project | ||
- [ ] I have performed a **self-review** of my own code | ||
- [ ] I have **commented** my code, particularly in hard-to-understand areas and public classes/methods | ||
- [ ] I have made corresponding changes to the **documentation** | ||
- [ ] My changes generate **no new warnings** (performed checkstyle check locally) | ||
- [ ] I have added **tests that prove my fix** is effective or that my feature works | ||
- [ ] New and existing unit **tests pass locally** with my changes | ||
- [ ] Any dependent **changes have been merged** and published in downstream modules | ||
- [ ] I have added/updated **copyright headers** |
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,60 @@ | ||
Updating the Changelog | ||
====================== | ||
|
||
This project uses a [CHANGELOG.md](../../CHANGELOG.md). | ||
|
||
## Structure of the Changelog | ||
|
||
Each pull request should also update the "Unreleased" section of the changelog. | ||
It should also update the "Deployment Migration Notes" Section of the unreleased section as preparation for the release. | ||
|
||
For each release there will be a separate section especially with an "Overview" section containing a summary | ||
from a product perspective. | ||
|
||
Releases will especially contain a "Compatible Versions" section with the final docker | ||
images and versions of our Connector Backend and Frontend. | ||
|
||
## How to categorize a change | ||
|
||
The changelog uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
Changes are categorized as either Major, Minor or Patch Changes. | ||
|
||
For this project, changes are categorized as the following: | ||
|
||
### Major Changes | ||
|
||
Major changes include: | ||
|
||
- UX / Product overhauls. | ||
- Breaking changes in Connector-To-Connector communication. | ||
- Breaking changes to other deployment units (our UI doesn't count). | ||
- Breaking changes in our API Wrapper Use Case API. | ||
|
||
### Minor Changes | ||
|
||
Minor changes include: | ||
|
||
- Any changes from a product perspective to our UI or API Wrapper UI API. | ||
- Additions to our API Wrapper Use Case API. | ||
- New Product Documentation | ||
|
||
### Patch Changes | ||
|
||
Patch changes are basically everything else: | ||
|
||
- Product Fixes, Bugfixes, Refactorings | ||
- Changes to existing Product Documentation | ||
- New or changes to Developer Documentation | ||
- Everything else | ||
|
||
## Released Versions | ||
|
||
On releases the "Unreleased" section is emptied in favor of a new section for the release. | ||
|
||
Whether a release will bump the major, minor or patch version is decided by the unreleased changes in the changelog. | ||
|
||
The Release sections will be cleaned up on release, improved with additional information and made | ||
useful for the customer and people deploying the application, containing both product changes and | ||
deployment migration notes. | ||
|
||
More on that can be found in the [Release Issue Template](../../.github/ISSUE_TEMPLATE/release.md). |
Oops, something went wrong.