Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ Set this to `"never"` to leave the titles untouched, allowing uppercase characte

## commitMessagePrefix

This is used to alter `commitMessage` and `prTitle` without needing to copy/paste the whole string.
This is used to alter `commitMessage` and `prTitle` (which also affects how it's displayed in the Dependency Dashboard) without needing to copy/paste the whole string.
The "prefix" is usually an automatically applied semantic commit prefix, but it can also be statically configured.

## commitMessageSuffix
Expand Down
7 changes: 7 additions & 0 deletions lib/modules/manager/mise/extract.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ describe('modules/manager/mise/extract', () => {
lefthook = "1.11.13"
localstack = "4.3.0"
lychee = "0.19.1"
npm = "11.2.0"
opentofu = "1.6.1"
packer = "1.15.0"
pipx = "1.7.1"
Expand Down Expand Up @@ -225,6 +226,12 @@ describe('modules/manager/mise/extract', () => {
extractVersion: '^lychee-v(?<version>\\S+)',
packageName: 'lycheeverse/lychee',
},
{
currentValue: '11.2.0',
datasource: 'npm',
depName: 'npm',
packageName: 'npm',
},
{
currentValue: '1.6.1',
datasource: 'github-releases',
Expand Down
8 changes: 8 additions & 0 deletions lib/modules/manager/mise/upgradeable-tooling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { GithubTagsDatasource } from '../../datasource/github-tags/index.ts';
import { HexpmBobDatasource } from '../../datasource/hexpm-bob/index.ts';
import { JavaVersionDatasource } from '../../datasource/java-version/index.ts';
import { NodeVersionDatasource } from '../../datasource/node-version/index.ts';
import { NpmDatasource } from '../../datasource/npm/index.ts';
import { RubyVersionDatasource } from '../../datasource/ruby-version/index.ts';
import * as regexVersioning from '../../versioning/regex/index.ts';
import * as semverVersioning from '../../versioning/semver/index.ts';
Expand Down Expand Up @@ -353,6 +354,13 @@ const miseRegistryTooling: Record<string, ToolingDefinition> = {
extractVersion: '^lychee-v(?<version>\\S+)',
},
},
npm: {
misePluginUrl: 'https://mise.jdx.dev/registry.html#tools',
config: {
packageName: 'npm',
datasource: NpmDatasource.id,
},
},
opentofu: {
misePluginUrl: 'https://mise.jdx.dev/registry.html#tools',
config: {
Expand Down
8 changes: 8 additions & 0 deletions lib/modules/manager/swift/artifacts.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ vi.mock('../../datasource/index.ts', async () => {
const v2Fixture = JSON.stringify(
{
pins: [
{
identity: 'by-commit',
kind: 'remoteSourceControl',
location: 'https://github.com/example/by-commit',
state: {
revision: 'decaf',
},
},
{
identity: 'alamofire',
kind: 'remoteSourceControl',
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/manager/swift/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const PackageResolvedPin = z.object({
location: z.string(),
state: z.object({
revision: z.string(),
version: z.string().nullable(),
version: z.string().nullable().optional(),
branch: z.string().nullable().optional(),
}),
});
Expand Down
Loading