Skip to content

Releases: json-choi/restdocs

v0.3.1 - Patch Release

09 Oct 14:13
Compare
Choose a tag to compare

🔧 Patch Release

Minor version bump with clean package distribution.

Published Packages

  • @restdocs/core@0.3.1
  • @restdocs/generators@0.3.1
  • @restdocs/jest@0.3.1
  • @restdocs/nextjs@0.3.1

🤖 Generated with Claude Code

Co-Authored-By: Claude noreply@anthropic.com

v0.2.0 - Scoped Package Migration

09 Oct 05:24
Compare
Choose a tag to compare

🎯 v0.2.0 - Scoped Package Migration

Breaking Changes

Package names have been changed to scoped packages for better organization and user experience:

  • node-restdocs-core@restdocs/core
  • node-restdocs-generators@restdocs/generators
  • node-restdocs-jest@restdocs/jest

Migration Required

All import paths must be updated. See Migration Guide for detailed instructions.

Before (0.1.0):

import { api, field } from 'node-restdocs-core';

After (0.2.0):

import { api, field } from '@restdocs/core';

Installation

npm install @restdocs/core @restdocs/jest --save-dev

Published Packages

Deprecated Packages

Old packages are now deprecated and will no longer receive updates:

  • node-restdocs-core@0.1.0
  • node-restdocs-generators@0.1.0
  • node-restdocs-jest@0.1.0

What's New

  • ✅ Shorter, cleaner package names (27% reduction)
  • ✅ Professional scoped package pattern
  • ✅ Better namespace organization
  • ✅ Future-proof for package expansion

No API Changes

All APIs remain the same - only package names have changed:

  • api.document(), api.infer(), api.validate()
  • All field.* builders work identically
  • Jest integration unchanged (just update import paths)

Migration Time Estimate: 5-10 minutes
See: MIGRATION_0.2.md for step-by-step guide