Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ac1ec2e
SK-1621: node sdk v2 (#181)
amith-skyflow Feb 6, 2025
3f16fe8
SK-1863: Added section for migration from v1 to v2 in readme (#183)
saileshwar-skyflow Feb 7, 2025
bd20baa
SK-1895 update readme for node sdk v2 (#186)
skyflow-shravan Feb 24, 2025
7f6e1fb
SK-1904 add errorFromClient in error details (#190)
skyflow-shravan Feb 28, 2025
37c2f47
SK-2003: update readme (#196)
amith-skyflow Apr 16, 2025
5cc0a76
SK-1927 Update dependencies to latest stable versions
skyflow-vivek Apr 28, 2025
143e1fc
Merge pull request #201 from skyflowapi/SK-1927-upgrade-libraries-to-…
skyflow-vivek Apr 29, 2025
00295e8
SK-1757: Detect Support in Node SDK. (#212)
saileshwar-skyflow May 15, 2025
15fd168
SK-2069 insert continue on error sample (#213)
skyflow-shravan May 22, 2025
0e812ad
SK-2115 rebase beta release branch with main (#226)
skyflow-shravan Jun 12, 2025
f514331
SK-2101 readme changes after fixing type gaps (#227)
skyflow-shravan Jun 12, 2025
08a9b47
SK-2101 fix content type key in invoke connection (#228)
skyflow-shravan Jun 12, 2025
8cad8cd
SK-2101 update credentials key in samples (#229)
skyflow-shravan Jun 13, 2025
d9d8409
SK-2134 include file path and file object in request response (#230)
skyflow-shravan Jun 20, 2025
5d729ac
Revert "SK-2134 include file path and file object in request response…
skyflow-shravan Jun 20, 2025
8724b9a
SK-2134 include file path and file object in request response
skyflow-shravan Jun 24, 2025
bb8e3b2
SK-2137 samples and README for deidentify file changes (#236)
skyflow-shravan Jun 25, 2025
cc9a77e
SK-1729: Public Release V2 (#247)
saileshwar-skyflow Sep 8, 2025
6adf7da
[AUTOMATED] Release - 2.0.0
saileshwar-skyflow Sep 8, 2025
4158e18
SK-1729: v2 public release (#248)
saileshwar-skyflow Sep 8, 2025
38a3737
[AUTOMATED] Release - 2.0.0
saileshwar-skyflow Sep 8, 2025
1203031
SK-2341 update release workflow
skyflow-shravan Oct 14, 2025
c7c0863
SK-2341 Merge branch 'main' into v2
skyflow-shravan Oct 14, 2025
7596584
SK-2341 remove code smells
skyflow-shravan Oct 14, 2025
77a0ff9
SK-2341 rename api key constants
skyflow-shravan Oct 14, 2025
8419aa6
SK-2341 update README and samples
skyflow-shravan Oct 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .github/workflows/beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,5 @@ jobs:
build-and-deploy:
uses: ./.github/workflows/common-release.yml
with:
registry-url: 'https://registry.npmjs.org'
tag: beta
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/common-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 14.17.6
node-version: '20.x'

- name: Install Packages
run: npm install
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/common-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Common Release Workflow
on:
workflow_call:
inputs:
registry-url:
required: true
type: string
tag:
required: false
type: string
Expand All @@ -21,8 +18,8 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 14.17.6
registry-url: ${{ inputs.registry-url }}
node-version: '20.x'
registry-url: "https://registry.npmjs.org"

- name: Install Packages
run: npm install
Expand Down Expand Up @@ -86,7 +83,7 @@ jobs:
elif [[ "${{ inputs.tag }}" == "internal" ]]; then
curl -u ${{ secrets.JFROG_USERNAME }}:${{ secrets.JFROG_PASSWORD }} https://prekarilabs.jfrog.io/prekarilabs/api/npm/auth/ > ~/.npmrc
npm config set registry https://prekarilabs.jfrog.io/prekarilabs/api/npm/npm/
npm config set unsafe-perm true
npm config fix
npm publish
fi
env:
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/internal-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ jobs:
call-common-workflow:
uses: ./.github/workflows/common-release.yml
with:
registry-url: 'https://prekarilabs.jfrog.io/prekarilabs/api/npm/npm/'
tag: internal
secrets: inherit
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Public Release

on:
push:
tags: '*.*.\d+'
tags: '[0-9]+.[0-9]+.[0-9]+'
paths-ignore:
- "package.json"
- "package-lock.json"
Expand All @@ -12,6 +12,5 @@ jobs:
call-common-workflow:
uses: ./.github/workflows/common-release.yml
with:
registry-url: 'https://registry.npmjs.org'
tag: public
secrets: inherit
15 changes: 14 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
node_modules
src
test
test
coverage
samples
scripts
.github
babel.config.js
.babelrc
CHANGELOG.md
codecov.yml
jest.config.js
LICENSE
README.md
SECURITY.md
typedoc.json
Loading
Loading