-
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v2.11.1 #1442
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Addresses #1412
- Remove Alias. - Fix Test-PodeCacheStorage function calls to use 'Name' parameter.
Fixes Test-PodeCacheStorage being called with incorrect -Key parameter
Adds new/missing CSP parmeters in security headers
fix #1422 fix ConvertTo-PodeOpenApiRoutePath Move ConvertTo-PodeOpenApiARoutePath to OpenAPI file and renamed it to ConvertTo-PodeOARoutePath Add test
### Summary of Changes: 1. **Removed `ConvertFrom-PodeValueToByteArray`**: - The function `ConvertFrom-PodeValueToByteArray` has been removed as it's no longer needed. 2. **Updated Encoding Logic in `Response.ps1`**: - In `Public/Response.ps1`, line 219, the following change was made: - Replaced: ```powershell $Bytes = ConvertFrom-PodeValueToByteArray -Value $Value ``` - With: ```powershell $Bytes = [System.Text.Encoding]::UTF8.GetBytes($Value) ``` 3. **Removed Duplicated `Get-PodeTaskProcess`**: - The function `Get-PodeTaskProcess` had a duplicate definition, which has been removed. 4. **Renamed `ConvertFrom-PodeValueToByteArray` to `ConvertFrom-PodeStreamToByteArray`**: - The remaining instances of `ConvertFrom-PodeValueToByteArray` were renamed to `ConvertFrom-PodeStreamToByteArray` to reflect its actual functionality and improve clarity.
Refactor Byte Conversion Functions and Remove Duplicate Task Process Definitions
Fix OpenAPI Route Path Conversion for Placeholder Unescaping and Relocate Function (#1422)
Migrates Stream functions into the .NET Listener
Fix OpenAPI Route parameters so they respect the DefinitionTag; Order Routes in OpenAPI specification by creation, and HTTP methods in a more conventional order; Add-PodeOAComponentRequestBody now supports hashtable/ordered input; More appropriately order responses, parameters, and request bodies in OpenAPI
Fixes the clean-up of old log files
Add -AllowNonStandardBody Parameter to Enable Request Bodies for Non-Standard HTTP Methods (Address #1432)
Fixes the unnecessary Error Logging on HTTP Request Timeouts
Don't setup the Caching Housekeeper Timer in a Serverless context
Fixes error message appearing when using self-signed certificates on localhost
Adds v2.11.1 release notes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Enhancements
Bugs
Initialize-PodeOpenApiTable
fails to initialize OpenAPI table whenDefaultDefinitionTag
param is Null #1407: 'Initialize-PodeOpenApiTable' fails to initialize OpenAPI table when 'DefaultDefinitionTag' param is Null (thanks @mdaneri!)Security
Packaging