@se-studio/markdown-renderer 1.0.89 → 1.0.90

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @se-studio/markdown-renderer
2
2
 
3
+ ## 1.0.90
4
+
5
+ ### Patch Changes
6
+
7
+ - Version bump: patch for changed packages
8
+ - Updated dependencies
9
+ - @se-studio/contentful-rest-api@1.0.131
10
+ - @se-studio/core-data-types@1.0.126
11
+ - @se-studio/wordpress-rest-api@1.0.7
12
+
3
13
  ## 1.0.89
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -66,6 +66,8 @@ Fetches content by slug and returns a `ContentData` object.
66
66
  - `slug`: The slug of the entry.
67
67
  - `params`: Optional parameters (e.g., `{ articleType: 'blog' }`).
68
68
 
69
+ For **search indexing**, prefer **one `fetchContent` call per entry** rather than batching many entry IDs in a single `getEntries` request with deep `include` — batched responses can truncate `includes` silently. See **Contentful indexing hazards** in the `@se-studio/search` package README.
70
+
69
71
  ### `MarkdownConverter`
70
72
 
71
73
  Handles the transformation of `ContentData` into a Markdown string.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@se-studio/markdown-renderer",
3
- "version": "1.0.89",
3
+ "version": "1.0.90",
4
4
  "description": "Markdown renderer for Contentful content",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,19 +22,19 @@
22
22
  "*.md"
23
23
  ],
24
24
  "dependencies": {
25
- "@contentful/rich-text-types": "^17.2.5",
25
+ "@contentful/rich-text-types": "^17.2.7",
26
26
  "html-entities": "^2.6.0",
27
27
  "js-yaml": "^4.1.1",
28
- "@se-studio/contentful-rest-api": "1.0.128",
29
- "@se-studio/core-data-types": "1.0.125",
30
- "@se-studio/wordpress-rest-api": "1.0.6"
28
+ "@se-studio/core-data-types": "1.0.126",
29
+ "@se-studio/contentful-rest-api": "1.0.131",
30
+ "@se-studio/wordpress-rest-api": "1.0.7"
31
31
  },
32
32
  "devDependencies": {
33
- "@biomejs/biome": "^2.4.10",
33
+ "@biomejs/biome": "^2.4.12",
34
34
  "@types/js-yaml": "^4.0.9",
35
- "@types/node": "^22.19.15",
35
+ "@types/node": "^22.19.17",
36
36
  "typescript": "^6.0.2",
37
- "vitest": "^4.1.2"
37
+ "vitest": "^4.1.4"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc --project tsconfig.build.json",