-
Notifications
You must be signed in to change notification settings - Fork 5
Release/26.1.4 #278
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
Open
aadarsh-st
wants to merge
35
commits into
main
Choose a base branch
from
release/26.1.4
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Release/26.1.4 #278
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
dd5ee35
SK-2455: add linter to node sdk v2
skyflow-himanshu 9d7d6ec
aadarsh-st/SK-2495 Replace Hardcore values with constants
aadarsh-st 68863e1
aadarsh-st/SK-2495-Fixed comments
aadarsh-st b4ecf5a
aadarsh-st/SK-2495 Updated message
aadarsh-st def7c2c
SK-2503: Add support for custom tokenUri (#275)
saileshwar-skyflow b1b0a25
[AUTOMATED] Private Release 2.0.2-dev.def7c2c
saileshwar-skyflow d0a72ad
SK-2503: comment registry url
saileshwar-skyflow bbfbf8e
[AUTOMATED] Private Release 2.0.2-dev.d0a72ad
saileshwar-skyflow d60b089
Merge pull request #277 from skyflowapi/SK-2495-Replace-hardcode-valu…
aadarsh-st 5ca1767
[AUTOMATED] Private Release 2.0.2-dev.d60b089
aadarsh-st 29fa821
aadarsh-st/SK-2510-Fixed all the mentioned issue
aadarsh-st 969139f
aadarsh-st/SK-2495- Added linting in workflow
aadarsh-st f43033b
[AUTOMATED] Private Release 2.0.2-dev.969139f
aadarsh-st a6cc9b1
SK-2503: fix token uri option
saileshwar-skyflow 63b6bbd
[AUTOMATED] Private Release 2.0.2-dev.a6cc9b1
saileshwar-skyflow 9f592e9
SK-2503: fix options validation
saileshwar-skyflow 2c0c27b
[AUTOMATED] Private Release 2.0.2-dev.9f592e9
saileshwar-skyflow 4614faa
aadarsh-st/SK-2510-Fixed comment by copilot
aadarsh-st 4ecd39b
aadarsh-st/SK-2510- Fixed copilot comments
aadarsh-st bf5c1aa
Merge pull request #279 from skyflowapi/SK-2510-Fix-Node-SDK-issues
aadarsh-st 64e1f61
[AUTOMATED] Private Release 2.0.2-dev.bf5c1aa
aadarsh-st f709dfa
aadarsh-st/SK-2510: Commented registry-url
aadarsh-st 315384e
Merge pull request #280 from skyflowapi/SK-2510-Fix-Node-SDK-issues
aadarsh-st 68d62e5
[AUTOMATED] Private Release 2.0.2-dev.315384e
aadarsh-st c288801
SK-2536: Fix different content-types in request and respones in invok…
saileshwar-skyflow 1d5d4ba
[AUTOMATED] Private Release 2.0.2-dev.c288801
saileshwar-skyflow fd4b08d
SK-2528: update jwt-decode library for Node SDK
skyflow-himanshu e1b78be
SK-2528: update jwt-decode library to v3.1.2 as v4.0.0 is ESM only
skyflow-himanshu ee58b89
SK-2528: added jwt_decode type
skyflow-himanshu 4ad053a
Merge pull request #282 from skyflowapi/himanshu/SK-2528-update-libra…
skyflow-himanshu 0cc7274
SK-2645: Merge branch 'release/26.1.5' into release/26.1.4
saileshwar-skyflow 099ce5d
SK-2645: Merge branch 'release/26.2.2' into release/26.1.4
saileshwar-skyflow b08a439
[AUTOMATED] Private Release 2.0.2-dev.099ce5d
saileshwar-skyflow 8a466d8
SK-2645: Fix inconsistencies identified in extracted public interface…
saileshwar-skyflow e3340d3
[AUTOMATED] Private Release 2.0.2-dev.8a466d8
saileshwar-skyflow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| import tseslint from 'typescript-eslint'; | ||
| export default tseslint.config( | ||
|
|
||
| { | ||
| files: ["**/*.{js,mjs,cjs,ts}"], | ||
|
|
||
| languageOptions: { | ||
| parser: tseslint.parser, | ||
| parserOptions: { | ||
| projectSource: true, | ||
| tsconfigRootDir: import.meta.dirname, | ||
| sourceType: "module", | ||
| }, | ||
| }, | ||
|
|
||
| linterOptions: { | ||
| reportUnusedDisableDirectives: "off" | ||
| }, | ||
| plugins: { | ||
| "@typescript-eslint": tseslint.plugin, | ||
| }, | ||
| rules: { | ||
| "camelcase": ["error", { "properties": "never", "ignoreImports": true }], | ||
| "dot-notation": "off", | ||
| "no-restricted-syntax": [ | ||
| "error", | ||
| { | ||
| // Bans obj['key'] in favor of obj.key | ||
| selector: "MemberExpression[computed=true] > Literal[value=/./]", | ||
| message: "Do not use string literals for object access. Use dot notation (obj.prop) or constants.", | ||
| }, | ||
| { | ||
| // Bans comparison against magic strings, excluding type names | ||
| selector: "BinaryExpression[operator=/^(==|===|!=|!==)$/] > Literal[value=/^(?!(string|number|boolean|object|undefined|{})$).+/]", | ||
| message: "Do not compare against magic strings. Use constants instead." | ||
| } | ||
| ], | ||
| }, | ||
|
|
||
| } | ||
| , | ||
| { | ||
| ignores: [ | ||
| "node_modules/", | ||
| "dist/", | ||
| "coverage/", | ||
| "src/ _generated_/", | ||
| "test/**", | ||
| "samples/**", | ||
| "scripts/**", | ||
| ] | ||
| } | ||
| ); | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.