Skip to content

Commit 79470d7

Browse files
chore: version packages (#788)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 82ef0af commit 79470d7

12 files changed

Lines changed: 45 additions & 33 deletions

File tree

.changeset/glass-blur-library.md

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

.changeset/glass-blur-webapp.md

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

docs/library/api/headless-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ await page.setContent(`
192192
<!DOCTYPE html>
193193
<html><body>
194194
<script type="module">
195-
import { ApollonEditor, importDiagram } from "https://esm.sh/@tumaet/apollon@5.0.0";
195+
import { ApollonEditor, importDiagram } from "https://esm.sh/@tumaet/apollon@5.0.1";
196196
window.exportSVG = async (model) => {
197197
const result = await ApollonEditor.exportModelAsSvg(importDiagram(model), {
198198
svgMode: "compat",

docs/library/embedding/vanilla.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ import URL automatically — there is nothing extra to load. (With a bundler you
1414
install the peers yourself — see [Install](/library/embedding/install).)
1515

1616
```html
17-
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.0.0/style.css" />
17+
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.0.1/style.css" />
1818
<div id="apollon" style="width: 100%; height: 600px"></div>
1919

2020
<script type="module">
21-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.0"
21+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.1"
2222
2323
const saved = localStorage.getItem("diagram")
2424
const editor = new ApollonEditor(document.getElementById("apollon"), {
@@ -65,7 +65,7 @@ import {
6565
ApollonEditor,
6666
ApollonMode,
6767
UMLDiagramType,
68-
} from "https://esm.sh/@tumaet/apollon@5.0.0"
68+
} from "https://esm.sh/@tumaet/apollon@5.0.1"
6969

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

docs/src/pages/index.tsx

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

7171
const VANILLA_SNIPPET = `<link
7272
rel="stylesheet"
73-
href="https://esm.sh/@tumaet/apollon@5.0.0/style.css"
73+
href="https://esm.sh/@tumaet/apollon@5.0.1/style.css"
7474
/>
7575
<div id="apollon" style="width: 100%; height: 600px"></div>
7676
7777
<script type="module">
7878
// esm.sh resolves and serves Apollon's required peers (react, react-dom,
7979
// @xyflow/react, yjs, y-protocols) automatically.
80-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.0"
80+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.1"
8181
8282
const saved = localStorage.getItem("diagram")
8383
const editor = new ApollonEditor(document.getElementById("apollon"), {

library/CHANGELOG.md

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

3+
## 5.0.1
4+
5+
### Patch Changes
6+
7+
- [#787](https://github.com/ls1intum/Apollon/pull/787) [`82ef0af`](https://github.com/ls1intum/Apollon/commit/82ef0af97792d17495f318ebdfee908ba0cdbf13) Thanks [@FelixTJDietrich](https://github.com/FelixTJDietrich)! - Fixes the editor's floating chrome — palette, node toolbars, and zoom/undo controls — losing its frosted-glass blur in Chrome and Firefox, where it rendered as a flat translucent panel.
8+
39
## 5.0.0
410

511
### Major Changes

library/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,11 @@ export class DiagramEditorComponent {
167167
`yjs` and `y-protocols` are required peers, but on the CDN path esm.sh resolves and serves them from the import URL automatically — there is nothing extra to load. (With a bundler you install the peers yourself.)
168168

169169
```html
170-
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.0.0/style.css" />
170+
<link rel="stylesheet" href="https://esm.sh/@tumaet/apollon@5.0.1/style.css" />
171171
<div id="apollon" style="width: 100%; height: 600px"></div>
172172

173173
<script type="module">
174-
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.0"
174+
import { ApollonEditor } from "https://esm.sh/@tumaet/apollon@5.0.1"
175175
176176
const saved = localStorage.getItem("diagram")
177177
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": "5.0.0",
3+
"version": "5.0.1",
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: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @tumaet/server
22

3+
## 5.0.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`82ef0af`](https://github.com/ls1intum/Apollon/commit/82ef0af97792d17495f318ebdfee908ba0cdbf13)]:
8+
- @tumaet/apollon@5.0.1
9+
310
## 5.0.0
411

512
### Patch Changes
@@ -11,7 +18,7 @@
1118
**Webapp:** replace `@ionic/react` (imported only for `isPlatform()` UA checks) with a 45-line vendored `platform.ts`, cutting the Stencil runtime from the initial bundle (~−47% initial gzip) and de-duplicating the editor; `uuid` → native `crypto.randomUUID`.
1219

1320
- Updated dependencies [[`16e90a7`](https://github.com/ls1intum/Apollon/commit/16e90a739b5e50938fd9276660494b317473d6ca), [`e4a44f2`](https://github.com/ls1intum/Apollon/commit/e4a44f200c864e8684d01bf4113968c7dfc7fa96), [`e4a44f2`](https://github.com/ls1intum/Apollon/commit/e4a44f200c864e8684d01bf4113968c7dfc7fa96), [`91d36ad`](https://github.com/ls1intum/Apollon/commit/91d36addd69f1982c79df1dfc68c8a5da17e7f8a)]:
14-
- @tumaet/apollon@5.0.0
21+
- @tumaet/apollon@5.0.1
1522

1623
## 4.9.0
1724

@@ -26,14 +33,14 @@
2633
- [#677](https://github.com/ls1intum/Apollon/pull/677) [`41059b1`](https://github.com/ls1intum/Apollon/commit/41059b1c93e4edc483c8f0c039d4378a7bab2489) Thanks [@FelixTJDietrich](https://github.com/FelixTJDietrich)! - Server-rendered diagram images and PDFs now place edge labels on their edge (at the path midpoint) instead of at a fallback point off to the side. Edge-relative decorators (e.g. the SFC transition condition) are positioned the same way.
2734

2835
- Updated dependencies [[`8251733`](https://github.com/ls1intum/Apollon/commit/8251733a965e9fd3cd0beb7565e3abf138a895d5), [`d03f562`](https://github.com/ls1intum/Apollon/commit/d03f562b3fabfc92e7cff870fe08061d678926f6), [`2115fe3`](https://github.com/ls1intum/Apollon/commit/2115fe3d2c787a9055e6d9fbeab61a122eaaf6eb), [`295a627`](https://github.com/ls1intum/Apollon/commit/295a627e1067c0d23fd71ef3e26c8554a4a6e073), [`515777b`](https://github.com/ls1intum/Apollon/commit/515777ba6a45c0110adfa24c1fdb76251d0e9636), [`451ca97`](https://github.com/ls1intum/Apollon/commit/451ca97872d1afb5478e628179151f7acc71aab7)]:
29-
- @tumaet/apollon@5.0.0
36+
- @tumaet/apollon@5.0.1
3037

3138
## 4.8.0
3239

3340
### Patch Changes
3441

3542
- Updated dependencies [[`82942cd`](https://github.com/ls1intum/Apollon/commit/82942cddec7d3dd33711d3f38eba92e10c1da0c9), [`5013fc6`](https://github.com/ls1intum/Apollon/commit/5013fc632ea0e18c9fce5baf1f66f1d50617a358), [`5d4a8dd`](https://github.com/ls1intum/Apollon/commit/5d4a8dd5d6d34d1c26d4258a99aadc02faca1c17), [`1bb280d`](https://github.com/ls1intum/Apollon/commit/1bb280d23f9a4cfb9339a04b2311c1c50aeffae7)]:
36-
- @tumaet/apollon@5.0.0
43+
- @tumaet/apollon@5.0.1
3744

3845
## 4.7.0
3946

@@ -52,14 +59,14 @@
5259
It also guards grading integrity: a submission containing glyphs outside the bundled font's coverage is logged (they would render in a fallback face that may not match the editor), and a node with missing or invalid dimensions is rejected with a `422` naming the node, instead of being silently given a default size.
5360

5461
- Updated dependencies [[`6fe657c`](https://github.com/ls1intum/Apollon/commit/6fe657cfabbb1f60936d03b758039fe1e7fade6f), [`6fe657c`](https://github.com/ls1intum/Apollon/commit/6fe657cfabbb1f60936d03b758039fe1e7fade6f), [`21c6f99`](https://github.com/ls1intum/Apollon/commit/21c6f9914b1ab24d79fa6f6d6527ca6260db8c43), [`1fc31cc`](https://github.com/ls1intum/Apollon/commit/1fc31cc7c1d2c8dedb3555edb5d5d063f572acae)]:
55-
- @tumaet/apollon@5.0.0
62+
- @tumaet/apollon@5.0.1
5663

5764
## 4.6.0
5865

5966
### Patch Changes
6067

6168
- Updated dependencies [[`1fdb9bc`](https://github.com/ls1intum/Apollon/commit/1fdb9bc70b2fcfc119619876d595b36eebb36f8a), [`dfb4479`](https://github.com/ls1intum/Apollon/commit/dfb4479bbf15671a6332c96b659efd9dd31c127b)]:
62-
- @tumaet/apollon@5.0.0
69+
- @tumaet/apollon@5.0.1
6370

6471
## 4.5.1
6572

@@ -78,7 +85,7 @@
7885
- [#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.
7986

8087
- Updated dependencies:
81-
- @tumaet/apollon@5.0.0
88+
- @tumaet/apollon@5.0.1
8289

8390
## 4.4.1
8491

standalone/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tumaet/server",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"private": true,
55
"type": "module",
66
"license": "MIT",

0 commit comments

Comments
 (0)