SK-2868 dependency upgrades#325
Merged
skyflow-bharti merged 1 commit intoJun 24, 2026
Merged
Conversation
|
✅ Gitleaks Findings: No secrets detected. Safe to proceed! |
|
Semgrep Findings: Issues with Error level severity are found (Error is Highest severity in Semgrep), Please resolve the issues before merging. |
saileshwar-skyflow
approved these changes
Jun 24, 2026
aadarsh-st
approved these changes
Jun 24, 2026
Devesh-Skyflow
approved these changes
Jun 24, 2026
saketh-skyflow
approved these changes
Jun 24, 2026
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.
SK-2868 Dependency Cleanup & Upgrades — skyflow-node
Summary
@babel/runtimefrom production to dev dependenciesjwt-decodeto v4 with source + test changes@babel/preset-typescript,ts-jest, and@types/nodeto latest stable versionsProduction Dependencies
@babel/runtime7.29.27.29.2tsc; Babel only runs at test time viababel-jestjwt-decode3.1.24.0.0{ jwtDecode }Dev Dependencies — Upgraded
@babel/preset-typescript7.28.57.29.7ts-jest29.4.929.4.11@types/node18.19.13022.19.20Dev Dependencies — Removed (unused)
webpackwebpack.config.*exists; build usestsconlyts-loaderjest-environment-jsdomtestEnvironmentis"node"; jsdom is a browser env, unused in this server-side SDK@eslint/jseslint.config.mjsglobalseslint.config.mjsSource Changes
src/utils/jwt-utils/index.ts— updated import to jwt-decode v4 named export:import { jwtDecode, JwtPayload } from 'jwt-decode'test/vault/utils/jwt-utils/jwt.test.js— updated mock to usejwtDecodenamed exporttest/vault/utils/utils.test.js— updated import to v4 named exportIntentionally Not Changed
typescript(stays5.7.3)ArrayBufferLiketypes;src/_generated_/(Fern-generated) fails to compile on 5.8+node-fetch(stays2.7.0)fetch@babel/plugin-transform-object-assign(kept)@babel/preset-envwith IE 11 targets pulls it in at test time; removing it breaks the test suiteTest Plan
npm run build— passes with no TypeScript errorsnpm test— all 1110 tests pass across 14 suites