From ccafa94d437a2b52ba376aae91dc665198162abe Mon Sep 17 00:00:00 2001 From: Roman Vyakhirev Date: Wed, 25 Feb 2026 15:49:23 +0100 Subject: [PATCH 1/3] chore: prepare atlas core v4.3.4 --- packages/atlas-core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/atlas-core/package.json b/packages/atlas-core/package.json index bfb4aa796..12666cf07 100644 --- a/packages/atlas-core/package.json +++ b/packages/atlas-core/package.json @@ -1,7 +1,7 @@ { "name": "atlas-core", "moduleName": "Atlas Core", - "version": "4.3.3", + "version": "4.3.4", "license": "Apache-2.0", "copyright": "© Mendix Technology BV 2024. All rights reserved.", "repository": { From d60fba3bb5385425422345bb8644d34f5bce1ce6 Mon Sep 17 00:00:00 2001 From: Content Teams Date: Wed, 25 Feb 2026 14:50:57 +0000 Subject: [PATCH 2/3] chore(atlas-core): update changelogs --- packages/atlas-core/CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/atlas-core/CHANGELOG.md b/packages/atlas-core/CHANGELOG.md index ecd2e83af..ac6236aff 100644 --- a/packages/atlas-core/CHANGELOG.md +++ b/packages/atlas-core/CHANGELOG.md @@ -6,10 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [4.3.4] Atlas Core - 2026-2-25 + ### Fixed - We fixed an issue with label alignment in Check Box widgets. -- We fixed an issue Text Box widget being stretched when corresponding label is multiline. +- We fixed an issue Text Box widget being stretched when corresponding label is multiline. ## [4.3.3] Atlas Core - 2026-1-30 From 19cc49d2faaafb3a49be5360b1d85bf5e8e57468 Mon Sep 17 00:00:00 2001 From: Roman Vyakhirev Date: Thu, 26 Feb 2026 10:09:50 +0100 Subject: [PATCH 3/3] fix: add License.txt copying in atlas-core release --- LICENSE | 6 +++--- packages/atlas-core/scripts/build.ts | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/LICENSE b/LICENSE index 51dfbf50d..8c705ebe1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Apache License + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ @@ -186,7 +186,7 @@ Apache License same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 Mendix Technology BV + Copyright 2022 Mendix Technology B.V. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -198,4 +198,4 @@ Apache License distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and - limitations under the License. + limitations under the License. \ No newline at end of file diff --git a/packages/atlas-core/scripts/build.ts b/packages/atlas-core/scripts/build.ts index fea5778d0..cdd92953f 100644 --- a/packages/atlas-core/scripts/build.ts +++ b/packages/atlas-core/scripts/build.ts @@ -87,9 +87,17 @@ async function copyStylesAndAssets(watchMode: boolean, destination: string): Pro const watchArg = watchMode ? "--watch" : ""; try { + // create version file const versionFile = join(destination, "themesource", "atlas_core", ".version"); echo("version:"); echo(packageFile.version).to(versionFile); + + // create license file + const licenseSource = join(repoRoot, "LICENSE"); + const licenseDestination = join(destination, "License.txt"); + cp(licenseSource, licenseDestination); + console.info(`Copied LICENSE to ${licenseDestination}`); + await concurrently( [ {