Skip to content

Commit

Permalink
Fix security issues and updates deps (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbiguenet authored Nov 6, 2024
1 parent b062ae9 commit 0325c56
Show file tree
Hide file tree
Showing 55 changed files with 7,860 additions and 13,411 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
"error",
"always"
],
"@typescript-eslint/no-unused-expressions": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-duplicate-enum-values": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off"
}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ lib/
coverage/
.env
.idea/

*.configStore/
dist/
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ Every change must be tested with proper unit tests.

### Build Instructions

See sub Readme files in typescript/packages, typescript/examples or python/ for more information about build instructions.
See Readme file for more information about build instructions.

> Note: It is a good idea to `npm install` after each `git pull` as dependencies may have changed.
### Making and Testing Changes

1. Make source code changes on a new Git branch
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MIT License

Copyright © 2023 Bentley Systems, Incorporated. All rights reserved.
Copyright © 2024 Bentley Systems, Incorporated. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Besides, a typescript web application example is available to show how to create

Reality data utils to upload and download results

- [Reality Data utils](./typescript/packages/reality-data-transfer/README.md)
- [Reality Data transfer utils](./typescript/packages/reality-data-transfer/README.md)

All the packages are available in python, except Reality Management

Expand All @@ -31,5 +31,5 @@ All the packages are available in python, except Reality Management

1. Clone repository (first time) with `git clone` or pull updates to the repository (subsequent times) with `git pull`
2. Install dependencies: `pnpm update` or `pnpm install`
3. Build source: `pnpm build`
4. Run unit tests : create a .env file based on template.env, then : `pnpm coverage`
3. Build source: `npm run build`
4. Run unit tests : create a .env file based on template.env, then : `npm run coverage`
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-capture-analysis",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-capture-common",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-capture-conversion",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-capture-modeling",
"email": "[email protected]",
"dependentChangeType": "none"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Update typescript version from v4 to v5",
"packageName": "@itwin/reality-data-client",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Fix contributing.md, readme.md and typescript dep version",
"packageName": "@itwin/reality-data-transfer",
"email": "[email protected]",
"dependentChangeType": "none"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"license": "MIT",
"devDependencies": {
"beachball": "^2.43.1"
"beachball": "^2.47.1"
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 0325c56

Please sign in to comment.