Skip to content

Commit

Permalink
Merge branch 'master' into type-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbarth authored Jun 13, 2023
2 parents 4ef23d9 + a14f25a commit a301150
Show file tree
Hide file tree
Showing 9 changed files with 421 additions and 821 deletions.
18 changes: 7 additions & 11 deletions .grenrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
dataSource: "prs",
prefix: "",
onlyMilestones: false,
ignoreTagsWith: ["v0.32.0", "0.0.3"],
ignoreTagsWith: ["beta"],
ignoreLabels: [
"semver-major",
"semver-minor",
Expand Down Expand Up @@ -37,21 +37,17 @@ module.exports = {
placeholders.name,
`[${placeholders.text}](${placeholders.url})`,
];
return parts.filter((_) => _).join(" ");
return parts
.filter((_) => _)
.join(" ")
.replace(" ", " ");
},
release: function (placeholders) {
let dateParts = placeholders.date.split("/");
let placeholdersDate = new Date(
Number(dateParts[2]),
Number(dateParts[1]) - 1,
Number(dateParts[0])
);
let isoDateString = placeholdersDate.toISOString().split("T")[0];
placeholders.body = placeholders.body.replace(
"*No changelog for this release.*",
"\n_No changelog for this release._"
);
return `## ${placeholders.release} (${isoDateString})\n${placeholders.body}`;
return `## ${placeholders.release} (${placeholders.date})\n${placeholders.body}`;
},
group: function (placeholders) {
const iconMap = {
Expand All @@ -64,7 +60,7 @@ module.exports = {
Dependencies: "🔗",
};
const icon = iconMap[placeholders.heading] || "🙈";
return "\n#### " + icon + " " + placeholders.heading + ":\n";
return "\n#### " + icon + " " + placeholders.heading + "\n";
},
},
};
337 changes: 159 additions & 178 deletions CHANGELOG.md

Large diffs are not rendered by default.

Binary file removed docs/adfs/NameIDFormatError.jpg
Binary file not shown.
128 changes: 0 additions & 128 deletions docs/adfs/README.md

This file was deleted.

40 changes: 0 additions & 40 deletions docs/adfs/retrieve_adfs_certificate.sh

This file was deleted.

Loading

0 comments on commit a301150

Please sign in to comment.