Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Aug 30, 2024
1 parent 54cb817 commit a87fb60
Show file tree
Hide file tree
Showing 8 changed files with 914 additions and 559 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
node-version: 20.x
- name: Start MongoDB
uses: supercharge/mongodb-github-action@v1.10.0
uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: 4.4
- name: Start Redis
uses: supercharge/redis-github-action@1.7.0
uses: supercharge/redis-github-action@1.8.0
with:
redis-version: 6
- uses: pnpm/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Start Redis
uses: supercharge/redis-github-action@1.7.0
uses: supercharge/redis-github-action@1.8.0
with:
redis-version: 6

Expand Down
10 changes: 5 additions & 5 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@headlessui/react": "2.1.3",
"@packages/drizzle": "workspace:*",
"@radix-ui/react-avatar": "1.1.0",
"@tanstack/react-query": "5.51.24",
"@tanstack/react-query": "5.52.3",
"clsx": "2.1.1",
"framer-motion": "11.3.30",
"immer": "10.1.1",
Expand All @@ -29,17 +29,17 @@
"ofetch": "1.3.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.24.1",
"react-router-dom": "6.26.1",
"sonner": "1.5.0",
"tailwind-merge": "2.4.0"
"tailwind-merge": "2.5.2"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.8.1",
"@iconify-json/mingcute": "1.1.20",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/typography": "0.5.14",
"@types/lodash-es": "4.17.12",
"@types/node": "20.14.15",
"@types/node": "20.16.2",
"@types/react": "18.3.4",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "^4.3.1",
Expand All @@ -53,7 +53,7 @@
"tailwind-variants": "0.2.1",
"tailwindcss": "3.4.10",
"tailwindcss-animated": "1.1.2",
"vite": "5.3.5",
"vite": "5.4.2",
"vite-plugin-checker": "0.7.2",
"vite-tsconfig-paths": "4.3.2"
}
Expand Down
4 changes: 2 additions & 2 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:20-alpine as builder
FROM node:20.17.0-alpine as builder
WORKDIR /app
COPY . .
RUN apk add git make g++ alpine-sdk python3 py3-pip unzip
RUN npm i -g pnpm
RUN pnpm install
RUN npm run build

FROM node:20-alpine
FROM node:20.17.0-alpine
RUN apk add zip unzip bash --no-cache
RUN npm i -g pnpm
WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions drizzle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"dependencies": {
"@packages/complied": "workspace:*",
"@packages/utils": "workspace:*",
"drizzle-kit": "0.23.2",
"drizzle-orm": "0.32.2",
"drizzle-kit": "0.24.2",
"drizzle-orm": "0.33.0",
"pg": "8.12.0",
"postgres": "3.4.4"
},
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nest-drizzle",
"private": true,
"packageManager": "pnpm@8.7.6",
"packageManager": "pnpm@8.15.9",
"description": "",
"type": "module",
"license": "MIT",
Expand All @@ -27,28 +27,28 @@
"lodash": "4.17.21"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "1.5.30",
"@eslint-react/eslint-plugin": "1.12.3",
"@innei/bump-version": "^1.5.10",
"@innei/prettier": "^0.13.3",
"@innei/prettier": "^0.15.0",
"@nestjs/cli": "10.4.4",
"@nestjs/schematics": "10.1.4",
"@sxzz/eslint-config": "3.14.0",
"@sxzz/eslint-config": "3.17.4",
"concurrently": "8.2.2",
"dotenv-cli": "7.4.2",
"drizzle-kit": "0.23.2",
"eslint": "9.7.0",
"drizzle-kit": "0.24.2",
"eslint": "9.9.1",
"eslint-plugin-react-hooks": "5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fastify": "^4.28.1",
"husky": "9.0.11",
"husky": "9.1.5",
"lint-staged": "15.2.9",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"ts-loader": "9.5.1",
"tsconfig-paths": "4.2.0",
"tsup": "8.1.2",
"tsx": "4.16.5",
"tsup": "8.2.4",
"tsx": "4.19.0",
"typescript": "^5.5.4",
"zx": "8.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"build": "tsup"
},
"devDependencies": {
"es-toolkit": "^1.9.0",
"es-toolkit": "^1.16.0",
"nanoid": "5.0.7",
"typescript": "^5.5.4"
}
Expand Down
Loading

0 comments on commit a87fb60

Please sign in to comment.