Skip to content

Commit

Permalink
Cut v3.5.0 (#255)
Browse files Browse the repository at this point in the history
Release v3.5.0
  • Loading branch information
dangoslen authored Jul 20, 2023
1 parent 082399a commit 059b4a9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,19 @@
Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [UNRELEASED]

## [v3.5.0]
### Dependencies
- Bump `@vercel/ncc` from 0.34.0 to 0.36.1 (#247)
- Bump `eslint` from 8.31.0 to 8.42.0 (#249)
- Bump `actions/checkout` from 3.5.2 to 3.5.3 (#250)
- Bump `node-fetch` from 2.6.9 to 2.6.12 (#251, #253)

### Fixed
- Handle `skipLabels` that contain a `/`
- Handle `skipLabels` that contain a `/` (#254)

## [v3.4.0]
### Chnaged
### Changed
- Switches the default branch from `master` to `main`

### Dependencies
Expand Down
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6427,9 +6427,9 @@ module.exports.getPullRequestContext = function (context) {

module.exports.extractLabels = function (labelsString) {
// Parses a list of labels. Each label can be of any length and will either end with a comma or be the end of the string.
// Matches words (\w), whitespace characters (\s), dashes (-), plus signs (+), questions marks (\?), semi-colons (;), brackets (\[\]) and parenthesis (\(\))
// Matches words (\w), whitespace characters (\s), dashes (-), plus signs (+), questions marks (\?), semi-colons (;), brackets (\[\]), parenthesis (\(\)) and forward-slashes (\/)
// Each match may are may not have a trailing comma (,?). If one exists, it is removed before appending it to the list
const regex = new RegExp(/([\w\s-+\?;\[\]\(\)]+,?)/, 'g')
const regex = new RegExp(/([\w\s-\/+\?;\[\]\(\)]+,?)/, 'g')
let labels = []
let groups
do {
Expand All @@ -6443,6 +6443,7 @@ module.exports.extractLabels = function (labelsString) {
return labels
}


/***/ }),

/***/ 5568:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "changelog-enforcer",
"version": "3.4.0",
"version": "3.5.0",
"description": "Enforces that a changelog is kept up-to-date",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 059b4a9

Please sign in to comment.