Skip to content

Version Packages - #74

Merged
fuma-nama merged 1 commit into
devfrom
tegami/version-packages
Aug 18, 2026
Merged

Version Packages#74
fuma-nama merged 1 commit into
devfrom
tegami/version-packages

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 18, 2026

Copy link
Copy Markdown
Contributor

Summary

All bumped packages.

Package From To
@fumapress/ai 1.0.0-beta.3 1.0.0
fumapress 1.0.0-beta.3 1.0.0
@fumapress/feedback 1.0.0-beta.3 1.0.0
@fumapress/graphql 1.0.0-beta.3 1.0.0
@fumapress/language 1.0.0-beta.3 1.0.0
@fumapress/mintlify 1.0.0-beta.3 1.0.0
@fumapress/obsidian 1.0.0-beta.3 1.0.0
@fumapress/notion 1.0.0-beta.3 1.0.0
@fumapress/sanity 1.0.0-beta.3 1.0.0
@fumapress/tegami 1.0.0-beta.3 1.0.0
create-fumapress-versions 0.1.7 0.1.8
create-fumapress 0.1.7 0.1.8

Changelogs

2026-07-23-77a8ee.md

Show Bumped Packages (10)
Package Bump
npm:@fumapress/ai
npm:fumapress
npm:@fumapress/feedback
npm:@fumapress/graphql
npm:@fumapress/language
npm:@fumapress/mintlify
npm:@fumapress/obsidian
npm:@fumapress/notion
npm:@fumapress/sanity
npm:@fumapress/tegami

Redesign the core API for v1

Layouts move onto the config object (renderPage, renderRoot, renderNotFound, defaultLayoutProps), content replaces loader, and plugin types are renamed (PressPlugin, AppShape).

See the migration guide.

2026-08-04-a317a1af.md

Show Bumped Packages (1)
Package Bump
npm:@fumapress/ai

Fix aiPlugin export

aiPlugin was re-exported as a type-only export, so import { aiPlugin } from "@fumapress/ai" failed at runtime. It is now exported as a value.

Support the Glass layout

aiPlugin now binds AI chat to the Glass layout's native aiChat option, the Ask AI trigger is shown in the layout header & sidebar instead of a floating button.

2026-08-18-auto-image-optimization.md

Show Bumped Packages (1)
Package Bump
npm:fumapress minor

Automatic image optimization

The recommended preset now enables image optimization automatically, with a provider matching your
deployment adapter (auto-detected from the environment, or set via the adapter option):

  • Vercel: Vercel Image Optimization.
  • Cloudflare: Cloudflare Image Transformations.
  • Node.js: the self-hosted Sharp endpoint, only when sharp is installed in your app and the
    render mode is not static.

On other targets, or when the requirements above aren't met, image optimization is skipped and the
Image component keeps rendering a plain <img>, so sharp stays an optional dependency.

An explicitly configured image plugin takes priority over the detected provider. Configure one to
customize options such as allowedHosts for remote images.

2026-08-18-fumapress-cli.md

Show Bumped Packages (1)
Package Bump
npm:fumapress minor

Own CLI, Waku.js becomes an internal dependency

Fumapress now ships its own fumapress CLI and manages Waku.js as a regular dependency, so apps no
longer install waku or react-server-dom-webpack themselves. Fresh installs only need fumapress,
Fumadocs, React, and Vite.

Migration:

  • Remove waku and react-server-dom-webpack from your dependencies.
  • Add vite to your devDependencies if it isn't there yet.
  • Replace waku dev/waku build/waku start scripts with fumapress dev/fumapress build/fumapress start.
  • Rename waku.config.ts to vite.config.ts: it is a plain Vite config now, use defineConfig from
    vite and move the vite field's contents to the top level.
  • Waku-specific options (basePath, srcDir, distDir, privateDir, rscBase, and the deployment
    adapter) moved into the press() plugin options in vite.config.ts.
  • Delete src/pages.gen.ts if present, it is stale output of Waku's route typegen (disabled by
    Fumapress) and its waku/router type imports no longer resolve.

Custom server entries (src/waku.server.tsx) keep using Waku APIs directly — install waku yourself
in that case, matching the version pinned by Fumapress.

Auto-dedupe framework packages

The press() Vite plugin now adds detected framework packages (Fumadocs, Fumapress plugins, and other
packages with a React peer dependency) to resolve.dedupe, preventing duplicated React contexts when
a package manager instantiates them more than once. The manual resolve.dedupe: ["fumadocs-ui"]
workaround is no longer necessary.

2026-08-18-msysqkpq.md

Show Bumped Packages (1)
Package Bump
npm:fumapress patch

Skip error when base URL is not specified

2026-07-15-mrkxqsxq.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Support robots.txt plugin

Auto-generate robots.txt.

2026-07-15-mrkxrk1x.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Support RSS plugin

Auto-generate RSS feed from plugin.

2026-07-15-mrkxxck1.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Support "recommended" plugin preset

By default, the "recommended" plugin preset will be enforced, adding plugins for llms.txt, robots.txt, rss, and search.

2026-07-25-9c3d1b.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Support GitLab and Bitbucket repositories

site.git accepts a provider option (github by default, plus gitlab and bitbucket). The navbar icon link and page source links now point at the configured provider with its own brand icon. Self-hosted instances can set git.url to their instance URL.

ctx.getFileGitHubUrl() is renamed to ctx.getFileUrl(), the old name still works but is deprecated.

2026-07-27-ms35d6wz.md

Show Bumped Packages (2)
Package Bump
npm:fumapress
npm:@fumapress/obsidian

Use Waku beta 8

Bump dependencies.

2026-07-31-96820a0b.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Migrate built-in search to ZBSearch

Static Orama search now uses Fumadocs Core's staticClient backed by ZBSearch. The @orama/orama dependency was removed.

Use fumadocsMdx() Vite plugin

Scaffolded apps and docs examples now register the Fumadocs MDX Vite plugin via fumadocsMdx() instead of the default import.

2026-08-04-6886d034.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Support the Glass layout

Added fumapress/layouts/glass, a layout wrapper for the new Glass layout from Fumadocs UI. It accepts the same options as the docs & notebook layouts, and works with built-in plugins (OpenAPI, AsyncAPI, GraphQL, llms.txt).

import { createGlassLayoutPage } from "fumapress/layouts/glass";

const GlassLayout = createGlassLayoutPage<typeof config.$context>();

It requires Fumadocs UI v16.12.0 or above, remember to import fumadocs-ui/css/generated/glass.css in your CSS file.

2026-08-07-manifest.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Report broken links as data

linkValidationPlugin gained a report option. It still fails the build by default, but can now
write dist/fumapress-diagnostics.json instead, so a CI check can annotate a pull request rather
than parse an error message.

linkValidationPlugin({ report: "json" });

Use "both" to write the file and still fail the build. The file is written on every build, so an
empty diagnostics array means validation ran and found nothing, rather than that it never ran.

2026-08-11-blog-tags-path.md

Show Bumped Packages (1)
Package Bump
npm:fumapress

Fix tag links on the blog tags page

The tags page hardcoded /blog/tags/{tag} for every tag, so a blogPlugin configured with a custom
paths.tags linked to a route that was never generated, and localized sites dropped the locale
prefix. Both cases returned 404. Links now resolve against the configured tags path and the current
locale, matching the tag links already rendered on blog posts.

2026-08-04-d1f305af.md

Show Bumped Packages (1)
Package Bump
npm:@fumapress/graphql

Add the GraphQL integration

Generate API docs from your GraphQL schema with @fumadocs/graphql:

import { createGraphQL, graphqlPlugin } from "@fumapress/graphql";

const graphql = createGraphQL({
  input: [path.resolve("./schema.graphql")],
});

export default defineConfig({
  content: {
    docs: docs.toFumadocsSource(),
    graphql: await graphql.staticSource({ baseUrl: "/" }),
  },
}).plugins(graphqlPlugin({ server: graphql }));

2026-07-23-7f4c2a.md

Show Bumped Packages (1)
Package Bump
npm:@fumapress/obsidian

Add the Obsidian content integration

Render Obsidian vaults directly in Fumapress with server-side components, search and LLM text adapters, and development hot reload.

2026-07-14-a41c9e.md

Show Bumped Packages (1)
Package Bump
npm:@fumapress/notion

Add the Notion content integration

Pull pages from a Notion data source and render their blocks in Fumapress.

Publish

The following packages will be published if merged:

Package Version Registry
@fumapress/ai 1.0.0 npm
fumapress 1.0.0 npm
create-fumapress 0.1.8 npm
@fumapress/feedback 1.0.0 npm
@fumapress/graphql 1.0.0 npm
@fumapress/language 1.0.0 npm
@fumapress/mintlify 1.0.0 npm
@fumapress/obsidian 1.0.0 npm
@fumapress/notion 1.0.0 npm
@fumapress/sanity 1.0.0 npm
@fumapress/tegami 1.0.0 npm

@vercel

vercel Bot commented Aug 18, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
fumapress Ready Ready Preview Aug 18, 2026 4:59pm

Request Review

@github-actions
github-actions Bot force-pushed the tegami/version-packages branch from a230980 to b23c53d Compare August 18, 2026 16:58
@fuma-nama
fuma-nama merged commit 2f66c8a into dev Aug 18, 2026
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant