chore: replace proprietary terms#48
Merged
Merged
Conversation
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Jul 1, 2026
148a241 to
abb0c23
Compare
76d7247 to
5afc455
Compare
abb0c23 to
706e5bd
Compare
Collaborator
Author
Merge activity
|
706e5bd to
77397a4
Compare
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.

TL;DR
Replaces all references to the Minerva/Oasis SSO and auth system with the Oktasso/Tangle equivalents across the codebase.
What changed?
scripts/minervaAuth.ts→scripts/oktassoAuth.tsand updated all exported interfaces (MinervaHeaders→OktassoHeaders,getMinervaHeaders→getOktassoHeaders) and internal logic to useOKTASSO_*environment variables and cookie names instead ofMINERVA_*.scripts/print-oasis-token.tswithscripts/print-tangle-token.ts, updating the token script to useTANGLE_TOKEN/TANGLE_BASE_URLand the Oktasso auth flow.oasis:tokennpm script totangle:tokenand updated thedevscript to setAUTH_JWT_TOKEN_COOKIE_NAME=OKTASSO_TOKEN.OASIS_TOKENenvironment variable references withTANGLE_TOKENinturbo.json,.env.example,egressAllowlist.ts, and documentation.oasisAuthHeaders()→tangleAuthHeaders()in the egress allowlist, updating the credential injection function to read fromTANGLE_TOKEN.contracts.ts,identity.ts,config.ts,me.ts,sessionStore.ts, andhandlers.ts.oktassoAuth.tsand updated the Surface design system error link to point to the local design system doc instead of the Polaris external URL.oasis.shopify.iototangle.example.comand proxy references from "oasis pod-proxy" to "tangle pod-proxy".How to test?
.env.exampleto.envand populate theOKTASSO_*variables.pnpm tangle:tokenand confirm the PKCE browser flow completes, printing anOKTASSO_TOKEN=<session>cookie string to stdout.pnpm devand verify the server starts withAUTH_JWT_TOKEN_COOKIE_NAME=OKTASSO_TOKENand thatGET /api/mecorrectly resolves a user identity from the Oktasso JWT cookie.TANGLE_TOKENrather than any hardcoded value.Why make this change?
The codebase previously contained Shopify-internal references (
Minerva,Oasis,oasis.shopify.io,minerva.shopifycloud.com) that tied the project to internal Shopify infrastructure. This change decouples the auth and egress systems from those internal dependencies, replacing them with the generic Oktasso SSO and Tangle API equivalents so the project can be used outside of Shopify's internal environment.