-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
ui: fix storybook for db-console and make it run with bazel #104259
Conversation
Thank you for contributing to CockroachDB. Please ensure you have followed the guidelines for creating a PR. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
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.
bors r+ |
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.
Build failed (retrying...): |
Build failed (retrying...): |
Seems like this PR needs a rebase:
bors r- |
Canceled. |
35097be
to
da6af95
Compare
Thank you for updating your pull request. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
da6af95
to
c16a0bd
Compare
There was merge conflict in Lines 178 to 182 in 0207c61
|
c16a0bd
to
1d0a199
Compare
bors r+ |
🕐 Waiting for PR status (GitHub check) to be set, probably by CI. Bors will automatically try to run when all required PR statuses are set. |
This change includes several changes that enables better experience for developers to build visual components with Storybook. - fixed storybook configuration for Db Console project. It required to install `core-js` package to resolve following issues: https://github.com/storybookjs/storybook/blob/main/MIGRATION.md#core-js-dependency-errors - updated fixtures for cluster UI storybook that wasn't adjusted to changes in components they rely on. - Added new `dev ui storybook` subcommand that allows run storybooks for Db Console or Cluster UI projects. Release note: None
1d0a199
to
550aad8
Compare
GitHub status checks took too long to complete, so bors is giving up. You can adjust bors configuration to have it wait longer if you like. |
bors r+ |
Build succeeded: |
106659: sql: fix pausable portal execution of apply joins with subqueries r=yuzefovich a=yuzefovich Previously, when executing a query with an apply join with "inner" subqueries via pausable portals model we would crash because we'd incorrectly apply the "pausable portal" execution model to those "inner" subqueries (even though they need to be executed completely). We already disabled this execution model for the main "inner" query, but it should be disabled for the whole apply join iteration. I decided to not include a release note given that pausable portals are disabled by default and apply joins with inner subqueries seem like an edge case. Epic: None Release note: None 106724: ui: revert dependency changes that broke `dev ui watch` command r=koorosh a=koorosh This patch reverts part of the changes from #104259 that were made to run storybook with `dev` but introduced regression to `dev ui watch` command. No one made changes in `package.json` and `yarn.lock` after me so it was safe to revert those files. With this reverted change `dev ui storybook` command doesn't work which kind of fine since it is not used anywhere. Release note: None Epic: None Co-authored-by: Yahor Yuzefovich <[email protected]> Co-authored-by: Andrii Vorobiov <[email protected]>
This change includes several changes that enables better experience for developers to build visual components with Storybook, now it is possible to run Storybook with
dev
ie:core-js
package to resolve following issues: https://github.com/storybookjs/storybook/blob/main/MIGRATION.md#core-js-dependency-errorsdev ui storybook
subcommand that allows run storybooks for Db Console or Cluster UI projectsRelease note: None
Epic: None