Skip to content
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

chore: Remove CS URL in client #37665

Merged
merged 8 commits into from
Nov 27, 2024
Merged

chore: Remove CS URL in client #37665

merged 8 commits into from
Nov 27, 2024

Conversation

sharat87
Copy link
Member

@sharat87 sharat87 commented Nov 24, 2024

The server should be the source of truth and owner for the current CS URL, and the client having direct access to the CS URL is (almost) an abstraction leak. We're using it on client for one purpose only, to redirect to CS for Google sheets authorization. That's just as well achieved with another redirect via the server.

This PR does that redirection and removes access to the CS URL to the client code. Not used anywhere else, and shouldn't be needed.

Automation

/test sanity datasource

🔍 Cypress test results

Tip

🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
Workflow run: https://github.com/appsmithorg/appsmith/actions/runs/12029489682
Commit: 0a1937e
Cypress dashboard.
Tags: @tag.Sanity, @tag.Datasource
Spec:


Tue, 26 Nov 2024 12:21:11 UTC

Communication

Should the DevRel and Marketing teams inform users about this change?

  • Yes
  • No

Summary by CodeRabbit

Release Notes

  • New Features

    • Enhanced CI workflow with improved error handling and logging.
    • Added a new authorization redirection endpoint in the SaaS controller.
  • Improvements

    • Database URL validation step added to CI tests.
    • Artifact management for test results has been clarified and improved.
    • Removal of cloudServicesBaseUrl from various configurations to streamline cloud service integration.
  • Bug Fixes

    • Refined logic for rerunning tests based on previous results.

These updates contribute to a more robust and efficient testing and configuration environment.

Copy link
Contributor

coderabbitai bot commented Nov 24, 2024

Walkthrough

The pull request introduces several modifications across various GitHub Actions workflows and application files. Key changes include enhancements to error handling and logging in CI workflows, the removal of the cloudServicesBaseUrl property from configuration files, and updates to the SaasController classes to incorporate a new CloudServicesConfig dependency. These alterations aim to improve the validation of configurations, streamline test execution, and refine the handling of cloud service interactions.

Changes

File Path Change Summary
.github/workflows/ci-test-custom-script.yml Added a step to check APPSMITH_DB_URL, improved logging by collecting Docker logs, refined logic for rerunning tests, and updated input parameter descriptions.
.github/workflows/ci-test-limited-with-count.yml Defined run_count input parameter with a default value of 1, added logic to check Cypress test results, and created ci_test_status.txt for test result reporting.
.github/workflows/ci-test-limited.yml Added pr and previous-workflow-run-id input parameters, enhanced artifact management, and improved error handling for Cypress tests.
app/client/docker/templates/nginx-app.conf.template Removed sub_filter directive for __APPSMITH_CLOUD_SERVICES_BASE_URL__.
app/client/public/index.html Removed cloudServicesBaseUrl from window.APPSMITH_FEATURE_CONFIGS, maintaining other initializations.
app/client/src/api/CloudServicesApi.ts Updated authorizeDatasourceWithAppsmithToken function to remove cloudServicesBaseUrl and changed the return URL to a hardcoded path.
app/client/src/ce/configs/index.ts Removed cloudServicesBaseUrl from the INJECTED_CONFIGS interface and related functions.
app/client/src/ce/configs/types.ts Removed cloudServicesBaseUrl from AppsmithUIConfigs interface.
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/SaasController.java Updated constructor to include CloudServicesConfig parameter.
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java Refactored constructor using Lombok's @RequiredArgsConstructor, added redirectForAuthorize method for handling authorization redirects.

Possibly related PRs

Suggested reviewers

  • mohanarpit
  • nidhi-nair
  • pratapaprasanna

Poem

In workflows where tests do play,
Enhancements shine, come what may.
With logs to catch each little flaw,
And configs trimmed, we stand in awe.
A cloudless sky, our paths are clear,
In code we trust, with naught to fear! ☁️✨

Warning

Rate limit exceeded

@sharat87 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 11 minutes and 40 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between f5b2201 and 0a1937e.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@sharat87 sharat87 changed the title chore/client-no-cs chore: Remove CS URL in client Nov 24, 2024
@sharat87
Copy link
Member Author

/build-deploy-preview skip-tests=true

@github-actions github-actions bot added the skip-changelog Adding this label to a PR prevents it from being listed in the changelog label Nov 24, 2024
Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/11992867651.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 37665.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-37665.dp.appsmith.com

@sharat87 sharat87 added the ok-to-test Required label for CI label Nov 24, 2024
@sharat87
Copy link
Member Author

/build-deploy-preview skip-tests=true

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12005167956.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 37665.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-37665.dp.appsmith.com

…om/appsmith/server/controllers/SaasController.java"

This reverts commit 519d95b.
@sharat87
Copy link
Member Author

/build-deploy-preview skip-tests=true

Copy link

Deploying Your Preview: https://github.com/appsmithorg/appsmith/actions/runs/12010633230.
Workflow: On demand build Docker image and deploy preview.
skip-tests: true.
env: ``.
PR: 37665.
recreate: .

Copy link

Deploy-Preview-URL: https://ce-37665.dp.appsmith.com

@sharat87 sharat87 marked this pull request as ready for review November 26, 2024 10:26
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🧹 Outside diff range and nitpick comments (1)
app/client/src/api/CloudServicesApi.ts (1)

1-2: LGTM! Good architectural improvement.

The change properly moves URL management to the server side, improving security and maintainability by making the server the source of truth for service URLs.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 7c66c07 and 5c75824.

📒 Files selected for processing (10)
  • .github/workflows/ci-test-custom-script.yml (2 hunks)
  • .github/workflows/ci-test-limited-with-count.yml (3 hunks)
  • .github/workflows/ci-test-limited.yml (0 hunks)
  • app/client/docker/templates/nginx-app.conf.template (0 hunks)
  • app/client/public/index.html (0 hunks)
  • app/client/src/api/CloudServicesApi.ts (1 hunks)
  • app/client/src/ce/configs/index.ts (0 hunks)
  • app/client/src/ce/configs/types.ts (0 hunks)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/SaasController.java (2 hunks)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (3 hunks)
💤 Files with no reviewable changes (5)
  • .github/workflows/ci-test-limited.yml
  • app/client/docker/templates/nginx-app.conf.template
  • app/client/public/index.html
  • app/client/src/ce/configs/index.ts
  • app/client/src/ce/configs/types.ts
🔇 Additional comments (6)
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/SaasController.java (1)

3-3: LGTM: Clean import addition

The CloudServicesConfig import follows standard conventions.

app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (3)

5-5: LGTM! Clean dependency management.

The switch to @RequiredArgsConstructor and addition of required imports follows Spring best practices.

Also applies to: 12-12, 15-16, 28-28


33-33: LGTM! Proper dependency injection.

The addition of CloudServicesConfig as a final field aligns with the PR objective to manage CS URLs server-side.


68-78: Verify OAuth flow integration and security headers.

Please ensure:

  1. Error scenarios are properly handled in AuthenticationService
  2. Security headers are set appropriately for the redirect
  3. The OAuth flow works end-to-end with this change
✅ Verification successful

Let me gather more information about the OAuth flow integration.


Let me check the security configuration for this OAuth endpoint.


Let me check the OAuth flow implementation more thoroughly.


OAuth redirect implementation is secure and follows best practices

The implementation:

  1. Uses proper HTTP status code (307 Temporary Redirect)
  2. Sets Location header correctly for the redirect
  3. Is protected by Spring Security's filter chain
  4. Handles errors appropriately through the global error handlers
  5. Uses proper content security headers from the SecurityConfig
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for proper error handling in AuthenticationService
ast-grep --pattern 'class AuthenticationService {
  $$$
  getAppsmithToken($$$) {
    $$$
  }
  $$$
}'

# Check for security headers configuration
rg -A 5 "SecurityWebFilterChain|WebSecurityConfigurerAdapter|SecurityFilterChain"

Length of output: 5906


Script:

#!/bin/bash
# Check OAuth related configurations and services
rg -A 5 "cloudServicesConfig|CloudServicesConfig" 

# Check for OAuth related security configurations
rg -A 10 "oauth2" -i

# Check for any CORS configurations that might affect the redirect
rg -A 5 "CorsConfig|cors.allow"

Length of output: 108650


Script:

#!/bin/bash
# Check for security configurations in SaasController and related classes
ast-grep --pattern 'class SecurityConfig {
  $$$
  securityWebFilterChain($$$) {
    $$$
  }
  $$$
}'

# Check for any CORS or security headers configuration
rg -A 10 "setStatusCode|setHeaders|getHeaders|ServerHttpResponse"

Length of output: 105158


Script:

#!/bin/bash
# Check for OAuth flow and security configurations
rg -A 5 "class SaasControllerCE|class SaasController"

# Check for any error handling in the OAuth flow
rg -A 10 "redirectForAuthorize|authorize"

# Check for any CORS or security configurations specific to this endpoint
rg -A 10 "WebFilter|SecurityWebFilterChain.*saas|/api/v1/saas"

Length of output: 100375

.github/workflows/ci-test-limited-with-count.yml (2)

20-22: LGTM: Parameter definition is clear and follows best practices


376-376: LGTM: Artifact upload configuration is well-defined

Comment on lines +16 to +17
public SaasController(AuthenticationService authenticationService, CloudServicesConfig cloudServicesConfig) {
super(authenticationService, cloudServicesConfig);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Constructor injection needs to be updated in SaasControllerCE

The parent class SaasControllerCE is using @RequiredArgsConstructor for field injection, but the child class SaasController is trying to use constructor injection. This mismatch needs to be addressed by either:

  • Adding an explicit constructor in SaasControllerCE to match the child class, or
  • Using @RequiredArgsConstructor in the child class instead
🔗 Analysis chain

LGTM: Constructor properly handles new dependency

The constructor correctly injects and passes the CloudServicesConfig to the parent class, aligning with the goal of making the server the source of truth for CS URLs.

Let's verify the parent class is ready for this change:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify SaasControllerCE has matching constructor signature

ast-grep --pattern 'class SaasControllerCE {
  $$$
  SaasControllerCE($_, CloudServicesConfig $_) {
    $$$
  }
  $$$
}'

Length of output: 122


Script:

#!/bin/bash
# Let's try to find the parent class first
rg -l "SaasControllerCE" --type java

# Then examine its content
rg "class SaasControllerCE" -A 10 --type java

Length of output: 1762


Script:

#!/bin/bash
# Let's also check for any CloudServicesConfig usage in the parent class
rg "CloudServicesConfig" --type java -A 2

Length of output: 21203


Script:

#!/bin/bash
# Let's find the actual file path for SaasControllerCE
fd "SaasControllerCE.java"

Length of output: 124


Script:

#!/bin/bash
# Let's check the constructor in SaasControllerCE
cat app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java

Length of output: 3719

.github/workflows/ci-test-custom-script.yml Show resolved Hide resolved
…ontrollers/ce/SaasControllerCE.java

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (1)

68-83: Consider additional security measures

While the basic implementation is sound, consider these security enhancements:

  1. Add more robust token validation (format, length)
  2. Add request logging for security auditing
  3. Consider rate limiting to prevent abuse

Here's a suggested enhancement:

 @GetMapping("authorize")
 public Mono<Void> redirectForAuthorize(ServerWebExchange exchange, @RequestParam String appsmithToken) {
+    log.debug("Received authorization redirect request for token: {}", maskToken(appsmithToken));
+
     if (appsmithToken == null || appsmithToken.isEmpty()) {
+        log.warn("Received invalid token in authorization redirect");
         exchange.getResponse().setStatusCode(HttpStatus.BAD_REQUEST);
         return exchange.getResponse().setComplete();
     }
+    
+    // Add more robust token validation
+    if (!isValidToken(appsmithToken)) {
+        log.warn("Token validation failed in authorization redirect");
+        exchange.getResponse().setStatusCode(HttpStatus.BAD_REQUEST);
+        return exchange.getResponse().setComplete();
+    }

     final String url = cloudServicesConfig.getBaseUrl() + "/api/v1/integrations/oauth/authorize?appsmithToken="
             + URLEncoder.encode(appsmithToken, StandardCharsets.UTF_8);

     ServerHttpResponse response = exchange.getResponse();
     response.setStatusCode(HttpStatus.TEMPORARY_REDIRECT);
     response.getHeaders().set("Location", url);

+    log.debug("Redirecting to cloud services for authorization");
     return response.setComplete();
 }
+
+private boolean isValidToken(String token) {
+    return token.matches("^[a-zA-Z0-9-_]{8,}$");
+}
+
+private String maskToken(String token) {
+    if (token == null) return null;
+    return token.substring(0, Math.min(4, token.length())) + "***";
+}
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between 5c75824 and f5b2201.

📒 Files selected for processing (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (3 hunks)
🔇 Additional comments (3)
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (3)

5-5: LGTM - Import changes are appropriate

The new imports support the added functionality and Lombok improvements.

Also applies to: 12-12, 15-16


28-28: LGTM - Good use of Lombok

The @requiredargsconstructor annotation improves code maintainability by automatically generating a constructor for final fields.


33-33: LGTM - Proper dependency injection

The CloudServicesConfig dependency aligns with the PR objective of making the server the source of truth for CS URLs.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Outside diff range and nitpick comments (1)
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (1)

71-86: Consider additional security measures

While basic security measures are in place, consider:

  1. Add rate limiting to prevent abuse
  2. Validate token format (not just null/empty)
  3. Add security event logging for audit trails

Example logging addition:

 @GetMapping("authorize")
 public Mono<Void> redirectForAuthorize(ServerWebExchange exchange, @RequestParam String appsmithToken) {
     if (appsmithToken == null || appsmithToken.isEmpty()) {
+        log.warn("Authorization attempt with invalid token");
         exchange.getResponse().setStatusCode(HttpStatus.BAD_REQUEST);
         return exchange.getResponse().setComplete();
     }

+    log.info("Processing authorization redirect for token: {}", appsmithToken.substring(0, 8) + "...");
     final String url = cloudServicesConfig.getBaseUrl() + "/api/v1/integrations/oauth/authorize?appsmithToken="
             + URLEncoder.encode(appsmithToken, StandardCharsets.UTF_8);
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between f5b2201 and 0a1937e.

📒 Files selected for processing (1)
  • app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (3 hunks)
🔇 Additional comments (2)
app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ce/SaasControllerCE.java (2)

5-5: LGTM: Clean import additions

The new imports are appropriate for the added functionality.

Also applies to: 12-12, 15-16, 26-27


31-31: LGTM: Clean dependency injection

Good use of Lombok's @requiredargsconstructor and proper injection of CloudServicesConfig.

Also applies to: 36-36

@sharat87 sharat87 merged commit c9ddd9c into release Nov 27, 2024
42 checks passed
@sharat87 sharat87 deleted the chore/client-no-cs branch November 27, 2024 05:02
github-actions bot pushed a commit to Zeral-Zhang/appsmith that referenced this pull request Nov 27, 2024
The server should be the source of truth and owner for the current CS
URL, and the client having direct access to the CS URL is (almost) an
abstraction leak. We're using it on client for one purpose only, to
redirect to CS for Google sheets authorization. That's just as well
achieved with another redirect via the server.

This PR does that redirection and removes access to the CS URL to the
client code. Not used anywhere else, and shouldn't be needed.


## Automation

/test sanity datasource

### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results  -->
> [!TIP]
> 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
> Workflow run:
<https://github.com/appsmithorg/appsmith/actions/runs/12029489682>
> Commit: 0a1937e
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=12029489682&attempt=1"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.Sanity, @tag.Datasource`
> Spec:
> <hr>Tue, 26 Nov 2024 12:21:11 UTC
<!-- end of auto-generated comment: Cypress test results  -->


## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [x] No


<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

## Release Notes

- **New Features**
	- Enhanced CI workflow with improved error handling and logging.
- Added a new authorization redirection endpoint in the SaaS controller.

- **Improvements**
	- Database URL validation step added to CI tests.
	- Artifact management for test results has been clarified and improved.
- Removal of `cloudServicesBaseUrl` from various configurations to
streamline cloud service integration.

- **Bug Fixes**
	- Refined logic for rerunning tests based on previous results.

These updates contribute to a more robust and efficient testing and
configuration environment.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
github-actions bot pushed a commit to Zeral-Zhang/appsmith that referenced this pull request Nov 27, 2024
The server should be the source of truth and owner for the current CS
URL, and the client having direct access to the CS URL is (almost) an
abstraction leak. We're using it on client for one purpose only, to
redirect to CS for Google sheets authorization. That's just as well
achieved with another redirect via the server.

This PR does that redirection and removes access to the CS URL to the
client code. Not used anywhere else, and shouldn't be needed.


## Automation

/test sanity datasource

### 🔍 Cypress test results
<!-- This is an auto-generated comment: Cypress test results  -->
> [!TIP]
> 🟢 🟢 🟢 All cypress tests have passed! 🎉 🎉 🎉
> Workflow run:
<https://github.com/appsmithorg/appsmith/actions/runs/12029489682>
> Commit: 0a1937e
> <a
href="https://internal.appsmith.com/app/cypress-dashboard/rundetails-65890b3c81d7400d08fa9ee5?branch=master&workflowId=12029489682&attempt=1"
target="_blank">Cypress dashboard</a>.
> Tags: `@tag.Sanity, @tag.Datasource`
> Spec:
> <hr>Tue, 26 Nov 2024 12:21:11 UTC
<!-- end of auto-generated comment: Cypress test results  -->


## Communication
Should the DevRel and Marketing teams inform users about this change?
- [ ] Yes
- [x] No


<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

## Release Notes

- **New Features**
	- Enhanced CI workflow with improved error handling and logging.
- Added a new authorization redirection endpoint in the SaaS controller.

- **Improvements**
	- Database URL validation step added to CI tests.
	- Artifact management for test results has been clarified and improved.
- Removal of `cloudServicesBaseUrl` from various configurations to
streamline cloud service integration.

- **Bug Fixes**
	- Refined logic for rerunning tests based on previous results.

These updates contribute to a more robust and efficient testing and
configuration environment.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ok-to-test Required label for CI skip-changelog Adding this label to a PR prevents it from being listed in the changelog
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants