mdaneri
mdaneri
ConvertTo-PodeOAParameter -In Path should set the property Required to true The code change is simple OpenApi.ps1 Line 1415 if ($Property.required) { $prop['required'] = $Property.required } elseif ($In -eq 'Path') #for...
this is a sample OpenAPI document if I set openapi 3.1.0 I get the following error **_Line 35 Callback Object values must be of Path Item Object shape_** If I...
RapiPdf is failing to generate the PDF when a parameter is encoded ``` /org: get: tags: - org summary: Return list of Account operationId: getAccounts parameters: - name: AccountSchema in:...
PowerShell best practices state cmdlets should use singular nouns and not plurals. Suppression allows you to suppress the rule for specific function names. For example: `Merge-PodeScriptblockArguments` should be renamed to...
### Overview: Pode, as a PowerShell library, currently lacks robust internationalization (i18n) support, which limits its usability for users across different linguistic and cultural backgrounds. This feature request aims to...
### Describe the Bug `Write-PodeHtmlResponse` returns the wrong result when an array of strings is piped. It works correctly if the array is passed as a parameter. ### Steps To...
I have a Pode in pre-production, and like any machine on the network, it is scanned with Nexus. I was surprised to find so many exceptions on the console and...
#### Bug Description When using Pode to run asynchronous tasks, I've encountered an issue where `Test-PodeTaskCompleted` returns `$false` for a task, even after ensuring the task has had sufficient time...
Description I want to run asynchronous tasks via `Add-PodeTask` followed by `Invoke-PodeTask`. While `Invoke-PodeTask` successfully returns a detailed hashtable of task information immediately after invocation, I encounter difficulties accessing similar...
Is there a reason why static routes are checked before any non-static ones? The question is related to this sample: ( $directoryPath is the PodePath) ```PowerShell # Start Pode server...