Upcoming Release Changes#7764
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request prepares for the upcoming Highlights
Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
🐋 This PR was built and pushed to the following Docker images: Targets: Platforms: Image Tag: |
💻 Website PreviewThe latest changes are available as preview in: https://pr-7764.hive-landing-page.pages.dev |
There was a problem hiding this comment.
Code Review
This pull request automates the release of hive@9.5.0, which includes experimental support for running without the SuperTokens service and new background composition jobs for schema proposals. However, the new authentication and cryptographic logic introduces several critical security vulnerabilities, including potential SSRF in the OIDC flow and weak cryptographic configurations. A minor duplication in the .gitignore file also needs to be cleaned up. These issues pose significant risks to the security and reliability of the new authentication feature and must be addressed before the release is finalized.
| Cargo.lock | ||
| Cargo.lock | ||
| Cargo.lock | ||
| Cargo.lock |
b98fcc5 to
0459f1f
Compare
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
hive@9.5.0
Minor Changes
#7699
5f88ce8Thanks @n1ru4l! - Add experimental support for running without
supertokensservice.Instructions
Prerequisites
Adjust your docker compose file like the following:
services.supertokensfrom yourdocker-compose.community.ymlfileservices.server.environmentSUPERTOKENS_CONNECTION_URI=SUPERTOKENS_API_KEY=services.server.environmentSUPERTOKENS_AT_HOME=1SUPERTOKENS_REFRESH_TOKEN_KEY=SUPERTOKENS_ACCESS_TOKEN_KEY=services.migrations.environmentSUPERTOKENS_AT_HOME=1Set the refresh token key
Extract from existing
supertokensdeploymentThis method works if you use supertokens before and want to have existing user sessions to
continue working. If you want to avoid messing with the database, you can also create a new
refresh token key from scratch, the drawback is that users are forced to login again.
Extract the refresh token key from the supertokens database
The key should look similar to this:
1000:15e5968d52a9a48921c1c63d88145441a8099b4a44248809a5e1e733411b3eeb80d87a6e10d3390468c222f6a91fef3427f8afc8b91ea1820ab10c7dfd54a268:39f72164821e08edd6ace99f3bd4e387f45fa4221fe3cd80ecfee614850bc5d647ac2fddc14462a00647fff78c22e8d01bc306a91294f5b889a90ba891bf0aa0Update the docker compose
services.server.environment.SUPERTOKENS_REFRESH_TOKEN_KEYenvironmentvariable value to this string.
Create from scratch
Run the following command to create a new refresh key from scratch:
Update the docker compose
services.server.environment.SUPERTOKENS_REFRESH_TOKEN_KEYenvironmentvariable value to this string.
Set the access token key
Generate a new access token key using the following instructions:
Update the docker compose
services.server.environment.SUPERTOKENS_ACCESS_TOKEN_KEYenvironmentvariable value to the formatted string output.
Conclusion
After performing this updates you can run Hive Console without the need for the
supertokensservice. All the relevant authentication logic resides within the
servercontainer instead.Existing users in the supertokens system will continue to exist when running without the
supertokensservice.#7706
9357d39Thanks @jdolle! - We continue to build and expand the features of
schema proposals. In this change, a background composition job was added to allow asynchronous
updates to the composition state of a proposal. This composition job uses the schema service's
composer but is unique from checks in that it takes the latest state of all subgraphs that are a
part of a schema proposal.
Additional environment variables for
workflowsservice:The
workflowservice calls theschemaservice's composeAndValidate TRPC endpoint and requiresthe
schemaservice endpoint. And the shared instance of Redis, used as a pubsub in theserverand
apiservices, is also now used byworkflowsto updateSubscription.schemaProposalComposition.For self hosters, make sure to provide the following environment variables to the
workflowsservice:
Patch Changes
#7761
14581baThanks @n1ru4l! - Correctly display permission group without assigned
resources.
#7700
d777e32Thanks @adambenhassen! - Add server-side sorting to app
deployments table (Created, Activated, Last Used).
#7677
c3cb1acThanks @jdolle! - Increase service keepAliveTimeout from 72s to 905s
#7746
ade45f5Thanks @n1ru4l! - fix unexpected error for support tickets in case
the user already exists within zendesk.
#7673
f8aac8bThanks @adambenhassen! - Handle OIDC token exchange errors
gracefully instead of returning 500. Classifies OAuth 2.0 error codes into user-safe messages
without leaking sensitive provider details. Fix OIDC debug log modal not displaying the log area.
#7732
3567483Thanks @jonathanawesome! - fix: correct RPM chart Y-axis
scale to match actual values