Skip to content

Commit 31c9c51

Browse files
chore: version packages (#745)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6bc0372 commit 31c9c51

13 files changed

Lines changed: 42 additions & 32 deletions

File tree

.changeset/chilly-bottles-wink.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/eight-frogs-love.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/strong-forks-flow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/vast-candles-throw.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/library/embedding/vanilla.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ The standalone subpath works as a single ESM module loaded directly from a
1010
CDN. No build step, no bundler.
1111

1212
```html
13-
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@4.5.0/style.css" />
13+
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@4.6.0/style.css" />
1414
<div id="apollon" style="width: 100%; height: 600px"></div>
1515

1616
<script type="module">
17-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.5.0"
17+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.6.0"
1818
1919
const saved = localStorage.getItem("diagram")
2020
const editor = new ApollonEditor(document.getElementById("apollon"), {
@@ -61,7 +61,7 @@ import {
6161
ApollonEditor,
6262
ApollonMode,
6363
UMLDiagramType,
64-
} from "https://esm.sh/@tumaet/apollon@4.5.0"
64+
} from "https://esm.sh/@tumaet/apollon@4.6.0"
6565

6666
const editor = new ApollonEditor(document.getElementById("apollon"), {
6767
type: UMLDiagramType.BPMN,

docs/src/pages/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ export class DiagramComponent {
7070

7171
const VANILLA_SNIPPET = `<link
7272
rel="stylesheet"
73-
href="https://esm.sh/@tumaet/apollon@4.5.0/style.css"
73+
href="https://esm.sh/@tumaet/apollon@4.6.0/style.css"
7474
/>
7575
<div id="apollon" style="width: 100%; height: 600px"></div>
7676
7777
<script type="module">
78-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.5.0"
78+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.6.0"
7979
8080
const saved = localStorage.getItem("diagram")
8181
const editor = new ApollonEditor(document.getElementById("apollon"), {

library/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @tumaet/apollon
22

3+
## 4.6.0
4+
5+
### Minor Changes
6+
7+
- [#742](https://github.com/ls1intum/Apollon/pull/742) [`dfb4479`](https://github.com/ls1intum/Apollon/commit/dfb4479bbf15671a6332c96b659efd9dd31c127b) Thanks [@tamang29](https://github.com/tamang29)! - The edge-type dropdown now shows a small preview of how each option renders — its real line style and arrowheads — so you can pick the right relationship at a glance, across class, component, deployment, use case, and BPMN diagrams.
8+
9+
### Patch Changes
10+
11+
- [#744](https://github.com/ls1intum/Apollon/pull/744) [`1fdb9bc`](https://github.com/ls1intum/Apollon/commit/1fdb9bc70b2fcfc119619876d595b36eebb36f8a) Thanks [@tamang29](https://github.com/tamang29)! - Fix live collaboration cursors showing up in the wrong place — or drifting outside the editor — when collaborators have different editor sizes (for example, when one has a side panel open). Remote cursors are now positioned relative to the modeling canvas instead of the browser window.
12+
313
## 4.5.0
414

515
### Minor Changes

library/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,11 +178,11 @@ export class DiagramEditorComponent {
178178
### Vanilla JS / CDN
179179

180180
```html
181-
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@4.5.0/style.css" />
181+
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@4.6.0/style.css" />
182182
<div id="apollon" style="width: 100%; height: 600px"></div>
183183

184184
<script type="module">
185-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.5.0"
185+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@4.6.0"
186186
187187
const saved = localStorage.getItem("diagram")
188188
const editor = new ApollonEditor(document.getElementById("apollon"), {

library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tumaet/apollon",
3-
"version": "4.5.0",
3+
"version": "4.6.0",
44
"description": "Embeddable UML modeling editor. Mounts into any DOM node — works inside Angular, Vue, Svelte, vanilla JS, or React hosts.",
55
"keywords": [
66
"uml",

standalone/server/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tumaet/server
22

3+
## 4.6.0
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`1fdb9bc`](https://github.com/ls1intum/Apollon/commit/1fdb9bc70b2fcfc119619876d595b36eebb36f8a), [`dfb4479`](https://github.com/ls1intum/Apollon/commit/dfb4479bbf15671a6332c96b659efd9dd31c127b)]:
8+
- @tumaet/apollon@4.6.0
9+
310
## 4.5.1
411

512
### Patch Changes
@@ -17,7 +24,7 @@
1724
- [#689](https://github.com/ls1intum/Apollon/pull/689) Thanks [@FelixTJDietrich](https://github.com/FelixTJDietrich)! - The Redis Stack container now persists to the `/data` volume (`--dir /data`). It previously defaulted to `/var/lib/redis-stack` — the container's ephemeral layer — so diagrams written between deploys could be silently lost. Operators: redeploy the database so it picks up the corrected data directory.
1825

1926
- Updated dependencies:
20-
- @tumaet/apollon@4.5.0
27+
- @tumaet/apollon@4.6.0
2128

2229
## 4.4.1
2330

0 commit comments

Comments
 (0)