Skip to content

v2.0.0 — Renamed to relaticle/ink

Choose a tag to compare

@ManukMinasyan ManukMinasyan released this 13 May 21:08
2f66370

First release under the new namespace. This package was renamed from manukminasyan/filament-blog to relaticle/ink.

Breaking changes (rename only — no behavior changes)

Before After
manukminasyan/filament-blog relaticle/ink
ManukMinasyan\FilamentBlog\ Relaticle\Ink\
FilamentBlogServiceProvider InkServiceProvider
FilamentBlogPlugin InkPlugin
config/filament-blog.php config/ink.php
config('filament-blog.X') config('ink.X')
<x-blog::post-card> etc. <x-ink::post-card> etc.
view('blog::pages.show') view('ink::pages.show')
--tag=filament-blog-{config,views,migrations,translations} --tag=ink-*

Preserved (no migration required)

  • Database tables: blog_posts, blog_categories, blog_tags, blog_post_tagno data migration
  • Route names: blog.index, blog.show, blog.category, blog.preview, blog.feed, blog.tag
  • URL prefix default: /blog (configurable via config('ink.prefix'))
  • All public model methods, component APIs, MCP tool signatures, and Blade component props

Migration

composer remove manukminasyan/filament-blog
composer require relaticle/ink:^2.0

See UPGRADING.md for the consumer-side sed recipe.

Other