Skip to content

Commit da4e0f7

Browse files
Update to JSON Forms 3.6 (#312)
* Add release notes for 3.6.0 * Update JSON Forms dependencies to 3.6 * Update api docs * Update node version in .nvmrc to Node 22 * Fix next version calculation by ignoring tag `vv3.5.0-beta.2`
1 parent 43d256c commit da4e0f7

File tree

908 files changed

+2179
-1556
lines changed

Some content is hidden

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

908 files changed

+2179
-1556
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.18.2
1+
v22.14.0

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ JS_FILE="./static/current-version.js"
99
function next() {
1010
printf "\n" >> "$JS_FILE"
1111

12-
NEXTVERSIONCANDIDATE=$(curl --silent "https://api.github.com/repos/eclipsesource/jsonforms/tags" | grep '"name":' | head -1 | sed -E 's/.*"([^"]+)".*/\1/')
12+
# Get next version from tags and remove the tag "vv3.5.0-beta.2" as it is incorrectly sorted first due to the "vv" prefix.
13+
NEXTVERSIONCANDIDATE=$(curl --silent "https://api.github.com/repos/eclipsesource/jsonforms/tags" | grep '"name":' | grep -v '"vv3.5.0-beta.2"' | head -1 | sed -E 's/.*"([^"]+)".*/\1/')
1314
if [[ ${NEXTVERSIONCANDIDATE:0:1} == "v" ]] && [[ $NEXTVERSIONCANDIDATE != $CURRENTVERSION ]]; then
1415
NEXTVERSION="${NEXTVERSIONCANDIDATE:1}"
1516
fi
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
slug: jsonforms-3-6-0
3+
title: JSON Forms 3.6.0
4+
author: JSON Forms
5+
author_image_url: /img/logo.svg
6+
---
7+
We released v3.6.0 🎉.
8+
9+
Besides various small fixes and improvements, the release adds support for Angular 20.
10+
11+
You can find the full changelog in the [Github release notes](https://github.com/eclipsesource/jsonforms/releases/tag/v3.6.0).
12+
13+
Any questions? Check out our [community forum](https://jsonforms.discourse.group).

package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
"@easyops-cn/docusaurus-search-local": "^0.47.0",
2525
"@emotion/react": "^11.11.3",
2626
"@emotion/styled": "^11.11.0",
27-
"@jsonforms/core": "^3.5.1",
28-
"@jsonforms/examples": "^3.5.1",
29-
"@jsonforms/material-renderers": "^3.5.1",
30-
"@jsonforms/react": "^3.5.1",
27+
"@jsonforms/core": "^3.6.0",
28+
"@jsonforms/examples": "^3.6.0",
29+
"@jsonforms/material-renderers": "^3.6.0",
30+
"@jsonforms/react": "^3.6.0",
3131
"@mdx-js/react": "^3.0.0",
3232
"@mui/icons-material": "^6.1.0",
3333
"@mui/lab": "^6.0.0-beta.9",

static/api/angular-material/classes/ArrayLayoutRenderer.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

static/api/angular-material/classes/AutocompleteControlRenderer.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

static/api/angular-material/classes/BooleanControlRenderer.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

static/api/angular-material/classes/CategorizationTabLayoutRenderer.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

static/api/angular-material/classes/DateControlRenderer.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)