Releases: Badgerati/Pode
Releases · Badgerati/Pode
Pode v0.15.0
Checksum: 051A67FDCD8DA87BCB1A39613C23CE6C84AC3AB2A8C5B56519EDB1FF816902ED
Features
- #31: Support for multithreaded responses on web, smtp and tcp servers using
-Threads
on your Server block
Misc
Pode v0.14.0
Pode v0.13.0
Checksum: 10EB8C74B89AA0575C7123B0FEC1FC636F7A1373CE215D85B41FC4FB0A62F3FA
Features
- #40: Ability to add variables to a shared state, so you can re-use variables in timers, loggers, and routes
Pode v0.12.0
Pode v0.11.3
Checksum: 2C363B3449D3FA76495A29A9FD689D17F2C63D27F915B90CEC1C8AACB7984D39
Bugs and Enhancements
- #22: Proper fix for high CPU usage, by using
Task.Wait
withCancellationTokens
; A Runspace is setup to monitor for key presses, and onCtrl+C
willCancel()
the token and terminate Pode
Pode v0.11.2
Checksum: D89B49A2E28CE9A6FA8FADE5A2820D113C1F337C17371CC566A2624C062DFEB5
Bugs
- #22: Hot fix patch for reducing high CPU usage when idle
Pode v0.11.1
Checksum: F92BFC303CB61F739F8812BBB47E91691B7CE05AB2579AEECA91C7632F481F9E
Bugs
- #16: Status and Include functions were missing from module export list
Pode v0.11.0
Checksum: 7EA554394036B4AF79E3FF39698C8105380EC01704AD96C5E79E5F92E0FA4764
Features
- #5: Async timers to run tasks and processes in a separate thread (see timers sections in README)
Enhancements
- #7: New
status
function to easily alter the StatusCode of a Response - #8: New
json
,xml
,html
,csv
,view
andtcp
functions to replace current "Write-Response" - now obsolete - functions (see ticket for explanation, and README for usage)
Bugs
- #12: Fixed an issue that caused image files (and others) to not render appropriately
Pode v0.10.1
Checksum: C2798BFA725B15A8FA8B52DC53CC8633D83EE627BFE43A2D95EB7DDB6B10CEFA
This is a hot fix release for a hard-coded version in the module's PSD1 file.
Pode v0.10.0
Checksum: C6918E91089CCB46D94B04B30327D0AA88E4B100B812A1B52B69A73158E66E61
Features
- Adds Unix support
- Adds Docker support
- Ability to create
Server
as an Interval - so you can loop logic every 30 seconds, for example - Includes the Query string on the
$session
object passed to routes - Ability to have parameters in routes, ie:
/api/accounts/:accountId
, which can be referenced via:$session.Data['accountId']
- Support for
package.json
files, and support for commands similar to node. ie:pode init
,pode start
,pode install
(see README) - Rename of
PSHTML
to.pode
files, to support multiple file types (see README) - New function
include
to import other files into pode files - Support for third-party view engines, should as EPS
- JSON/XML responses are now compressed
- Rename of
Add-PodeRoute
to justroute
, andSet-PodeViewEngine
to justengine