Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prisma sdk contrib #532

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
3465bf2
feat(prisma): Added to sdk contrib
Sep 6, 2022
8bd856d
feat(prisma): Examples are added and the readme is updated
Sep 6, 2022
4a0c422
feat(prisma): The code is formatted according to the style guide used
Sep 6, 2022
a42f477
feat(prisma): Improved sample manual to ignore error with TypeScript
Sep 6, 2022
f9d2e4c
feat(prisma): The code is refactored
Sep 7, 2022
f9fa5ac
fix(prisma): Only objects are captured
EduardMcfly May 5, 2023
57946aa
feat: Improves and documents how to run the samples
EduardMcfly Jun 20, 2023
16005d5
feat: the version is updated and the version of the engine node is ch…
EduardMcfly Jun 20, 2023
d740180
feat: NOTICE updated
EduardMcfly Jun 20, 2023
36787d5
fix: The error of the promise that did not catch an exception is corr…
EduardMcfly Jul 6, 2023
4510a0c
Merge branch 'master' of https://github.com/EduardMcfly/aws-xray-sdk-…
EduardMcfly Oct 19, 2023
4384f9b
feat: Add new package dependency for AWS X-Ray integration
EduardMcfly Oct 19, 2023
0c7e66b
feat(prisma): The version is updated and the version of the engine no…
EduardMcfly Oct 19, 2023
15b836a
bumped typescript version
EduardMcfly Oct 19, 2023
9213e9e
feat(prisma): Enable TypeScript declaration generation in
EduardMcfly Nov 22, 2023
844972a
Merge remote-tracking branch 'aws/master'
EduardMcfly Mar 6, 2025
620432b
fix(prisma): Update @prisma/client to version 5.22.0 and refactor Mod…
EduardMcfly Mar 6, 2025
3f44b7d
chore(prisma): Bump version to 3.10.3 in package.json and package-loc…
EduardMcfly Mar 6, 2025
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
121 changes: 110 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"tsd": "^0.25.0",
"typescript": "^4.4.4",
"typescript": "^4.9.5",
"upath": "^1.2.0"
},
"engines": {
Expand All @@ -72,6 +72,7 @@
"aws-xray-sdk-mysql": "file:packages/mysql",
"aws-xray-sdk-node": "file:",
"aws-xray-sdk-postgres": "file:packages/postgres",
"aws-xray-sdk-prisma": "file:sdk_contrib/prisma",
"aws-xray-sdk-restify": "file:packages/restify",
"test-aws-xray-sdk-express": "file:packages/test_express"
}
Expand Down
4 changes: 4 additions & 0 deletions sdk_contrib/prisma/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "../../.eslintrc.json",
"plugins": ["promise"]
}
1 change: 1 addition & 0 deletions sdk_contrib/prisma/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dev.db
Loading