Skip to content

Commit cf1b2fd

Browse files
committed
Merge branch 'main' into fix/migrate-to-npm-package-core
2 parents 23db13b + 07bc3ac commit cf1b2fd

Some content is hidden

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

45 files changed

+16301
-22774
lines changed

.github/workflows/build-project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5.0.0
23+
uses: actions/checkout@v6.0.0
2424
with:
2525
submodules: 'true'
2626

@@ -35,10 +35,10 @@ jobs:
3535
id: buildx
3636
if: ${{ github.event_name == 'pull_request' }}
3737
uses: docker/setup-buildx-action@v3
38-
- name: Use Node.js 18.x
38+
- name: Use Node.js 20.x
3939
uses: actions/setup-node@v6
4040
with:
41-
node-version: '18.x'
41+
node-version: '20.x'
4242

4343
- name: Test application with npm
4444
timeout-minutes: 45

.github/workflows/release-project.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5.0.0
19+
uses: actions/checkout@v6.0.0
2020
with:
2121
submodules: 'true'
2222

@@ -39,10 +39,10 @@ jobs:
3939
with:
4040
username: ${{ secrets.DOCKER_HUB_USERNAME }}
4141
password: ${{ secrets.DOCKER_HUB_TOKEN }}
42-
- name: Use Node.js 18.x
42+
- name: Use Node.js 20.x
4343
uses: actions/setup-node@v6
4444
with:
45-
node-version: '18.x'
45+
node-version: '20.x'
4646

4747
- name: Build application with npm
4848
run: |

.github/workflows/test-and-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ jobs:
66
runs-on: ubuntu-22.04
77
steps:
88
- name: Checkout
9-
uses: actions/checkout@v5.0.0
9+
uses: actions/checkout@v6.0.0
1010
with:
1111
submodules: 'true'
1212

13-
- name: Use Node.js 18.x
13+
- name: Use Node.js 20.x
1414
uses: actions/setup-node@v6
1515
with:
16-
node-version: "18.x"
16+
node-version: "20.x"
1717

1818
- name: Install and Test OpenSCD
1919
run: |

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5.0.0
14+
uses: actions/checkout@v6.0.0
1515
with:
1616
submodules: 'true'
1717

18-
- name: Use Node.js 18.x
18+
- name: Use Node.js 20.x
1919
uses: actions/setup-node@v6
2020
with:
21-
node-version: "18.x"
21+
node-version: "20.x"
2222

2323
- name: Install and Test
2424
run: |

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"packages/openscd": "0.37.0",
33
"packages/core": "0.1.4",
4-
".": "0.43.0"
4+
".": "0.44.0"
55
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.44.0](https://github.com/openscd/open-scd/compare/v0.43.0...v0.44.0) (2025-11-10)
4+
5+
6+
### Features
7+
8+
* API compliant editor ([#1719](https://github.com/openscd/open-scd/issues/1719)) ([e43ee6a](https://github.com/openscd/open-scd/commit/e43ee6a10805d1d09e5a8adb539be7d68a65ab6a))
9+
* Form library ([#1718](https://github.com/openscd/open-scd/issues/1718)) ([396bb13](https://github.com/openscd/open-scd/commit/396bb13d0d5ecf6c3994072f00958587bb9e5fcd))
10+
11+
12+
### Bug Fixes
13+
14+
* update node to 20.x in release workflow ([#1716](https://github.com/openscd/open-scd/issues/1716)) ([115f22a](https://github.com/openscd/open-scd/commit/115f22a6f1f9cfe02a4817ec03811bcc53cd1fea))
15+
316
## [0.43.0](https://github.com/openscd/open-scd/compare/v0.42.0...v0.43.0) (2025-10-27)
417

518

0 commit comments

Comments
 (0)