New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details โ†’ โ†’
Socket
Book a DemoSign in
Socket

logseq-python

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logseq-python - pypi Package Compare versions

Comparing version
0.3.0
to
0.3.1
+8
-0
CHANGELOG.md

@@ -8,2 +8,10 @@ # Changelog

## [0.3.1] - 2025-11-01
### ๐Ÿ› Bug Fixes
- **Fixed BlockBuilder newline rendering** - Blocks and sub-blocks now properly render on separate lines with correct indentation
- Changed `"\\n".join()` to `"\n".join()` in `BlockBuilder.build()` and `LogseqBuilder.build()`
- Sub-blocks now correctly nest under parent blocks instead of appearing on the same line
- This fix affects all content generated using the builder pattern (comprehensive processor, media embeds, etc.)
## [0.3.0] - 2025-10-29

@@ -10,0 +18,0 @@

+2
-2

@@ -142,3 +142,3 @@ """

return "\\n".join(lines)
return "\n".join(lines)

@@ -234,3 +234,3 @@

return "\\n".join(result)
return "\n".join(result)

@@ -237,0 +237,0 @@

Metadata-Version: 2.4
Name: logseq-python
Version: 0.3.0
Version: 0.3.1
Summary: A comprehensive Python library for working with Logseq knowledge graphs

@@ -5,0 +5,0 @@ Home-page: https://github.com/thinmanj/logseq-python-library

Metadata-Version: 2.4
Name: logseq-python
Version: 0.3.0
Version: 0.3.1
Summary: A comprehensive Python library for working with Logseq knowledge graphs

@@ -5,0 +5,0 @@ Home-page: https://github.com/thinmanj/logseq-python-library

@@ -7,3 +7,3 @@ [build-system]

name = "logseq-python"
version = "0.3.0"
version = "0.3.1"
description = "A comprehensive Python library for working with Logseq knowledge graphs"

@@ -10,0 +10,0 @@ readme = "README.md"