Skip to content

Commit 066237c

Browse files
authored
Merge branch 'main' into fix/WC-2989-chart-static-sample-data-issue
2 parents 64bb8b4 + da218d7 commit 066237c

File tree

40 files changed

+151
-51
lines changed

40 files changed

+151
-51
lines changed

automation/run-e2e/lib/update-test-project.mjs

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,28 @@ async function updateAtlasThemeSource() {
6464
}
6565

6666
cp("-r", themeSourcePath, config.testProjectDir);
67+
68+
// Fix file permissions to ensure Docker can write to theme files
69+
// The Atlas theme files are copied with read-only permissions
70+
// but mxbuild needs to write to some generated files during build
71+
sh.exec(`chmod -R +w "${config.testProjectDir}/themesource"`, { silent: true });
6772
}
6873

6974
async function updateAtlasTheme() {
7075
console.log("Copying Atlas theme files from latest Atlas UI theme release");
7176

7277
rm("-rf", "tests/testProject/theme");
7378

74-
const release = await getLatestReleaseByName("Atlas UI - Theme Folder Files", config.atlasCoreReleaseUrl);
75-
76-
if (!release) {
77-
throw new Error("Can't fetch latest Atlas UI theme release");
79+
// Fetch the specific release by tag from GitHub API
80+
const tag = "atlasui-theme-files-2024-01-25";
81+
const releaseResponse = await fetchGithubRestAPI(`${config.atlasCoreReleaseUrl}/tags/${tag}`);
82+
if (!releaseResponse.ok) {
83+
throw new Error(`Can't fetch release for tag: ${tag}`);
84+
}
85+
const release = await releaseResponse.json();
86+
if (!release.assets || release.assets.length === 0) {
87+
throw new Error(`No assets found for release tag: ${tag}`);
7888
}
79-
8089
const [{ browser_download_url }] = release.assets;
8190
const downloadedPath = join(await usetmp(), config.nameForDownloadedAtlasTheme);
8291
const outPath = await usetmp();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"latest": "10.21.1.64969",
2+
"latest": "10.24.0.73019",
33
"9": "9.24.0.2965",
44
"8": "8.18.24.2858"
55
}

packages/pluggableWidgets/area-chart-web/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 updated shared charts dependency.
12+
913
## [6.2.0] - 2025-06-03
1014

1115
### Fixed

packages/pluggableWidgets/area-chart-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/area-chart-web",
33
"widgetName": "AreaChart",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"description": "An area chart displays a solid color between the traces of a graph.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/area-chart-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="AreaChart" version="6.2.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="AreaChart" version="6.2.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="AreaChart.xml" />
66
</widgetFiles>

packages/pluggableWidgets/bar-chart-web/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 updated shared charts dependency.
12+
913
## [6.2.0] - 2025-06-03
1014

1115
### Fixed

packages/pluggableWidgets/bar-chart-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/bar-chart-web",
33
"widgetName": "BarChart",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"description": "Shows difference between the data points for one or more categories.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

packages/pluggableWidgets/bar-chart-web/src/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<package xmlns="http://www.mendix.com/package/1.0/">
3-
<clientModule name="BarChart" version="6.2.0" xmlns="http://www.mendix.com/clientModule/1.0/">
3+
<clientModule name="BarChart" version="6.2.1" xmlns="http://www.mendix.com/clientModule/1.0/">
44
<widgetFiles>
55
<widgetFile path="BarChart.xml" />
66
</widgetFiles>

packages/pluggableWidgets/bubble-chart-web/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 updated shared charts dependency.
12+
913
## [6.2.0] - 2025-06-03
1014

1115
### Fixed

packages/pluggableWidgets/bubble-chart-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@mendix/bubble-chart-web",
33
"widgetName": "BubbleChart",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"description": "Shows data in a bubble format graph.",
66
"copyright": "© Mendix Technology BV 2025. All rights reserved.",
77
"license": "Apache-2.0",

0 commit comments

Comments
 (0)