-
-
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.
🚀Preview Release - v1.0.0-preview.3 (#30)
* release: update version to v1.0.0-preview.3 * release: create release notes for version v1.0.0-preview.3 * release: improve the release notes * ide: add code snippets for release notes * config: remove old settings * chore: set json spacing to 4 * chore: create json schema files for all settings * config: improve json layout and rename prop * config: add schema reference to setting files * chore: add schema prop to generated settings * config: fix settings
- Loading branch information
1 parent
e24aef2
commit dda9274
Showing
17 changed files
with
354 additions
and
123 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,51 @@ | ||
{ | ||
// Place your Release Notes workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | ||
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | ||
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | ||
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | ||
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | ||
// Placeholders with the same ids are connected. | ||
// Example: | ||
// "Print to console": { | ||
// "scope": "javascript,typescript", | ||
// "prefix": "log", | ||
// "body": [ | ||
// "console.log('$1');", | ||
// "$2" | ||
// ], | ||
// "description": "Log output to console" | ||
// } | ||
|
||
"Issue Link": { | ||
"scope": "markdown", | ||
"prefix": "issue-link", | ||
"body": [ | ||
"[#${1:Issue #}](https://github.com/KinsonDigital/kd-admin/issues/${1:Issue #}) - " | ||
], | ||
"description": "Link to an issue" | ||
}, | ||
"PR Link": { | ||
"scope": "markdown", | ||
"prefix": "pr-link", | ||
"body": [ | ||
"[#${1:PR #}](https://github.com/KinsonDigital/kd-admin/pull/${1:PR #}) - " | ||
], | ||
"description": "Link to a pull request" | ||
}, | ||
"Issue Dependency Update": { | ||
"scope": "markdown", | ||
"prefix": "issue-dep-update", | ||
"body": [ | ||
"[#${1:Issue #}](https://github.com/KinsonDigital/kd-admin/issues/${1:Issue #}) - Updated **${2:packge name}** from _**v${3:from version}**_ to _**v${4:to version}**_" | ||
], | ||
"description": "Link to an issue for a dependency update." | ||
}, | ||
"PR Dependency Update": { | ||
"scope": "markdown", | ||
"prefix": "pr-dep-update", | ||
"body": [ | ||
"[#${1:PR #}](https://github.com/KinsonDigital/kd-admin/pull/${1:PR #}) - Updated **${2:packge name}** from _**v${3:from version}**_ to _**v${4:to version}**_" | ||
], | ||
"description": "Link to a pull request for a dependency update." | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
"msbuild", | ||
"msvc", | ||
"Prepper", | ||
"RELEASETYPE", | ||
"REPONAME", | ||
"setx", | ||
"sixlabors", | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/KinsonDigital/kd-admin/preview/schemas/create-pr-schema.json", | ||
"ownerName": "KinsonDigital", | ||
"repoName": "kd-admin", | ||
"githubTokenEnvVarName": "CICD_TOKEN", | ||
"baseBranches": [ | ||
"main", | ||
"preview" | ||
] | ||
"baseBranches": [ "main", "preview"] | ||
} |
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 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 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,23 @@ | ||
<h1 align="center" style="color: mediumseagreen;font-weight: bold;"> | ||
kd-admin Preview Release Notes - v1.0.0-preview.3 | ||
</h1> | ||
|
||
<h2 align="center" style="font-weight: bold;">Quick Reminder</h2> | ||
|
||
<div align="center"> | ||
|
||
As with all software, there is always a chance for issues and bugs, especially for preview releases, so your input is greatly appreciated. 🙏🏼 | ||
</div> | ||
|
||
<h2 align="center" style="font-weight: bold;">Enhancements ✨</h2> | ||
|
||
1. [#27](https://github.com/KinsonDigital/kd-admin/issues/27) - Moved the location of the settings files when installing the tool to the _**./dev-tools**_ directory. | ||
- The tool now looks for the settings files in this directory. | ||
1. [#26](https://github.com/KinsonDigital/kd-admin/issues/26) - Improved release note generation settings. | ||
|
||
<h2 align="center" style="font-weight: bold;">Breaking Changes 🧨</h2> | ||
|
||
1. [#27](https://github.com/KinsonDigital/kd-admin/issues/27) - Changed where the tool looks and expects the settings. | ||
- When upgrading, you must move any current settings to the _**./dev-tools**_ directory relative to the repository root directory. | ||
- Remember to update any path-related settings. | ||
2. [#26](https://github.com/KinsonDigital/kd-admin/issues/26) - Changed the name of the `environment` setting to the name `releaseType`. |
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,28 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"properties": { | ||
"ownerName": { | ||
"type": "string", | ||
"description": "The owner of the GitHub repository." | ||
}, | ||
"repoName": { | ||
"type": "string", | ||
"description": "The name of the GitHub repository." | ||
}, | ||
"githubTokenEnvVarName": { | ||
"type": "string", | ||
"description": "The name of the environment variable that contains the GitHub token for the tool to use." | ||
}, | ||
"baseBranches": { | ||
"type": "array", | ||
"description": "The owner of the GitHub repository.", | ||
"minItems": 1, | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"required": ["ownerName", "repoName", "githubTokenEnvVarName", "baseBranches"] | ||
} |
Oops, something went wrong.