Skip to content

Commit fbba9ae

Browse files
authored
Merge pull request #830 from live-codes/releases/sdk-v0.11.0
Prepare release sdk-v0.11.0
2 parents 97bdb0b + 719e6c8 commit fbba9ae

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. See [standa
44

55
---
66

7+
## [sdk-v0.11.0](https://github.com/live-codes/livecodes/compare/sdk-v0.10.0...sdk-v0.11.0) (2025-05-24)
8+
9+
- This release enables the SDK to create playgrounds and generate URLs for much bigger projects, by encoding data in URL hash instead of query params, while maintaining backwards compatibility.
10+
11+
- Adds support for Jinja templating engine.
12+
13+
### Credits
14+
15+
- @BassemHalim did a lot of work on this release. Thank you ❤️
16+
17+
---
18+
719
## [v45](https://github.com/live-codes/livecodes/compare/sdk-v0.10.0...v45) (2025-04-25)
820

921
### Highlights for this release

e2e/specs/sfc-processors.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ li
4848
});
4949

5050
test('in Svelte', async ({ page, getTestUrl }) => {
51+
test.slow();
5152
// const sfc = `
5253
// <script lang="ts">
5354
// export const msg: string = 'world!';
@@ -73,6 +74,7 @@ li
7374
const { getResult, waitForResultUpdate } = await getLoadedApp(page);
7475

7576
await waitForResultUpdate({ timeout: 20000 });
77+
await getResult().waitForTimeout(3000);
7678

7779
expect(await getResult().innerText(':nth-match(li, 1)')).toContain('hello world!');
7880
expect(await getResult().innerText(':nth-match(li, 2)')).toContain('p');

src/sdk/package.sdk.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "livecodes",
3-
"version": "0.10.0",
4-
"description": "Code Playground That Just Works!",
3+
"version": "0.11.0",
4+
"description": "A Code Playground That Just Works!",
55
"author": "Hatem Hosny",
66
"license": "MIT",
7-
"keywords": ["playground", "code", "client", "sdk", "react", "vue", "svelte", "solid", "python"],
7+
"keywords": ["playground", "code", "repl", "client", "sdk", "react", "vue", "svelte", "python"],
88
"private": false,
99
"repository": {
1010
"url": "https://github.com/live-codes/livecodes"

0 commit comments

Comments
 (0)