Skip to content

Commit bf98316

Browse files
committed
Finish 1.4.0
2 parents d95b0ac + 3ed3d60 commit bf98316

File tree

218 files changed

+8311
-689
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+8311
-689
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ on:
44
push:
55
branches: [ "develop", "master" ]
66
tags: '*'
7-
pull_request:
8-
branches: [ "develop", "master" ]
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
911

1012
permissions:
1113
contents: write

LICENSE.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ of your accepting any such warranty or additional liability.
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2022 BlueTrailSoftware, Holding Inc.
190+
Copyright 2023 ERR0 LLC
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ The err0agent automatically detects the programming language.
4646
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original-wordmark.svg" width="50" height="50"/>
4747
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/rust/rust-plain.svg" width="50" height="50"/>
4848
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/go/go-original-wordmark.svg" width="50" height="50"/>
49-
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/lua/lua-plain-wordmark.svg" width="50" />
49+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/lua/lua-plain-wordmark.svg" width="50" height="50" />
50+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/ruby/ruby-original.svg" width="50" height="50" />
5051
</div>
5152

5253
## Can it be integrated in CI/CD?

build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2022 BlueTrailSoftware, Holding Inc.
2+
Copyright 2023 ERR0 LLC
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ plugins {
2525
}
2626

2727
group = "io.err0"
28-
version = "1.3.11-BETA"
28+
version = "1.4.0-BETA"
2929

3030
repositories {
3131
mavenCentral()
@@ -123,6 +123,7 @@ tasks.withType<JavaExec> {
123123
// Check-out the open-source-bundle project at the same parent level as this project:
124124
args = listOf(
125125
// pass #1 -- insert error codes (or re-insert error codes).
126+
"--token", "../open-source-bundle/dev-localhost/err0-smartthingsedgedrivers-20230603-077907dc-0214-11ee-a0ed-305a3ac84b71.json", "--insert", "../open-source-bundle/SmartThingsEdgeDrivers", // Lua
126127
"--token", "../open-source-bundle/dev-localhost/err0-leptos-20221220-7c62eafd-806b-11ed-b59e-4401bb8de3b3.json", "--insert", "../open-source-bundle/leptos", // Rust
127128
"--token", "../open-source-bundle/dev-localhost/err0-postfix-20221220-5cd5d49b-806b-11ed-b59e-4401bb8de3b3.json", "--insert", "../open-source-bundle/postfix", // C
128129
"--token", "../open-source-bundle/dev-localhost/err0-bitcoin-20221220-6dcc7b5c-806b-11ed-b59e-4401bb8de3b3.json", "--insert", "../open-source-bundle/bitcoin", // C++
@@ -143,7 +144,9 @@ tasks.withType<JavaExec> {
143144
"--token", "../open-source-bundle/dev-localhost/err0-cerbos-20221207-33d4bf05-763f-11ed-8b95-4401bb8de3b3.json", "--insert", "../open-source-bundle/cerbos", // go
144145
"--token", "../open-source-bundle/dev-localhost/err0-mender-20221207-5b47787b-763f-11ed-8b95-4401bb8de3b3.json", "--insert", "../open-source-bundle/mender", // go
145146
"--token", "../open-source-bundle/dev-localhost/err0-rails-20230723-82c92bf1-1997-11ee-8025-305a3ac84b71.json", "--insert", "../open-source-bundle/rails", // Ruby
147+
"--token", "../open-source-bundle/dev-localhost/err0-pytorch-20221209-6cd848c3-77ab-11ed-b3c0-4401bb8de3b3.json", "--insert", "../open-source-bundle/pytorch", // Python/C++
146148
// pass #2 -- analyse source code, ignoring dirty checkout.
149+
"--token", "../open-source-bundle/dev-localhost/err0-smartthingsedgedrivers-20230603-077907dc-0214-11ee-a0ed-305a3ac84b71.json", "--analyse", "--dirty", "../open-source-bundle/SmartThingsEdgeDrivers", // Lua
147150
"--token", "../open-source-bundle/dev-localhost/err0-leptos-20221220-7c62eafd-806b-11ed-b59e-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/leptos", // Rust
148151
"--token", "../open-source-bundle/dev-localhost/err0-postfix-20221220-5cd5d49b-806b-11ed-b59e-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/postfix", // C
149152
"--token", "../open-source-bundle/dev-localhost/err0-bitcoin-20221220-6dcc7b5c-806b-11ed-b59e-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/bitcoin", // C++
@@ -164,6 +167,7 @@ tasks.withType<JavaExec> {
164167
"--token", "../open-source-bundle/dev-localhost/err0-cerbos-20221207-33d4bf05-763f-11ed-8b95-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/cerbos", // go
165168
"--token", "../open-source-bundle/dev-localhost/err0-mender-20221207-5b47787b-763f-11ed-8b95-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/mender", // go
166169
"--token", "../open-source-bundle/dev-localhost/err0-rails-20230723-82c92bf1-1997-11ee-8025-305a3ac84b71.json", "--analyse", "--dirty", "../open-source-bundle/rails", // Ruby
170+
"--token", "../open-source-bundle/dev-localhost/err0-pytorch-20221209-6cd848c3-77ab-11ed-b3c0-4401bb8de3b3.json", "--analyse", "--dirty", "../open-source-bundle/pytorch", // Python/C++
167171
)
168172

169173
//args = listOf("--version", "--help")
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"pk": "01f646f8-e479-11eb-ba80-0242ac130004",
3+
"data": {
4+
"name": "Example Realm",
5+
"realm_code": "RLM",
6+
"policy_editable_by_prj": true,
7+
"context_allowed_in_prj": true,
8+
"error_number_unique_in_realm": false,
9+
"error_number_unique_per_project": true,
10+
"policy": {
11+
"types": "all",
12+
"language": "autodetect",
13+
"mode": "non-strict",
14+
"error_prefix": "E",
15+
"error_template": "%error %realm %prj %version",
16+
"error_pad_to_n": 7,
17+
"context": true,
18+
"context_n_lines": 0
19+
},
20+
"realm_code_policy": {
21+
"mode": 1,
22+
"disable_exceptions": true
23+
}
24+
}
25+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"pk": "01f646f8-e479-11eb-ba80-0242ac130004",
3+
"data": {
4+
"name": "Example Realm",
5+
"realm_code": "RLM",
6+
"policy_editable_by_prj": true,
7+
"context_allowed_in_prj": true,
8+
"error_number_unique_in_realm": false,
9+
"error_number_unique_per_project": true,
10+
"policy": {
11+
"types": "all",
12+
"language": "autodetect",
13+
"mode": "non-strict",
14+
"error_prefix": "E",
15+
"error_template": "%error %realm %prj %version",
16+
"error_pad_to_n": 7,
17+
"context": true,
18+
"context_n_lines": 0
19+
},
20+
"realm_code_policy": {
21+
"mode": 1,
22+
"disable_logs": true
23+
}
24+
}
25+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"pk": "01f646f8-e479-11eb-ba80-0242ac130004",
3+
"data": {
4+
"name": "Example Realm",
5+
"realm_code": "RLM",
6+
"policy_editable_by_prj": true,
7+
"context_allowed_in_prj": true,
8+
"error_number_unique_in_realm": false,
9+
"error_number_unique_per_project": true,
10+
"policy": {
11+
"types": "all",
12+
"language": "autodetect",
13+
"mode": "non-strict",
14+
"error_prefix": "E",
15+
"error_template": "%error %realm %prj %version",
16+
"error_pad_to_n": 7,
17+
"context": true,
18+
"context_n_lines": 0
19+
},
20+
"realm_code_policy": {
21+
"mode": 1,
22+
"enable_placeholder": true,
23+
"placeholder_value": "__PLACEHOLDER__"
24+
}
25+
}
26+
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2022 BlueTrailSoftware, Holding Inc.
2+
Copyright 2023 ERR0 LLC
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)