-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat: new messages endpoint #287
Conversation
…messages-endpoint
I see an issue here: ![]() We are not showing the type of secret detected The second secret is a Dogecoin and we are not showing it (keep in mind that it is a false positive, BE issue the regex is matching import file in react issue opened on Friday stacklok/codegate#985) Below the alert object
|
In terms of experience I guess makes sense this conversation summary, it is showing good insights...I think we can add more, like the filename, we should be able to do that from the BE response |
the vim-like search is a really cool touch 😄 although I am sometimes annoyed when websites do this, since it kinda collides with the behavior of browser plugins that also do it. I don't know if there is anything you can do with this information tho 😸 |
kinda random thought, and I think it was actually me who originally introduced it like this but.... 😄 is the next/prev button really a primary action? This becomes extra weird when you have both of them enabled: maybe we could make them secondary buttons, but to keep them visible, we could add some icons? |
…codegate-ui into feat/new-messages-endpoint
…messages-endpoint
Minder Vulnerability Report ✅Minder analyzed this PR and found it does not add any new vulnerable dependencies.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependency Information
Minder analyzed the dependencies introduced in this pull request and detected that some dependencies do not meet your security profile.
📦 Dependency: @types/json5
Scoring details
Component | Score |
---|---|
Provenance | unknown |
📦 Dependency: doctrine
Archived packages are no longer updated or maintained. This can lead to security vulnerabilities and compatibility issues.
Scoring details
Component | Score |
---|---|
Package activity | 6.6 |
Repository activity | 4.2 |
User activity | 8.9 |
Provenance | historical_provenance_match |
Proof of Origin (Provenance)
This package can be linked back to its source code using a historical provenance map.
We were able to correlate a significant number of git tags and tagged releases in this package’s source code to versions of the published package. This mapping creates a strong link from the package back to its source code repository, verifying proof of origin.
Published package versions | 33 |
Number of git tags or releases | 30 |
Versions matched to tags or releases | 29 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependency Information
Minder analyzed the dependencies introduced in this pull request and detected that some dependencies do not meet your security profile.
📦 Dependency: @types/json5
Scoring details
Component | Score |
---|---|
Provenance | unknown |
📦 Dependency: doctrine
Archived packages are no longer updated or maintained. This can lead to security vulnerabilities and compatibility issues.
Scoring details
Component | Score |
---|---|
Package activity | 6.6 |
Repository activity | 4.2 |
User activity | 8.9 |
Provenance | historical_provenance_match |
Proof of Origin (Provenance)
This package can be linked back to its source code using a historical provenance map.
We were able to correlate a significant number of git tags and tagged releases in this package’s source code to versions of the published package. This mapping creates a strong link from the package back to its source code repository, verifying proof of origin.
Published package versions | 33 |
Number of git tags or releases | 30 |
Versions matched to tags or releases | 29 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dependency Information
Minder analyzed the dependencies introduced in this pull request and detected that some dependencies do not meet your security profile.
📦 Dependency: @types/json5
Scoring details
Component | Score |
---|---|
Provenance | unknown |
📦 Dependency: doctrine
Archived packages are no longer updated or maintained. This can lead to security vulnerabilities and compatibility issues.
Scoring details
Component | Score |
---|---|
Package activity | 6.6 |
Repository activity | 4.2 |
User activity | 8.9 |
Provenance | historical_provenance_match |
Proof of Origin (Provenance)
This package can be linked back to its source code using a historical provenance map.
We were able to correlate a significant number of git tags and tagged releases in this package’s source code to versions of the published package. This mapping creates a strong link from the package back to its source code repository, verifying proof of origin.
Published package versions | 33 |
Number of git tags or releases | 30 |
Versions matched to tags or releases | 29 |
not useful
}, | ||
|
||
// enforce unidirectional codebase: | ||
// e.g src/features and src/routes can import from these shared modules but not the other way around |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice
Pull Request Test Coverage Report for Build 13264047211Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
Why make this change?
These changes are mainly motivated around making it easer to understand how alerts related to conversations, and to address the question raised my Manuel Morales Kwiziq in Discord:
User facing changes
Some screenshots of the new UI
Non-user facing changes
Because these changes involved some large-scale refactoring/replacement of code, I took on a few tasks to keep the codebase in a good state as I went.
mswEndpoint
that offers type-safety against the paths defined in the open-api spec, all MSW handlers are updated to use this instead of loosely accepting any string. ESlint prevents circumventing this withno-restricted-synax
. (separated & merged chore: type-safe msw endpoint helper #288)no-restricted-paths
rule. Now a unidirectional relationship between shared/common code, feature-specific code and application routes is in effectroute-dashboard.test.tsx
suite is broken up, and any tests relating to the messages table are moved closer to that component.