summaryrefslogtreecommitdiff
path: root/debian/NEWS
blob: 9e821668d55f1bb8702dcf7d87fc53e6edeafc7d (plain)
  1. ikiwiki (1.49) unstable; urgency=low
  2. Third-party plugins that use htmlpage() or abs2rel() to generate links
  3. may need changes to support the new "userdir" option.
  4. -- Joey Hess <joeyh@debian.org> Sun, 01 Apr 2007 16:20:09 -0400
  5. ikiwiki (1.47) unstable; urgency=low
  6. Due to a security fix, wikis that have the htmlscrubber enabled can no
  7. longer use the meta plugin to insert html link and meta tags.
  8. Some special case methods have been added for safely including stylesheets,
  9. and for doing openid delegation. See the meta plugin docs for details.
  10. -- Joey Hess <joeyh@debian.org> Wed, 21 Mar 2007 14:18:40 -0400
  11. ikiwiki (1.45) unstable; urgency=low
  12. Wikis need to be rebuilt on upgrade to this version. If you listed your wiki
  13. in /etc/ikiwiki/wikilist this will be done automatically when the Debian
  14. package is upgraded. Or use ikiwiki-mass-rebuild to force a rebuild.
  15. -- Joey Hess <joeyh@debian.org> Wed, 7 Mar 2007 23:02:52 -0500
  16. ikiwiki (1.44) unstable; urgency=low
  17. The htmllink() function has changed slightly and plugins that use it may
  18. need to change how they call it. This function's first three parameters
  19. are unchanged, but additional options are now passed using named
  20. parameters. If you used htmllink with more than 3 parameters, you will
  21. need to change it. The plugin interface version has been increased to 1.02
  22. to reflect this change.
  23. -- Joey Hess <joeyh@debian.org> Mon, 19 Feb 2007 21:10:12 -0500
  24. ikiwiki (1.42) unstable; urgency=low
  25. The anonok setting in config files has been removed. To enable
  26. httpauth support on your wiki, you should now enable the anonok plugin,
  27. instead.
  28. Third-party plugins that use pagespec_match() should be updated to pass
  29. the new third parameter (from) to that function. This is needed for the
  30. new relative glob matching to work.
  31. -- Joey Hess <joeyh@debian.org> Thu, 1 Feb 2007 16:57:59 -0500
  32. ikiwiki (1.34) unstable; urgency=low
  33. The httpauth setting in config files has been removed. To enable
  34. httpauth support on your wiki, you should now enable the httpauth plugin,
  35. instead.
  36. This release includes OpenID support that is enabled through the openid
  37. plugin. I recommend turning this on to make it easier for users to sign
  38. in to your wiki.
  39. -- Joey Hess <joeyh@debian.org> Sun, 19 Nov 2006 20:53:05 -0500
  40. ikiwiki (1.32) unstable; urgency=low
  41. There is a change to the plugin interface in this version. Any plugins that
  42. modify data in %links should pass scan => 1 when registering the hook that
  43. does so.
  44. -- Joey Hess <joeyh@debian.org> Sat, 28 Oct 2006 00:13:12 -0400
  45. ikiwiki (1.29) unstable; urgency=low
  46. Wikis need to be rebuilt on upgrade to this version. If you listed your wiki
  47. in /etc/ikiwiki/wikilist this will be done automatically when the Debian
  48. package is upgraded. Or use ikiwiki-mass-rebuild to force a rebuild.
  49. There is a change to the plugin interface in this version. Plugins that use
  50. %renderedfiles will need to be updated, as the hash's values are now arrays
  51. of rendered files. Plugins that cause a page to render additional files
  52. should use the new will_render function to register the files.
  53. -- Joey Hess <joeyh@debian.org> Sun, 8 Oct 2006 17:27:56 -0400
  54. ikiwiki (1.22) unstable; urgency=low
  55. Due to some changes in the CSS, wikis should be rebuilt on upgrade to this
  56. version. If you listed your wiki in /etc/ikiwiki/wikilist this will be done
  57. automatically when the Debian package is upgraded. Or use ikiwiki-mass-rebuild
  58. to force a rebuild.
  59. If you have modified versions of ikiwiki's html templates, you will need
  60. to update your templates to link to the stylesheet file using
  61. "<TMPL_VAR BASEURL>style.css" instead of the old method which used
  62. STYLEURL.
  63. There have also been some changes to the plugin interface:
  64. Any plugins that use santize, htmlize, or format hooks will need to be
  65. updated for this version of ikiwiki since these hooks have been changed
  66. to use named parameters.
  67. -- Joey Hess <joeyh@debian.org> Tue, 22 Aug 2006 15:33:12 -0400
  68. ikiwiki (1.13) unstable; urgency=low
  69. The GlobList format which was used for specifiying sets of pages, has been
  70. replaced with a new, more expressive PageSpec format. While GlobLists will
  71. continue to work, that format is deprecated, and you are encouraged to use
  72. PageSpecs from now on, and also to change any GlobLists in your wiki to
  73. PageSpecs. See the new PageSpec page for details.
  74. You will need to rebuild your wiki when upgrading to this version. If you
  75. listed your wiki in /etc/ikiwiki/wikilist this will be done automatically
  76. when the Debian package is upgraded. Or use ikiiki-mass-rebuild to force a
  77. rebuild.
  78. -- Joey Hess <joeyh@debian.org> Tue, 1 Aug 2006 18:29:51 -0400
  79. ikiwiki (1.11) unstable; urgency=low
  80. Some changes to tags in this release, due to a new tag plugin. If you have
  81. been using the meta plugin to tag pages, you'll want to enable the tag
  82. plugin too, and change things like this:
  83. [[meta link="foobar"]]
  84. To this:
  85. [[tag foobar]]
  86. The new tags will appear at page footers, and are also easier to type.
  87. There have also been some changes to the plugin interface, particularly the
  88. interface of pagetemplate hooks has changed. See the changelog for details.
  89. -- Joey Hess <joeyh@debian.org> Thu, 27 Jul 2006 17:03:09 -0400
  90. ikiwiki (1.8) unstable; urgency=low
  91. If your wiki is configured with a setup file, you should modify it to
  92. stop setting the "plugin" list directly, and instead add or remove plugins
  93. via the add_plugins and disable_plugins lines. For example, if you had:
  94. plugin => [qw{inline smiley search}],
  95. Change it to these lines, which disables the default htmlscrubber plugin
  96. and adds the two additional plugins:
  97. add_plugins => [qw{smiley search}],
  98. disable_plugins => [qw{htmlscrubber}],
  99. Making this change makes your ikiwiki setup file more future-proof since
  100. new default plugins will be automatically used.
  101. You will need to rebuild your ikiwiki wrappers when upgrading to this
  102. version. If you listed your wiki in /etc/ikiwiki/wikilist this will be
  103. done automatically when the Debian package is upgraded. Or use
  104. ikiiki-mass-rebuild --refresh to force a refresh.
  105. -- Joey Hess <joeyh@debian.org> Mon, 3 Jul 2006 16:59:29 -0400
  106. ikiwiki (1.1) unstable; urgency=low
  107. There have been several configuration changes in this release of ikiwiki:
  108. The --svn and --no-svn switches are removed, instead you should use
  109. --rcs=svn or --no-rcs. ikiwiki setup files that set svn => 1 should
  110. be changed to set rcs => "svn"; if your setup file sets svn => 0
  111. then change it to use rcs => "" to disable svn.
  112. The --hyperestraier switch is gone too. To enable searching, turn on the
  113. search plugin, by passing --plugin=search or through the plugin setting in
  114. the setup file.
  115. The --sanitize and --no-sanitize switches are also gone, replaced with the
  116. htmlscrubber plugin. This plugin is enabled by default, to disable it,
  117. use --disable-plugin=htmlscrubber, or modify the plugin setting in the
  118. setup file.
  119. Discussion pages are enabled by default, but if your wiki is configured
  120. with a setup file, you need to edit it to keep them enabled on upgrade
  121. to this version. Add a line reading:
  122. discussion => 1,
  123. You will need to rebuild your wiki when upgrading to this version.
  124. If you listed your wiki in /etc/ikiwiki/wikilist this will be done
  125. automatically when the Debian package is upgraded. Or use
  126. ikiiki-mass-rebuild to force a rebuild.
  127. -- Joey Hess <joeyh@debian.org> Tue, 2 May 2006 14:13:59 -0400