All Versions
313
Latest Version
Avg Release Cycle
55 days
Latest Release
2104 days ago
Changelog History
Page 26
Changelog History
Page 26
-
v6.4.1 Changes
July 19, 2012- Added new
sourceattribute to the file model, as thecontentattribute on the document model is actually thebodynot the original content like it is in the file model
- Added new
-
v6.4.0 Changes
July 19, 2012- ๐ We now support
404 Not Foundand500 Internal Server Errorerror pages thanks to Nick Crohn for pull request #251 - ๐ Fixed #269 where the
docpad rendercommand wouldn't work - ๐ Fixed #268 where files which names start with a
.from having a.appended to their output filename
- ๐ We now support
-
v6.3.3 Changes
July 18, 2012- ๐ Fixed binary file output
- Added binary files to the test suite so this won't happen again
- Was due to the dereference on the new clear introduced in v6.3.0
- As such, we now store the
dataattribute for files outside of the attributes, usegetDataandsetData(data)now instead ofget('data')andset({data:data})
- As such, we now store the
- ๐ Fixed binary file output
-
v6.3.2 Changes
July 18, 2012- ๐ Fixed install action
-
v6.3.1 Changes
July 18, 2012- ๐ Fixed
extendCollectionsbeing called before the plugins have loaded when using the CLI
- ๐ Fixed
-
v6.3.0 Changes
July 18, 2012- ๐ Added support for multiple environments
- ๐ง Top-level configuration assumed to reflect the production environment, other environments will extend from it
- This is because getting a production environment configuration inside your development environment is fine, however getting a development environment configuration inside your production environment is catastrophic - as such, having the top-level configuration reflect the production environment handles this assumption correctly
- ๐ง Added environment configuration support to plugins and their configuration
- ๐ง Removed
package.json > docpad > pluginconfiguration mode for a plugin'spackage.json, they should use theconfigproperty in their class instead - ๐ง Added
isEnabled()to the plugin class, this reflects theenabledproperty in the plugin configuration, if it is false, then no events are executed for that plugin - Killed the
docpad cliaction, no one used it and introduced a lot of complexity to the codebase - Added
populateCollectionsevent, use this to insert things into our collections and blocks - ๐ง Added
docpadLoadedevent which fires whenever our configuration is re-loaded - ๐ Added support for overriding the
extensionattribute via your document's meta data - ๐ Added support for the
renderSingleExtensionsattribute in documents- Closes issue #772
- ๐ Fixed
cleanaction from not behaving as expected- Had the wrong indexOf indice value in the check
- 0๏ธโฃ Fixed default attributes not being kept inside document and file attributes when cleared
- Turns out Backbone's
Mode::clear()wipes everything, rather than reset to the default attributes and values
- Turns out Backbone's
-
v6.2.0 Changes
July 10, 2012- ๐ Dropped node v0.4 support
- Minimum required version is now 0.6
- Dropped
npmdependency - ๐ง Configuration merging now deep extends plain javascript objects
- ๐ง Added environment specific configuration support
- By default we use
process.env.NODE_ENVfor the environment, falling back todevelopment - Specify your environment specific configuration in
environments[env] - By default, our production environment sets
maxAgeto one day, andcheckVersionto false - Use
getEnvironmentto get the current environment
- By default we use
- Added new
extendCollectionsevent - ๐ Added check during clean action to ensure we don't remove outPath if it is higher than our rootPath
- ๐ Added
docpad-serverbinary to shortcut heroku deployment - ๐ Scripts collection now supports adding plaintext javascript
-
consoleSetupoptions are nowconsoleInterfaceandcommanderinstead ofinterfaceandprogram - DocPad's main file is now
out/main.coffeeand the exportedrequireis now limited to files in theoutdirectory (not higher)
- ๐ Dropped node v0.4 support
-
v6.1.3 Changes
July 08, 2012- ๐ Fixed
extendTemplateDataevent firing before our plugins have finished loading
- ๐ Fixed
-
v6.1.2 Changes
July 08, 2012- ๐ Fixed
DocPad::getBlock
- ๐ Fixed
-
v6.1.1 Changes
July 08, 2012- Added
htmlcollection - โก๏ธ Dependency updates
- chai from v1.0 to v1.1
- Added