Conversation
… specified in PUT and DELETE routes
… specified in PUT and DELETE routes
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
- remove unused idx reassignment in query-translator translateDelete - add tests for invalid UUID params in monitoring routes - add tests for parsePositiveInt edge cases - add tests for null status recovery in monitoring service - add test for invalid referenceTime in correlation routes
This file contains hidden or 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
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.
This pull request is a patch release (
0.9.1) focused on fixing a wide range of bugs, improving validation, and enhancing reliability across the backend. Key areas addressed include organization ID handling, improved schema validation, transactional safety for invitations, more robust log retrieval, and better input validation for IDs, limits, and dates. There are also several updates to documentation and version numbers to reflect the new release.Bug Fixes and Reliability Improvements
limit/offsetquery parameters to prevent negative or invalid values from reaching the database.Input Validation and Security
sortBy/sortOrderparameters. (see changelog, CHANGELOG.mdR9-R38)safe-regex2and compile errors are caught to prevent ReDoS attacks. (packages/backend/src/modules/monitoring/checker.tsR3, see changelog)Schema and API Consistency
nullfor descriptions by usingz.string().nullable().optional(), matching database behavior. (see changelog, CHANGELOG.mdR9-R38)organizationIdfrom query params into the request body before validation, ensuring compatibility with frontend requests. [1] [2] [3]Documentation and Version Updates
README.mdandpackage.jsonfiles to reflect version0.9.1and document new features and fixes. [1] [2] [3] [4] [5]0.9.1summarizing all major fixes and improvements.Closes: #193, Closes: #194, Closes: #195