Skip to content

Commit 4048965

Browse files
github-actions[bot]mikebarkmin
authored andcommitted
Version Packages (#1024)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ffe7e4b commit 4048965

File tree

9 files changed

+35
-10
lines changed

9 files changed

+35
-10
lines changed

.changeset/funny-jars-tan.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@hyperbook/markdown": patch
3+
"hyperbook": patch
4+
"hyperbook-studio": patch
5+
---
6+
7+
Fix sqlide custom db not using the correct url

.changeset/llms-txt-generation.md

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

packages/hyperbook/CHANGELOG.md

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

3+
## 0.63.0
4+
5+
### Minor Changes
6+
7+
- [#1023](https://github.com/openpatch/hyperbook/pull/1023) [`ffe7e4b`](https://github.com/openpatch/hyperbook/commit/ffe7e4b037b6d50e13e52d555e81a599e0ab3bb7) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add llms.txt file generation feature. When the `llms` property is set to `true` in hyperbook.json, a `llms.txt` file will be generated during build that combines all markdown files in order. The file includes the book name and version in the header. Pages and sections with `hide: true` are automatically excluded from the generated file.
8+
39
## 0.62.0
410

511
### Minor Changes

packages/hyperbook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperbook",
3-
"version": "0.62.0",
3+
"version": "0.63.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

packages/markdown/src/remarkDirectiveSqlIde.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default (ctx: HyperbookContext) => () => {
7171
children: [
7272
{
7373
type: "raw",
74-
value: `{'id': '${id}', 'databaseURL': '${db}'}`,
74+
value: `{'id': '${id}', 'databaseURL': '${ctx.makeUrl(db || "", "public")}'}`,
7575
},
7676
...codes,
7777
{

packages/markdown/tests/__snapshots__/remarkDirectiveSqlIde.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
exports[`remarkDirectiveSqlIde > should transform 1`] = `
44
"
55
<div class="directive-sqlide">
6-
<iframe class="player" srcdoc="<script>window.jo_doc = window.frameElement.textContent;</script><script src='https://embed.learn-sql.de/include/js/includeide/includeIDE.js'></script>" frameborder="0" height="500">{'id': 'b7737fd581ffacd2dd802ad79b5c2f004f8c96ecd9eb8ba32e91cef31e3c5af8', 'databaseURL': 'https://embed.learn-sql.de/include/assets/databases/world1.sqLite'}
6+
<iframe class="player" srcdoc="<script>window.jo_doc = window.frameElement.textContent;</script><script src='https://embed.learn-sql.de/include/js/includeide/includeIDE.js'></script>" frameborder="0" height="500">{'id': 'b7737fd581ffacd2dd802ad79b5c2f004f8c96ecd9eb8ba32e91cef31e3c5af8', 'databaseURL': '/public/https:/embed.learn-sql.de/include/assets/databases/world1.sqLite'}
77
<script type="plain/text" title="Statements.sql">
88
SELECT * from fluss;
99
</script>

packages/types/CHANGELOG.md

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

3+
## 0.18.0
4+
5+
### Minor Changes
6+
7+
- [#1023](https://github.com/openpatch/hyperbook/pull/1023) [`ffe7e4b`](https://github.com/openpatch/hyperbook/commit/ffe7e4b037b6d50e13e52d555e81a599e0ab3bb7) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Add llms.txt file generation feature. When the `llms` property is set to `true` in hyperbook.json, a `llms.txt` file will be generated during build that combines all markdown files in order. The file includes the book name and version in the header. Pages and sections with `hide: true` are automatically excluded from the generated file.
8+
39
## 0.17.0
410

511
### Minor Changes

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperbook/types",
3-
"version": "0.17.0",
3+
"version": "0.18.0",
44
"author": "Mike Barkmin",
55
"homepage": "https://github.com/openpatch/hyperbook#readme",
66
"license": "MIT",

website/en/book/changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,18 @@ If you need a new feature, open an [issue](https://github.com/openpatch/hyperboo
3838
::::
3939
-->
4040

41+
## v0.62.1
42+
43+
::::tabs
44+
45+
:::tab{title="Fixed :bug:" id="fixed"}
46+
47+
- Fix SQLIde not loading custom database files.
48+
49+
:::
50+
51+
::::
52+
4153
## v0.62.0
4254

4355
::::tabs

0 commit comments

Comments
 (0)