Skip to content

Commit 42bb9d9

Browse files
committed
Merge branch 'development' into pr/11400
2 parents 83edab1 + b4b3662 commit 42bb9d9

611 files changed

Lines changed: 1008 additions & 2083 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude/settings.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"AWS_PROFILE": "my-sandbox",
77
"AWS_REGION": "eu-central-1",
88
"CLAUDE_CODE_USE_BEDROCK": "1",
9-
"ANTHROPIC_MODEL": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
9+
"ANTHROPIC_MODEL": "eu.anthropic.claude-sonnet-4-6",
1010
"ANTHROPIC_SMALL_FAST_MODEL": "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
1111
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "eu.anthropic.claude-haiku-4-5-20251001-v1:0",
12-
"ANTHROPIC_DEFAULT_OPUS_MODEL": "eu.anthropic.claude-opus-4-6-v1",
13-
"ANTHROPIC_DEFAULT_SONNET_MODEL": "eu.anthropic.claude-sonnet-4-5-20250929-v1:0",
12+
"ANTHROPIC_DEFAULT_OPUS_MODEL": "eu.anthropic.claude-opus-4-8",
13+
"ANTHROPIC_DEFAULT_SONNET_MODEL": "eu.anthropic.claude-sonnet-4-6",
1414
"DISABLE_PROMPT_CACHING": "0",
1515
"CLAUDE_CODE_MAX_OUTPUT_TOKENS": "10240",
1616
"MAX_THINKING_TOKENS": "1024"

.github/workflows/vale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Vale Linting
22

3-
# Trigger on PRs that change Markdown files
3+
# Trigger on PRs that change Markdown files (but skip run on draft PRs)
44
on:
55
pull_request:
66
types: [opened, synchronize, reopened, ready_for_review]

assets/scss/_styles_project.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,6 @@
3131
margin-right:12px;
3232
}
3333

34-
.alert.has-line-breaks { // Reduce bottom padding of .alert when alert text has line breaks (class added in alerts.html)
35-
padding-bottom: 0px;
36-
}
37-
3834
// Anchor icon styling for anchor.js
3935

4036
.anchor-icon {

content/en/docs/apidocs-mxsdk/apidocs/governance/audit-logs-api.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@ no_list: false
77
description_list: true
88
description: "Provides the documentation for the Audit Logging API."
99
linktitle: "Audit Logs"
10-
beta: true
1110
---
1211

13-
{{% alert color="warning" %}}
14-
This feature is in Public Beta. For more information, refer to [Release Status](/releasenotes/release-status/).
15-
{{% /alert %}}
16-
1712
## Introduction
1813

1914
You can use the Audit Logging API to integrate with security information and event management tools.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/pluggable-widgets/pluggable-widgets-client-apis/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Client APIs"
33
linktitle: "Client APIs for Pluggable Widgets"
44
url: /apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/
5-
description: A guide for understanding the client APIs available to pluggable widgets in Mx10.
5+
description: A guide for understanding the client APIs available to pluggable widgets.
66
weight: 20
77
aliases:
88
- /apidocs-mxsdk/apidocs/client-apis-for-pluggable-widgets

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/pluggable-widgets/pluggable-widgets-client-apis/pluggable-widgets-client-apis-list-values.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "List Values"
33
url: /apidocs-mxsdk/apidocs/pluggable-widgets-client-apis-list-values/
4-
description: A guide to understanding the list of objects for the datasource property in Mx10.
4+
description: A guide to understanding the list of objects for the datasource property.
55
---
66

77
## Introduction

content/en/docs/apidocs-mxsdk/apidocs/studio-pro-11/pluggable-widgets/pluggable-widgets-property-types.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,10 +480,12 @@ Then the Studio Pro UI for the property appears like this:
480480

481481
The action property type allows a user to configure an action which can do things like call nanoflows, save changes, and open pages.
482482

483-
If a `dataSource` attribute is not specified, the client will receive an `ActionValue` representing the action or `undefined` if the **Do nothing** action was selected.
483+
If a `dataSource` attribute is not specified, the client will receive an [`ActionValue`](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/#actionvalue) representing the action or `undefined` if the **Do nothing** action was selected.
484484

485485
When a `dataSource` attribute is specified and configured by the user, it is passed as a [`ListActionValue`](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis-list-values/#listactionvalue). For more information, see the [Datasource](#datasource) section below.
486486

487+
Action properties can be preconfigured using the `defaultValue` and `defaultType` attributes. This is particularly useful when the widget is intended to be used with a specific microflow, nanoflow, or page. When the property [exposes action variables](#action-xml-elements), they are automatically mapped to parameters of matching name and type.
488+
487489
#### XML Attributes {#xml-attributes}
488490

489491
| Attribute | Required | Attribute Type | Description |
@@ -496,7 +498,7 @@ When a `dataSource` attribute is specified and configured by the user, it is pas
496498

497499
#### XML Elements {#action-xml-elements}
498500

499-
`<actionVariables>` — Defines variables a widget provides when calling [execute() on an ActionValue](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/#execute). The variables are made available in Studio Pro when configuring [Call a Microflow](/refguide/on-click-event/#call-microflow) and [Call a Nanoflow](/refguide/on-click-event/#call-nanoflow) actions.
501+
`<actionVariables>` — Defines variables a widget provides when calling [execute() on an ActionValue](/apidocs-mxsdk/apidocs/pluggable-widgets-client-apis/#execute). The variables are made available in Studio Pro when configuring [Call a Microflow](/refguide/on-click-event/#call-microflow) and [Call a Nanoflow](/refguide/on-click-event/#call-nanoflow) actions. Action variables are automatically mapped to parameters of the same name (`key`) and type.
500502

501503
`<actionVariable>` (required one or more) — Represents a primitive value provided by the widget as an argument when calling `ActionValue.execute()`. The variable is defined by the following attributes:
502504

content/en/docs/community-tools/contribute-to-mendix-docs/style-guide/product-naming-guide.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -132,20 +132,6 @@ A solution for an air-gapped secure Mendix deployment.
132132

133133
This section contains various Mendix terms that are used in the product UI and documentation.
134134

135-
### application & app
136-
137-
An "application" or "app" can be one of the following:
138-
139-
* A local application
140-
* A Free App
141-
* A licensed application hosted on Mendix Cloud; another cloud such as AWS, SAP Cloud, or IBM Cloud Portal; or on the user's own server
142-
143-
Do not capitalize (meaning, do not write "Mendix App").
144-
145-
Do not replace with "app project" (or "project") generically, even when referring to project management-like tasks. **Project** is still used in some UI text, but that usage is being phased out. Using "app" in all instances is prioritized.
146-
147-
The full word "application" has a more well-rounded meaning to it (as in, web and mobile apps), whereas "app" may suggest just mobile apps to the reader. Accordingly, it can be better to use "application" at the beginning of documents and then switch to "app" later on. We want to make it clear that Mendix is not just for building mobile apps, but all kinds of applications.
148-
149135
### App ID
150136

151137
Always capitalize.

content/en/docs/control-center/apps/apps-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Clicking an app name in a tab or the search results opens its details page, whic
6666
* **App Info** – Shows the **Description** and **App ID**, also found in your app's [Settings](/developerportal/general-settings/).
6767
* **Members** – Lists the team members in the app development team.
6868
* You can directly deactivate a team member from the app by clicking their name and selecting **Deactivate Member**.
69-
* For other member management options, click **Manage Members**, which will open the [Team](/developerportal/general/team/#managing) page of the app. As a Mendix Admin, you can also add yourself to a team via this page.
69+
* For other member management options, click **Manage Members**, which will open the [Team](/developerportal/general/team/#managing) page of the app.
7070
* **Environments** – Lists all Mendix Cloud environments. For the free Mendix Cloud environment, you can delete the environment on this tab. Once the free environment is deleted, all data will be removed. However, the app team members can still access the associated app repository in the Mendix Portal.
7171

7272
If the app is not a licensed app, you can see the action menu ({{% icon name="three-dots-menu-horizontal" %}}) on the upper-right corner of the page. If the app is active, then you have the options to deactivate the app and delete the app; and if the app is deactivated, then you have the options to activate the app and delete the app.

content/en/docs/control-center/company/project-categories.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Follow these steps to add a category:
3232
You can add multiple values as a comma-separated list.
3333
Each entry consists of a unique name and code. The unique code is automatically generated for you. You can edit it afterwards, as long as you provide a new unique code.
3434

35+
You can add a maximum of 10 categories.
36+
3537
### Editing Categories
3638

3739
Follow these steps to edit a category:

0 commit comments

Comments
 (0)