Skip to content

Commit 06ce0db

Browse files
Merge pull request #83 from InformaticsMatters/dev
merge dev to main
2 parents 27dec82 + bddbb01 commit 06ce0db

5 files changed

Lines changed: 293 additions & 148 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ on:
77
- dev
88

99
permissions:
10-
contents: read
10+
contents: write
11+
issues: write
12+
pull-requests: write
1113
id-token: write
1214

1315
concurrency:
@@ -36,6 +38,9 @@ jobs:
3638
node-version: 22.21.1
3739
cache: pnpm
3840

41+
- name: Upgrade npm to latest
42+
run: npm install -g npm@latest
43+
3944
- name: Install dependencies
4045
run: pnpm install --frozen-lockfile
4146

@@ -46,7 +51,7 @@ jobs:
4651
private-key: ${{ secrets.APP_PRIVATE_KEY }}
4752

4853
- name: Semantic Release
49-
uses: cycjimmy/semantic-release-action@v4
54+
uses: cycjimmy/semantic-release-action@v6
5055
id: semantic
5156
env:
5257
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [3.0.2-dev.1](https://github.com/InformaticsMatters/eslint-config-squonk/compare/v3.0.1...3.0.2-dev.1) (2025-12-31)
2+
3+
4+
### Bug Fixes
5+
6+
* remove unused semantic release deps ([1a80d95](https://github.com/InformaticsMatters/eslint-config-squonk/commit/1a80d95d3173b5a3927702281ac836d280555bfe))
7+
* update repository URL format in package.json ([0622ebd](https://github.com/InformaticsMatters/eslint-config-squonk/commit/0622ebdbfad521e5b287276d572e0f47d8ef3d7a))
8+
* update semantic release configuration for npm publishing and tag format ([df392fa](https://github.com/InformaticsMatters/eslint-config-squonk/commit/df392fabb24e477ec163a31f351d227441fc72a9))
9+
110
# Changelog
211

312
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@squonk/eslint-config",
3-
"version": "3.0.1",
3+
"version": "3.0.2-dev.1",
44
"description": "ESLint config used by Squonk front-end apps",
55
"type": "module",
66
"main": "index.js",
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/InformaticsMatters/eslint-config-squonk.git"
9+
"url": "git@github.com:InformaticsMatters/eslint-config-squonk.git"
1010
},
1111
"private": false,
1212
"author": "Informatics Matters",
@@ -37,10 +37,6 @@
3737
"@semantic-release/exec": "7.1.0",
3838
"@semantic-release/git": "10.0.1",
3939
"@semantic-release/changelog": "6.0.3",
40-
"@semantic-release/commit-analyzer": "13.0.1",
41-
"@semantic-release/github": "11.0.6",
42-
"@semantic-release/npm": "12.0.2",
43-
"@semantic-release/release-notes-generator": "14.1.0",
44-
"semantic-release": "24.2.9"
40+
"semantic-release": "25.0.2"
4541
}
4642
}

0 commit comments

Comments
 (0)