|
1 | 1 | @{
|
2 |
| - ModuleVersion = '0.2.5' |
| 2 | + ModuleVersion = '0.2.6' |
3 | 3 | Description = 'An Extensible Transpiler for PowerShell (and anything else)'
|
4 | 4 | RootModule = 'PipeScript.psm1'
|
5 | 5 | PowerShellVersion = '4.0'
|
|
141 | 141 | BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
|
142 | 142 | Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
|
143 | 143 | ReleaseNotes = @'
|
144 |
| -## PipeScript 0.2.5: |
| 144 | +## PipeScript 0.2.6: |
145 | 145 |
|
146 |
| -* Added Support for Aspects (#401) |
147 |
| -* Support for Pre/Post commands in Core Transpiler |
148 |
| - * Commands Named PipeScript.PreProcess / PipeScript.Analyzer will run before transpilation of a ScriptBlock |
149 |
| - * Commands Named PipeScript.PostProcess / PipeScript.Optimizer will run after transpilation of a ScriptBlock |
150 |
| -* Adding PipeScript.Optimizer.ConsolidateAspects (Fixes #413) |
151 |
| -* Conditional Keywords Fixes (Fixes #402) |
152 |
| -* New-PipeScript: Improving Pipelining (Fixes #400) |
153 |
| -* Update-PipeScript: |
154 |
| - * Tracing Events (#407) |
155 |
| - * Support for Insertions (#405, #406, #407) |
156 |
| -* Template Improvements |
157 |
| - * Templates can now be either singleline or multiline (Fixes #398) |
158 |
| -* New Language Support |
159 |
| - * Eiffel (#404) |
160 |
| - * PS1XML (#414) |
161 |
| - * SVG (#411) |
162 |
| - * XAML (#414) |
163 |
| -* XML Transpilers support inline xml output (Fixes #412) |
164 |
| -* Added initial demo file (Fixes #420) |
| 146 | +* PipeScript can now be sponsored! (please show your support) (#488) |
165 | 147 |
|
| 148 | +* PipeScript now has several formalized command types (#452) |
| 149 | + * Aspects |
| 150 | + * DynamicParameters (#462) |
| 151 | + * ModuleExtensionType (#460) |
| 152 | + * ModuleExtensionPattern (#460) |
| 153 | + * ModuleExtensionCommand (#460) |
| 154 | + * Automatic Variables (Fixes #426) |
| 155 | + * $MySelf |
| 156 | + * $MyParameters |
| 157 | + * $MyCallstack |
| 158 | + * $MyCaller |
| 159 | + * $MyCommandAst (#434) |
| 160 | + * $IsPipedTo (#430) |
| 161 | + * $IsPipedFrom (#431) |
| 162 | + * PostProcessing/Optimization now applies to Functions (#432) |
| 163 | + * Partial functions are now a PostProcessor (#449) |
| 164 | + * Protocol Functions |
| 165 | + * Made HTTP, UDP, and JSON Schema Protocols into functions (#474) |
| 166 | + * Added OpenAPI Protocol (#457) |
| 167 | +* Core Command Improvements |
| 168 | + * Get-PipeScript is now built with PipeScript (#463) |
| 169 | + * Export-PipeScript |
| 170 | + * Is _much_ more transparent in GitHub Workflow (#438) |
| 171 | + * Now lists all files built, time to build each, transpilers used, and PipeScript factor. |
| 172 | + * Auto Installs simple #requires in build files (#491) |
| 173 | + * Update-PipeScript uses AST Based Offsets (#439) |
| 174 | + * New-PipeScript |
| 175 | + * Making Description/Synopis ValueFromPipelineByPropertyName (#453) |
| 176 | + * Adding -InputObject parameter. |
| 177 | + * Making -Parameter _much_ more open-ended (#454) |
| 178 | + * Improving Reflection Support (#467) |
| 179 | + * Allowing -Parameter as `[CommandInfo]`/`[CommandMetaData]` (#477) |
| 180 | + * Supporting DefaultValue/ValidValue (Fixes #473) |
| 181 | + * Adding -Verb/-Noun (#468) |
| 182 | + * Invoke-PipeScript |
| 183 | + * Improving Positional Attribute Parameters (Fixes #70) |
| 184 | + * Clarifying 'Transpiler Not Found' Messages (#484) |
| 185 | +
|
| 186 | +* Sentence Parsing Support |
| 187 | + * Improving Mutliword alias support (#444) |
| 188 | + * Adding Clause.ParameterValues (#445) |
| 189 | + * Allowing N words to be skipped (#479) |
| 190 | +
|
| 191 | +* 'All' Improvements |
| 192 | + * Expanding Syntax for 'All' (#436) |
| 193 | + * Compacting generating code (#440) |
| 194 | + * Adding Greater Than / Less Than aliases (#446) |
| 195 | + * Enabling 'should' (#448) |
| 196 | + * 'all applications in $path' (#475) |
| 197 | +
|
| 198 | +* New Transpilers: |
| 199 | + * ValidValues (#451) |
| 200 | + * Adding WhereMethod (#465) |
| 201 | + * Adding ArrowOperator/ Lambdas ! (#464) |
| 202 | +
|
| 203 | +* Extended Type Improvements |
| 204 | + * VariableExpressionAst.GetVariableType - Enabling InvokeMemberExpression (#490) |
| 205 | + * CommandInfo.BlockComments - Resolving aliases (#487) |
| 206 | + * CommandInfo.GetHelpField - Skipping additional script blocks (Fixes #486) |
| 207 | +
|
| 208 | +* Minor Fixes: |
| 209 | + * Requires is now Quieter (#433) |
| 210 | + * Appending Unmapped Locations to Alias Namespace (Fixes #427) |
| 211 | + * Fixing Examples in New-PipeScript (thanks @ninmonkey !) |
| 212 | + * Namespaced Alias/Function - Not Transpiling if command found (#455) |
| 213 | + * Automatically Testing Examples (greatly expanded test coverage) (#461) |
| 214 | + * Templates now report errors more accurately (#489) |
| 215 | + * Inherit - Fixing Abstract/Dynamic Inheritance (#480) |
| 216 | + * Include - Allowing Including URLs (#481) |
| 217 | + * Partial Functions will not join their headers (#483) |
166 | 218 | ---
|
167 | 219 |
|
168 | 220 | Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG)
|
|
0 commit comments