Skip to content

Latest commit

 

History

History
267 lines (139 loc) · 11.3 KB

File metadata and controls

267 lines (139 loc) · 11.3 KB

1.19.0 (2026-02-20)

Features

  • add --cql flag to search command for raw CQL queries (#40) (311f5a9), closes #39

1.18.0 (2026-02-15)

Features

  • add content property commands (list, get, set, delete) (#38) (506515d), closes #37

1.17.0 (2026-02-13)

Features

  • add attachment upload and delete commands (#36) (ed62bb4)

1.16.0 (2026-02-13)

Features

  • Add move command to relocate pages (#32) (a37f9b8)

1.15.1 (2026-02-12)

Bug Fixes

1.15.0 (2026-02-06)

Features

  • Add CLI flags to confluence init for non-interactive setup (#30) (09b6b85)

1.14.0 (2026-02-03)

Features

  • add comments support to CLI (d40de55), closes #28

1.13.0 (2026-01-08)

Features

  • add children command to list child pages (#27) (7e8b4ed)

1.12.1 (2025-12-31)

Bug Fixes

1.12.0 (2025-12-31)

Features

1.11.1 (2025-12-17)

Bug Fixes

  • support children macro, improve macro handling, and filter attachments (#23) (15b721a)

1.11.0 (2025-12-12)

Features

  • Support for Confluence display URLs (#20) (3bda7c2)

1.10.1 (2025-12-08)

Bug Fixes

  • improve markdown export and attachment download (#19) (978275d)

1.10.0 (2025-12-05)

Features

1.9.0 (2025-12-04)

Features

  • add attachments list and download command (#17) (fb3d4f8)

1.8.0 (2025-09-28)

Features

  • make Confluence API path configurable (#14) (be000e0), closes #13

[Unreleased]

Added

  • Make the Confluence REST base path configurable to support both /rest/api and /wiki/rest/api.

1.7.0 (2025-09-28)

Features

  • support basic auth for Atlassian API tokens (#12) (e80ea9b)

1.6.0 (2025-09-05)

Features

  • Add copy-tree command for recursive page copying with children (#9) (29efa5b)

1.5.0 (2025-08-13)

Features

  • Align README with implementation and fix update command (#7) (87f48e0)

1.4.1 (2025-06-30)

Bug Fixes

  • correct version display in CLI (#6) (36f8419)

1.4.0 (2025-06-30)

Features

  • Enhanced Markdown Support with Bidirectional Conversion (#5) (d17771b)

1.3.2 (2025-06-27)

Bug Fixes

  • resolve merge conflict in CHANGELOG.md (8565c1a)

1.3.1 (2025-06-27)

Bug Fixes

  • clean up duplicate CHANGELOG entries (0163deb)

1.3.0 (2025-06-27)

Bug Fixes

  • improve format handling based on production testing (820f9cd)

Features

  • implement page creation and update capabilities (3c43b19)

1.2.1 (2025-06-27)

Bug Fixes

  • format handling: improve compatibility across Confluence instances
    • Switch from 'html' macro to 'markdown' macro for better compatibility
    • Change HTML processing to direct Storage format (no macro wrapper)
    • Add markdownToNativeStorage method for alternative conversion
    • Fix issues discovered during production testing in real Confluence environments

1.2.0 (2025-06-27)

Features

  • page management: add page creation and update capabilities (#2) (b814ddf)
    • confluence create - Create new pages with support for Markdown, HTML, and Storage formats
    • confluence update - Update existing page content and titles
    • confluence edit - Export page content for editing workflow
    • Support for reading content from files or inline
    • Markdown to Confluence Storage format conversion
  • content formats: support multiple input formats
    • Markdown format with automatic conversion using markdown macro
    • HTML format with direct Storage format integration
    • Native Confluence Storage format
  • examples: add sample files and demo scripts for new features

Breaking Changes

  • None - all new features are additive

1.1.0 (2025-06-26)

Features

  • add analytics tracking to spaces command (265e8f4)
  • add community feedback and analytics infrastructure (a7ff6e8)

1.0.0 (2025-06-26)

Bug Fixes

  • add explicit permissions for GitHub Actions (fa36b29)
  • add NODE_AUTH_TOKEN for npm authentication (2031314)
  • resolve eslint errors and npm publish warnings (b93285e)

Features

  • initial release of confluence-cli (ec04e06)

Confluence CLI Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.0.0] - 2025-06-26

Added

  • Initial release of Confluence CLI
  • Read Confluence pages by ID or URL
  • Search functionality with customizable limits
  • Page information display
  • List all Confluence spaces
  • Interactive configuration setup
  • Environment variable support
  • HTML and text output formats
  • Comprehensive README with examples
  • MIT License

Features

  • confluence init - Interactive configuration setup
  • confluence read <pageId> - Read page content with format options
  • confluence info <pageId> - Display page information
  • confluence search <query> - Search pages with optional limit
  • confluence spaces - List all available spaces

Dependencies

  • commander for CLI framework
  • axios for HTTP requests
  • chalk for colored output
  • inquirer for interactive prompts
  • html-to-text for content conversion
  • ora for loading indicators