Skip to content

Commit

Permalink
chore(deps): update engines to 4.14.0-57.5907d6ccc8494af6acccafd77cd0…
Browse files Browse the repository at this point in the history
…0a2fa80c028d (#19087)

* chore(deps): update engines to 4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d

* Skip broken tests

Functionallity is actually broken and never worked even prior to engine
update - test just passed because there were no engine-side spans issued
during the execution.

---------

Co-authored-by: Sergey Tatarintsev <tatarintsev@prisma.io>
  • Loading branch information
prisma-bot and SevInf committed May 5, 2023
1 parent 185a1a2 commit 6212d64
Show file tree
Hide file tree
Showing 7 changed files with 91 additions and 89 deletions.
2 changes: 1 addition & 1 deletion packages/client/package.json
Expand Up @@ -155,7 +155,7 @@
}
},
"dependencies": {
"@prisma/engines-version": "4.14.0-52.b7f558e75aa86e167f8fe2bc4a87573d065fbf4a"
"@prisma/engines-version": "4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d"
},
"sideEffects": false
}
6 changes: 4 additions & 2 deletions packages/client/tests/functional/tracing-no-sampling/tests.ts
Expand Up @@ -65,7 +65,8 @@ testMatrix.setupTestSuite(
prisma.$on('query', (e) => queries.push(e.query))
})

test('should perform a query and assert that no spans were generated', async () => {
// https://github.com/prisma/prisma/issues/19088
test.skip('should perform a query and assert that no spans were generated', async () => {
await prisma.user.findMany()

const spans = inMemorySpanExporter.getFinishedSpans()
Expand All @@ -74,7 +75,8 @@ testMatrix.setupTestSuite(
expect(checkQueriesHaveNotTraceparent()).toBe(true)
})

test('should perform a query and assert that no spans were generated via itx', async () => {
// https://github.com/prisma/prisma/issues/19088
test.skip('should perform a query and assert that no spans were generated via itx', async () => {
await prisma.$transaction(async (prisma) => {
await prisma.user.findMany()
})
Expand Down
2 changes: 1 addition & 1 deletion packages/engines/package.json
Expand Up @@ -8,7 +8,7 @@
"author": "Tim Suchanek <suchanek@prisma.io>",
"devDependencies": {
"@prisma/debug": "workspace:*",
"@prisma/engines-version": "4.14.0-52.b7f558e75aa86e167f8fe2bc4a87573d065fbf4a",
"@prisma/engines-version": "4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d",
"@prisma/fetch-engine": "workspace:*",
"@prisma/get-platform": "workspace:*",
"@swc/core": "1.3.32",
Expand Down
2 changes: 1 addition & 1 deletion packages/fetch-engine/package.json
Expand Up @@ -15,7 +15,7 @@
"bugs": "https://github.com/prisma/prisma/issues",
"enginesOverride": {},
"devDependencies": {
"@prisma/engines-version": "4.14.0-52.b7f558e75aa86e167f8fe2bc4a87573d065fbf4a",
"@prisma/engines-version": "4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d",
"@swc/core": "1.3.32",
"@swc/jest": "0.2.26",
"@types/jest": "29.5.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/internals/package.json
Expand Up @@ -48,7 +48,7 @@
"@prisma/generator-helper": "workspace:*",
"@prisma/get-platform": "workspace:*",
"@prisma/ni": "workspace:*",
"@prisma/prisma-fmt-wasm": "4.14.0-52.b7f558e75aa86e167f8fe2bc4a87573d065fbf4a",
"@prisma/prisma-fmt-wasm": "4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d",
"archiver": "5.3.1",
"arg": "5.0.2",
"checkpoint-client": "1.1.23",
Expand Down
2 changes: 1 addition & 1 deletion packages/migrate/package.json
Expand Up @@ -17,7 +17,7 @@
"version": "latest"
},
"devDependencies": {
"@prisma/engines-version": "4.14.0-52.b7f558e75aa86e167f8fe2bc4a87573d065fbf4a",
"@prisma/engines-version": "4.14.0-57.5907d6ccc8494af6acccafd77cd00a2fa80c028d",
"@prisma/generator-helper": "workspace:*",
"@prisma/internals": "workspace:*",
"@swc/core": "1.3.32",
Expand Down

0 comments on commit 6212d64

Please sign in to comment.