Technology Aug 29, 2026 · 2 min read

PrimeVue v4 Stopped Active Dev: OpenVue Takes Over on MIT

If your stack relies on PrimeVue v4, there's a recent change in the project's maintenance lifecycle worth knowing about. PrimeVue v4 has officially transitioned into security-only maintenance mode. As outlined in the project’s documentation, active feature development has ceased, issue tracking is...

DE
DEV Community
by Nikola Jevrić
PrimeVue v4 Stopped Active Dev: OpenVue Takes Over on MIT

If your stack relies on PrimeVue v4, there's a recent change in the project's maintenance lifecycle worth knowing about.

PrimeVue v4 has officially transitioned into security-only maintenance mode. As outlined in the project’s documentation, active feature development has ceased, issue tracking is now read-only, and new bug fixes or enhancements are scoped to a separate project line.

While this marks a strategic shift for the core maintainers, it introduces strategic risk for engineering teams running production workloads on PrimeVue v4 under the MIT license, specifically those requiring ongoing component iteration, active bug resolution, and long-term ecosystem support.

To address this gap, we launched OpenVue.

OpenVue is an independent, community-driven continuation of PrimeVue 4.5.5, the final release under open-source governance. Maintained under the OpenVi Foundation, it operates as a fully open-source, MIT-licensed ecosystem free from commercial gating or paywalled functionality. It maintains total architectural fidelity across 80+ core components, preserving full parity with existing props, slots, events, and theming systems, while unifying icon sets and design tooling under a single ecosystem.

Because the API remains completely aligned with PrimeVue v4, migration requires zero structural refactoring. Upgrading is a straightforward dependency swap.

You can run the official CLI migration utility to update your project automatically:

npx @openvue/migrate

The utility renames your PrimeVue dependencies, rewrites import statements across your source files, and reports any references it could not migrate, producing a single, reviewable diff.

- import Button from 'primevue/button'
+ import Button from '@openvue/button'

Your component templates, design tokens, and application logic remain entirely untouched.

OpenVue is currently in 1.0.0-rc.0. You can explore interactive documentation, component showcases, and API specifications at openvue.dev, or review the codebase on GitHub. If your team depends on PrimeVue v4 under MIT and requires continued active development, we invite you to evaluate the project, star the repository, and join the community.

(Note: OpenVue is an independent, community-maintained MIT project based on the PrimeVue 4.5.5 release and is not affiliated with PrimeTek.)

DE
Source

This article was originally published by DEV Community and written by Nikola Jevrić.

Read original article on DEV Community
Back to Discover

Reading List