Skip to content

Commit b41b143

Browse files
committed
chore: do adjustments to target 2.30.x
1 parent c61af0b commit b41b143

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/CreateGitHubRelease.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
inputs:
77
package:
88
description: "Package name to release (name in package.json)"
9+
default: "data-widgets"
910
required: true
1011
jobs:
1112
create-release:

automation/utils/src/changelog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export async function updateChangelogsAndCreatePR(
3434
await gh.createGithubPRFrom({
3535
title: `${appName} v${info.version.format()}: Update changelog`,
3636
body: "This is an automated PR that merges changelog update to master.",
37-
base: "main",
37+
base: "lts/data-widgets/2.30",
3838
head: releaseBranchName,
3939
repo: info.repository.url
4040
});

packages/modules/data-widgets/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- We backported fixes and improvements from DataWidgets 2.32.1 to DataWidgets 2.30, ensuring older versions benefit from recent updates.
12+
913
## [2.32.1] DataWidgets - 2025-05-28
1014

1115
### [2.30.6] Datagrid

packages/modules/data-widgets/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/data-widgets",
33
"moduleName": "Data Widgets",
4-
"version": "2.32.1",
4+
"version": "2.30.6",
55
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
66
"license": "Apache-2.0",
77
"private": true,
@@ -27,13 +27,13 @@
2727
},
2828
"moduleFolderNameInModeler": "datawidgets",
2929
"marketplace": {
30-
"minimumMXVersion": "10.21.0.64362",
30+
"minimumMXVersion": "10.12.6.46815",
3131
"appNumber": 116540,
3232
"appName": "Data Widgets"
3333
},
3434
"testProject": {
3535
"githubUrl": "https://github.com/mendix/DataWidgets-module",
36-
"branchName": "mts/10.21"
36+
"branchName": "mts/10.12"
3737
},
3838
"scripts": {
3939
"build:deps": "turbo run build --filter=data-widgets^...",

0 commit comments

Comments
 (0)