Skip to content

Releases: johnpduane/confluence-api

Superagent upgrade

14 Dec 14:39
Compare
Choose a tag to compare

Upgrade superagent dependency to the latest 3.x version to address reported security vulnerability.

Add support for representation

25 Mar 19:42
Compare
Choose a tag to compare

Support for field representation on postContent and putContent methods.

Thank you to @rnhurt for adding this feature.

Add support for labels and search

25 Feb 20:25
Compare
Choose a tag to compare
  1. Support for label
    • getLabels()
    • postLabels()
    • deleteLabel()
    • thank you to @mlersch for adding this feature
  2. Support for search
    • search()
    • thank you to @evgeniusorg for adding this feature
  3. Support for field minorEdit on putContent method
  4. Added jsdoc-to-markdown and support script npm run create-docs

Add support for attachments

15 Jul 13:19
Compare
Choose a tag to compare

Add support for Confluence v4

08 Jun 21:13
Compare
Choose a tag to compare

Confluence API now supports access to older versions of Confluence. If you are using Confluence version 4, specify the version in your config file; for example:

var config = {
    username: "testuser",
    password: "test-user-pw",
    baseUrl:  "https://confluence-api-test.atlassian.net/wiki",
    version: 4 // Confluence major version, optional
};

Thank you to @qvaqvaboo for adding this feature.

Add getCustomContentById

04 Jun 18:00
Compare
Choose a tag to compare

Thank you to @lukouko for adding this function.