Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-cockroachdb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
DATABASE_URL: postgresql://root@127.0.0.1:26257/prisma?sslmode=disable

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1
- name: Start a single CockroachDB instance with Docker
env:
COCKROACHDB_DOCKER_TAG: 'cockroachdb/cockroach:latest-v21.2'
Expand All @@ -35,7 +35,7 @@ jobs:
docker run -d --name roach --hostname roach -p 26257:26257 -p 8080:8080 -v "${{ github.workspace }}:/app" $COCKROACHDB_DOCKER_TAG start-single-node --insecure
sudo apt update && sudo apt install wait-for-it -y
wait-for-it -h localhost -p 26257
- uses: actions/setup-node@v4
- uses: actions/setup-node@v4.4.0
with:
node-version: '22.21.1'
- run: npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-mongodb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
DATABASE_URL: mongodb://root:prisma@localhost:27017/prisma-mongo?authSource=admin&retryWrites=true&w=majority

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v4.3.1
- uses: actions/setup-node@v4.4.0
with:
node-version: '22.21.1'
- run: npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-sql-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
DATABASE_URL: sqlserver://localhost:1433;database=prisma-demo;user=SA;password=Pr1sm4_Pr1sm4;trustServerCertificate=true;encrypt=true

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v4.3.1
- uses: actions/setup-node@v4.4.0
with:
node-version: '22.21.1'
- run: npm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.3.1
- id: set-matrix
run: |
# Find all test files and create matrix JSON
Expand All @@ -40,8 +40,8 @@ jobs:
fail-fast: false
matrix: ${{ fromJson(needs.test-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/checkout@v4.3.1
- uses: actions/setup-node@v4.4.0
with:
node-version: '22.22.1'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,24 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.3.1

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v4.3.1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3.12.0

- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
uses: aws-actions/amazon-ecr-login@v2.1.6

- name: Build and push Docker image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v6.19.2
with:
context: .
push: true
Expand Down
8 changes: 4 additions & 4 deletions deployment-platforms/rest-express-docker-aws-ec2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
"dependencies": {
"@prisma/adapter-pg": "7.5.0",
"@prisma/client": "7.5.0",
"dotenv": "^17.2.1",
"dotenv": "17.4.2",
"express": "5.1.0",
"pg": "^8.16.3",
"pg": "8.22.0",
"prisma": "7.5.0"
},
"devDependencies": {
"@types/express": "5.0.5",
"@types/node": "22.18.12",
"@types/pg": "^8.15.6",
"tsx": "^4.20.6",
"@types/pg": "8.20.0",
"tsx": "4.23.1",
"typescript": "5.8.2"
}
}
6 changes: 3 additions & 3 deletions generator-prisma-client/deno-deploy/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"types": ["node"]
},
"imports": {
"@prisma/adapter-pg": "npm:@prisma/adapter-pg@^7.0.0",
"@prisma/client": "npm:@prisma/client@^7.0.0",
"prisma": "npm:prisma@^7.0.0"
"@prisma/adapter-pg": "npm:@prisma/adapter-pg@7.8.0",
"@prisma/client": "npm:@prisma/client@7.8.0",
"prisma": "npm:prisma@7.8.0"
},
"tasks": {
"dev": "deno run -A --env=.env --watch src/main.ts",
Expand Down
22 changes: 11 additions & 11 deletions orm/graphql-gqloom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@
"generate": "prisma generate"
},
"devDependencies": {
"@types/node": "^24.8.1",
"@types/node": "24.13.3",
"prisma": "7.5.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
"tsx": "4.23.1",
"typescript": "5.9.3"
},
"dependencies": {
"@gqloom/core": "^0.12.1",
"@gqloom/prisma": "^0.12.2",
"@gqloom/zod": "^0.12.2",
"@gqloom/core": "0.12.1",
"@gqloom/prisma": "0.12.2",
"@gqloom/zod": "0.12.2",
"@prisma/adapter-pg": "7.5.0",
"@prisma/client": "7.5.0",
"dotenv": "16.6.1",
"graphql": "^16.11.0",
"graphql-scalars": "^1.25.0",
"graphql-yoga": "^5.16.0",
"pg": "^8.16.0",
"zod": "^4.1.12"
"graphql": "16.14.2",
"graphql-scalars": "1.25.0",
"graphql-yoga": "5.21.2",
"pg": "8.22.0",
"zod": "4.4.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
Expand Down
Loading