Releases: clay/amphora-search
Releases · clay/amphora-search
deprecated-minor
DEPRECATED VERSION, please use 4.6.0
page-history-errors
pass back errors (using 400 status for mapping issues) when sending data to _pagelist
page-history
Use new createPage
, publishPage
, schedulePage
, etc plugin hooks for page history
Bug Fix: Error Logging
- Prevents an error in marking a page as published from bubbling to main process. Instead logs using the logging service (#56)
Bugfix: Validate Page Status Before Indexing
- fixes bug that would cause an issue indexing pages in the page index when importing an already existing page (#53) (Thanks @reubenson!)
Bugfix: Log removal
- Removes sneaky
console.log
Internal Streams
- Converts initial internal processes to be stream based
- Small handler stream bug fix
Handler Stream Support
PR: #47
- Adds support for streaming
publish
andsave
events by way of thesubscribe
function, which returns a Highland Stream of Redis Ops
// Subscribe to the publish stream
var PUBLISH_STREAM = subscribe('publish');
PUBLISH_STREAM.each(console.log);
Bug Fix: Remove Lingering General
There was a lingering type
argument in the page list logic. Removed in #45
Feature: Archived
Adds an archived
Boolean property to pages. Allows for pages to be archived via Kiln. (#43)
There are no supported hooks for archiving a page outside of Kiln or a POST to the /_pagelist
endpoint with the proper payload.