generated from pagopa/io-template-typescript
-
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.
[#171017085] fix handling of application/x-www-form-urlencoded (#3)
- Loading branch information
Showing
8 changed files
with
1,207 additions
and
1,520 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,5 @@ | ||
{ | ||
"issuePattern": "\\[#(\\d+)\\]", | ||
"issueUrl": "https://www.pivotaltracker.com/story/show/{id}", | ||
"breakingPattern": "BREAKING CHANGE:" | ||
} |
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 @@ | ||
// remember to set up a GitHub token before running release-it | ||
// ie. export GITHUB_TOKEN="deadbeef..." | ||
|
||
module.exports = { | ||
git: { | ||
tagName: "v${version}", | ||
addFiles: ["package.json", "CHANGELOG.md"], | ||
commitMessage: "chore: release ${version}", | ||
changelog: | ||
"npx auto-changelog --config .auto-changelog.json --stdout --commit-limit false --unreleased --template preview.hbs" | ||
}, | ||
hooks: { | ||
"before:release": [ | ||
"npx auto-changelog --config .auto-changelog.json --package" | ||
] | ||
}, | ||
github: { | ||
release: true | ||
}, | ||
npm: { | ||
publish: true | ||
} | ||
}; |
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,13 @@ | ||
{{#each releases}} | ||
{{#if @first}} | ||
{{#each merges}} | ||
- {{{message}}}{{#if href}} [`#{{id}}`]({{href}}){{/if}} | ||
{{/each}} | ||
{{#each fixes}} | ||
- {{{commit.subject}}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}} | ||
{{/each}} | ||
{{#each commits}} | ||
- {{#if breaking}}**Breaking change:** {{/if}}{{{subject}}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}} | ||
{{/each}} | ||
{{/if}} | ||
{{/each}} |
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
Oops, something went wrong.