Skip to content

Commit 8118369

Browse files
authored
Hotfix: null values and incorrect refs (#39)
* fix: package bin script. tsconfig.json parsing and null references * chore: bump version to 0.1.3 * fix: removed console.log * chore: updated react to 18.3.1 * chore: updated uuid package. aligned react package. updated eslint packages * chore: updated form-data to 3.0.4 * chore: updated mongoose and reviewed pnpm-lock * fix: removed yarn.lock * chore: forced lock recreation * chore: updated mongodb-memory-server package to latest * chore: updated dotenv to latest * chore: forced 'storageEngine' to be ephemeralForTest * fix: 'glob' import * chore: set default version to 6.0.14 * chore: updated monaco-editor to 0.54.0 * chore: created 'rc' version * ci: fixed condition for publish ref * ci: fixed publish-rc job * ci: added checkout step * ci: added '=' sign * chore: updated root package.json * fix(security): updated packages * ci: added .npmrc file write * chore: merge from rc branch
1 parent 77e9bff commit 8118369

File tree

97 files changed

+2742
-192673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+2742
-192673
lines changed

.github/actions/release-commenter/dist/index.js

Lines changed: 0 additions & 34199 deletions
This file was deleted.

.github/actions/triage/dist/index.js

Lines changed: 0 additions & 34048 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,3 +454,27 @@ jobs:
454454
name: test-results
455455
path: test-results/
456456
retention-days: 1
457+
458+
publish-rc:
459+
needs: [tests]
460+
runs-on: [self-hosted]
461+
if: contains(github.head_ref, 'rc-')
462+
steps:
463+
- uses: actions/checkout@v4
464+
with:
465+
fetch-depth: 1
466+
- name: Use Node.js 22.6.0
467+
uses: actions/setup-node@v4
468+
with:
469+
node-version: 22.6.0
470+
471+
- name: Install pnpm
472+
uses: pnpm/action-setup@v3
473+
with:
474+
version: 9.7.0
475+
run_install: false
476+
- run: pnpm i
477+
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
478+
- run: pnpm --filter "./packages/**" publish --no-git-checks --access=public --tag=rc
479+
env:
480+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run_install: false
2323

2424
- run: pnpm i
25+
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
2526

2627
- run: pnpm --filter "./packages/**" publish --no-git-checks --access=public
2728
env:

examples/auth/next-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"escape-html": "^1.0.3",
1313
"next": "^14.2.25",
14-
"react": "18.2.0",
14+
"react": "18.3.1",
1515
"react-dom": "18.2.0",
1616
"react-hook-form": "^7.45.1"
1717
},
@@ -20,7 +20,7 @@
2020
"@mzinga/eslint-config": "^0.0.2",
2121
"@types/escape-html": "^1.0.2",
2222
"@types/node": "18.11.3",
23-
"@types/react": "^18.2.14",
23+
"@types/react": "18.3.1",
2424
"@types/react-dom": "^18.2.6",
2525
"@typescript-eslint/eslint-plugin": "^5.51.0",
2626
"@typescript-eslint/parser": "^5.51.0",
@@ -37,4 +37,4 @@
3737
"slate": "^0.82.0",
3838
"typescript": "^4.8.4"
3939
}
40-
}
40+
}

examples/auth/next-app/yarn.lock

Lines changed: 0 additions & 2415 deletions
This file was deleted.

examples/auth/next-pages/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"dependencies": {
1212
"escape-html": "^1.0.3",
1313
"next": "^14.2.25",
14-
"react": "18.2.0",
14+
"react": "18.3.1",
1515
"react-dom": "18.2.0",
1616
"react-hook-form": "^7.34.2"
1717
},
1818
"devDependencies": {
1919
"@next/eslint-plugin-next": "^13.1.6",
2020
"@mzinga/eslint-config": "^0.0.2",
2121
"@types/node": "18.11.3",
22-
"@types/react": "^18.2.14",
22+
"@types/react": "18.3.1",
2323
"@types/react-dom": "^18.2.6",
2424
"@typescript-eslint/eslint-plugin": "^5.51.0",
2525
"@typescript-eslint/parser": "^5.51.0",
@@ -35,4 +35,4 @@
3535
"slate": "^0.82.0",
3636
"typescript": "4.8.4"
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)