You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Contributing to *exhort-javascript-api*<br/>![nodejs-version][10]
1
+
# Contributing to *trustify-da-javascript-client*<br/>![nodejs-version][10]
2
2
3
3
* Fork the repository
4
4
* Create a new branch
@@ -24,7 +24,7 @@
24
24
25
25
### OpenAPI Specifications
26
26
27
-
The OpenAPI specification is located in the [`exhort-api-spec`](https://github.com/trustification/exhort-api-spec) where the Java and Javascript libraries are generated.
27
+
The OpenAPI specification is located in the [`trustify-da-api-spec`](https://github.com/trustify-da/trustify-da-api-model) where the Java and Javascript libraries are generated.
28
28
29
29
### Code Walkthrough
30
30
@@ -86,7 +86,7 @@ scripts in [integration/testers](integration/testers).<br/>
86
86
87
87
We have 3 _testers_:
88
88
*[integration/testers/cli](integration/testers/cli) is a _package.json_ used for installing the _ESM module_.
89
-
Invoking the CLI Script is done against the _@trustification/exhort-javascript-api/dist/src/cli.js_ in the tester's
89
+
Invoking the CLI Script is done against the _@trustify-da/trustify-da-javascript-client/dist/src/cli.js_ in the tester's
90
90
_node_modules_.
91
91
*[integration/testers/javascript](integration/testers/javascript) is a _javascript_ script invoking the _ESM module_.
92
92
*[integration/testers/typescript](integration/testers/typescript) is a _typescript_ script invoking the _ESM module_.
@@ -119,7 +119,7 @@ contribution. See the [DCO](DCO) file for details.
@@ -206,7 +207,7 @@ Excluding a package from any analysis can be achieved by marking the package for
206
207
207
208
<em>Golang</em> users can add in go.mod a comment with //exhortignore next to the package to be ignored, or to "piggyback" on existing comment ( e.g - //indirect) , for example:
208
209
```go
209
-
module github.com/trustification/SaaSi/deployer
210
+
module github.com/trustify-da/SaaSi/deployer
210
211
211
212
go1.19
212
213
@@ -295,7 +296,7 @@ for various customization.
295
296
However, <em>ESM Module</em> users, can opt for customizing programmatically:
@@ -446,18 +447,18 @@ Two possible values for this setting:
446
447
447
448
#### Golang Support
448
449
449
-
By default, Golang dependency resolution follows the [Minimal Version Selection (MVS) Algorithm](https://go.dev/ref/mod#minimal-version-selection).
450
+
By default, Golang dependency resolution follows the [Minimal Version Selection (MVS) Algorithm](https://go.dev/ref/mod#minimal-version-selection).
450
451
This means that when analyzing a project, only the module versions that would actually be included in the final executable are considered.
451
452
452
453
For example, if your `go.mod` file declares two modules, `a` and `b`, and both depend on the same package `c` (same major version `v1`) but with different minor versions:
Only one of these versions — the minimal version selected by MVS — will be included in the generated SBOM and analysis results.
458
+
Only one of these versions — the minimal version selected by MVS — will be included in the generated SBOM and analysis results.
458
459
This mirrors the behavior of a real Go build, where only one minor version of a given major version can be present in the executable (since Go treats packages with the same name and major version as identical).
459
460
460
-
The MVS-based resolution is **enabled by default**.
461
+
The MVS-based resolution is **enabled by default**.
461
462
If you want to disable this behavior and instead include **all transitive module versions** (as listed in `go.mod` dependencies), set the system property or environment variable:
462
463
463
464
```bash
@@ -499,8 +500,8 @@ For some ecosystems we support passing additional CLI arguments to the underlyin
0 commit comments