@kreuzberg/html-to-markdown-node 2.19.0-rc.1 → 2.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -15,11 +15,49 @@ High-performance HTML to Markdown conversion using native Rust code compiled to
15
15
  [![PyPI](https://img.shields.io/pypi/v/html-to-markdown.svg?logo=pypi)](https://pypi.org/project/html-to-markdown/)
16
16
  [![Packagist](https://img.shields.io/packagist/v/goldziher/html-to-markdown.svg)](https://packagist.org/packages/goldziher/html-to-markdown)
17
17
  [![RubyGems](https://badge.fury.io/rb/html-to-markdown.svg)](https://rubygems.org/gems/html-to-markdown)
18
- [![NuGet](https://img.shields.io/nuget/v/Goldziher.HtmlToMarkdown.svg)](https://www.nuget.org/packages/Goldziher.HtmlToMarkdown/)
19
- [![Maven Central](https://img.shields.io/maven-central/v/io.github.goldziher/html-to-markdown.svg)](https://central.sonatype.com/artifact/io.github.goldziher/html-to-markdown)
18
+ [![NuGet](https://img.shields.io/nuget/v/KreuzbergDev.HtmlToMarkdown.svg)](https://www.nuget.org/packages/KreuzbergDev.HtmlToMarkdown/)
19
+ [![Maven Central](https://img.shields.io/maven-central/v/dev.kreuzberg/html-to-markdown.svg)](https://central.sonatype.com/artifact/dev.kreuzberg/html-to-markdown)
20
20
  [![Go Reference](https://pkg.go.dev/badge/github.com/kreuzberg-dev/html-to-markdown/packages/go/v2/htmltomarkdown.svg)](https://pkg.go.dev/github.com/kreuzberg-dev/html-to-markdown/packages/go/v2/htmltomarkdown)
21
21
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/kreuzberg-dev/html-to-markdown/blob/main/LICENSE)
22
22
 
23
+ ## Migration Guide (v2.18.x → v2.19.0)
24
+
25
+ > **⚠️ BREAKING CHANGE: Package Namespace Update**
26
+ >
27
+ > In v2.19.0, the npm package namespace changed from `html-to-markdown-node` to `@kreuzberg/html-to-markdown-node` to reflect the new Kreuzberg.dev organization.
28
+
29
+ ### Install Updated Package
30
+
31
+ **Before (v2.18.x):**
32
+ ```bash
33
+ npm install html-to-markdown-node
34
+ ```
35
+
36
+ **After (v2.19.0+):**
37
+ ```bash
38
+ npm install @kreuzberg/html-to-markdown-node
39
+ ```
40
+
41
+ ### Update Import Statements
42
+
43
+ **Before:**
44
+ ```typescript
45
+ import { convert } from 'html-to-markdown-node';
46
+ ```
47
+
48
+ **After:**
49
+ ```typescript
50
+ import { convert } from '@kreuzberg/html-to-markdown-node';
51
+ ```
52
+
53
+ ### Summary of Changes
54
+
55
+ - Package renamed from `html-to-markdown-node` to `@kreuzberg/html-to-markdown-node`
56
+ - All APIs remain identical
57
+ - Full backward compatibility after updating package name and imports
58
+
59
+ ---
60
+
23
61
  ## Performance
24
62
 
25
63
  Native NAPI-RS bindings deliver **the fastest HTML to Markdown conversion** available in JavaScript.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kreuzberg/html-to-markdown-node",
3
- "version": "2.19.0-rc.1",
3
+ "version": "2.19.0",
4
4
  "description": "High-performance HTML to Markdown converter - Node.js native bindings",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -70,14 +70,14 @@
70
70
  "up": "^1.0.2"
71
71
  },
72
72
  "optionalDependencies": {
73
- "@kreuzberg/html-to-markdown-node-darwin-x64": "2.19.0-rc.1",
74
- "@kreuzberg/html-to-markdown-node-darwin-arm64": "2.19.0-rc.1",
75
- "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "2.19.0-rc.1",
76
- "@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "2.19.0-rc.1",
77
- "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "2.19.0-rc.1",
78
- "@kreuzberg/html-to-markdown-node-linux-x64-musl": "2.19.0-rc.1",
79
- "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "2.19.0-rc.1",
80
- "@kreuzberg/html-to-markdown-node-linux-arm64-musl": "2.19.0-rc.1",
81
- "@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "2.19.0-rc.1"
73
+ "@kreuzberg/html-to-markdown-node-darwin-x64": "2.19.0",
74
+ "@kreuzberg/html-to-markdown-node-darwin-arm64": "2.19.0",
75
+ "@kreuzberg/html-to-markdown-node-win32-x64-msvc": "2.19.0",
76
+ "@kreuzberg/html-to-markdown-node-win32-arm64-msvc": "2.19.0",
77
+ "@kreuzberg/html-to-markdown-node-linux-x64-gnu": "2.19.0",
78
+ "@kreuzberg/html-to-markdown-node-linux-x64-musl": "2.19.0",
79
+ "@kreuzberg/html-to-markdown-node-linux-arm64-gnu": "2.19.0",
80
+ "@kreuzberg/html-to-markdown-node-linux-arm64-musl": "2.19.0",
81
+ "@kreuzberg/html-to-markdown-node-linux-arm-gnueabihf": "2.19.0"
82
82
  }
83
83
  }