Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: clerk/javascript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @clerk/clerk-react@3.2.6
Choose a base ref
...
head repository: clerk/javascript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @clerk/clerk-react@3.2.7-alpha.0
Choose a head ref
  • 5 commits
  • 47 files changed
  • 1 contributor

Commits on Apr 15, 2022

  1. Copy the full SHA
    a1c215b View commit details
  2. feat(gatsby-plugin-clerk): Wrap page element with GatsbyClerkProvider…

    … during SSR/CSR
    
    feat(gatsby-plugin-clerk): Fix gatsby build by ignoring `/ssr` on specific stages
    
    feat(gatsby-plugin-clerk): Throw error if frontendApi is not set
    nikosdouvlis committed Apr 15, 2022
    Copy the full SHA
    1ee5503 View commit details
  3. feat(gatsby-plugin-clerk): Introduce withServerAuth Gatsby SSR helper

    chore(repo): Merge main
    
    feat(gatsby-plugin-clerk): Sanitize auth data before inject
    nikosdouvlis committed Apr 15, 2022
    Copy the full SHA
    0c24b65 View commit details
  4. feat(gatsby-plugin-clerk): Make gatsby develop proxy work with inters…

    …titial
    
    feat(gatsby-plugin-clerk): Correctly type WithServerAuth return value
    
    feat(gatsby-plugin-clerk): Delete serverData.clerkState after passing it to ClerkProvider
    nikosdouvlis committed Apr 15, 2022
    Copy the full SHA
    9a452e3 View commit details
  5. chore(release): Publish

     - @clerk/backend-core@1.4.1-alpha.0
     - @clerk/clerk-js@3.6.1-alpha.0
     - @clerk/edge@1.3.2-alpha.0
     - @clerk/clerk-expo@0.9.12-alpha.0
     - gatsby-plugin-clerk@3.0.0-alpha.1
     - @clerk/nextjs@3.3.5-alpha.0
     - @clerk/clerk-react@3.2.7-alpha.0
     - @clerk/remix@0.3.10-alpha.0
     - @clerk/clerk-sdk-node@3.3.5-alpha.0
     - @clerk/shared@0.1.3-alpha.0
     - @clerk/types@2.6.1-alpha.0
    nikosdouvlis committed Apr 15, 2022
    Copy the full SHA
    6512f03 View commit details
Showing with 42,635 additions and 21,294 deletions.
  1. +2 −1 .gitignore
  2. +42,124 −21,260 package-lock.json
  3. +4 −0 packages/backend-core/CHANGELOG.md
  4. +2 −2 packages/backend-core/package.json
  5. +4 −0 packages/clerk-js/CHANGELOG.md
  6. +3 −3 packages/clerk-js/package.json
  7. +4 −0 packages/edge/CHANGELOG.md
  8. +2 −2 packages/edge/package.json
  9. +1 −1 packages/edge/src/info.ts
  10. +4 −0 packages/expo/CHANGELOG.md
  11. +4 −4 packages/expo/package.json
  12. +13 −0 packages/gatsby-plugin-clerk/CHANGELOG.md
  13. +1 −0 packages/gatsby-plugin-clerk/gatsby-browser.js
  14. +1 −0 packages/gatsby-plugin-clerk/gatsby-node.js
  15. +1 −0 packages/gatsby-plugin-clerk/gatsby-ssr.js
  16. +9 −0 packages/gatsby-plugin-clerk/index.js
  17. +62 −0 packages/gatsby-plugin-clerk/package.json
  18. +49 −0 packages/gatsby-plugin-clerk/src/GatsbyClerkProvider.tsx
  19. +14 −0 packages/gatsby-plugin-clerk/src/errors.ts
  20. +21 −0 packages/gatsby-plugin-clerk/src/gatsby-browser.tsx
  21. +17 −0 packages/gatsby-plugin-clerk/src/gatsby-node.ts
  22. +1 −0 packages/gatsby-plugin-clerk/src/gatsby-ssr.tsx
  23. +1 −0 packages/gatsby-plugin-clerk/src/index.ts
  24. +98 −0 packages/gatsby-plugin-clerk/src/ssr/getAuthData.ts
  25. +1 −0 packages/gatsby-plugin-clerk/src/ssr/index.ts
  26. +20 −0 packages/gatsby-plugin-clerk/src/ssr/types.ts
  27. +57 −0 packages/gatsby-plugin-clerk/src/ssr/utils.ts
  28. +27 −0 packages/gatsby-plugin-clerk/src/ssr/withServerAuth.ts
  29. +7 −0 packages/gatsby-plugin-clerk/src/utils.ts
  30. +1 −0 packages/gatsby-plugin-clerk/ssr.d.ts
  31. +1 −0 packages/gatsby-plugin-clerk/ssr.js
  32. +26 −0 packages/gatsby-plugin-clerk/tsconfig.build.json
  33. +6 −0 packages/gatsby-plugin-clerk/tsconfig.json
  34. +4 −0 packages/nextjs/CHANGELOG.md
  35. +5 −5 packages/nextjs/package.json
  36. +4 −0 packages/react/CHANGELOG.md
  37. +2 −2 packages/react/package.json
  38. +1 −1 packages/react/src/info.ts
  39. +6 −0 packages/remix/CHANGELOG.md
  40. +6 −6 packages/remix/package.json
  41. +4 −0 packages/sdk-node/CHANGELOG.md
  42. +3 −3 packages/sdk-node/package.json
  43. +1 −1 packages/sdk-node/src/info.ts
  44. +4 −0 packages/shared/CHANGELOG.md
  45. +2 −2 packages/shared/package.json
  46. +4 −0 packages/types/CHANGELOG.md
  47. +1 −1 packages/types/package.json
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -49,4 +49,5 @@ Thumbs.db

.turbo

lerna-debug.log
lerna-debug.log
playground
Loading