Skip to content

Commit 509efb7

Browse files
authored
Update language for Veracode transition (#1588)
This change updates the `@phylum.io` emails to `@veracode.com` ones. Related to phylum-dev/documentation#276
1 parent f72b24e commit 509efb7

29 files changed

+68
-49
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
[engineering@phylum.io](mailto:engineering@phylum.io).
63+
[dl-phylum-engineering@veracode.com](mailto:dl-phylum-engineering@veracode.com).
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

CONTRIBUTING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ Table of Contents:
1010
1. [Testing](#testing)
1111
2. [Documentation](#documentation)
1212
3. [Style](#style)
13+
1. [Rust](#rust)
14+
2. [Extensions](#extensions)
15+
3. [Shell scripts](#shell-scripts)
1316
4. [Contact](#contact)
1417

1518
## Bug Reports
@@ -137,7 +140,7 @@ shellcheck -o all -S style -s sh $(find . -iname "*.sh")
137140
If there are any outstanding questions about contributing to the Phylum CLI,
138141
they can be asked on the [issue tracker].
139142

140-
As an alternative, you can also contact <support@phylum.io> for issues with
141-
using the Phylum CLI.
143+
As an alternative, you can also contact `dl-phylum[email protected]` for
144+
issues with using the Phylum CLI.
142145

143146
[issue tracker]: https://github.com/phylum-dev/cli/issues

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![Test Status](https://github.com/phylum-dev/cli/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/phylum-dev/cli/actions/workflows/test.yml)
1212
[![Docusaurus](https://img.shields.io/badge/docs-Docusaurus-blue)](https://docs.phylum.io)
1313

14-
The Phylum command line interface (CLI) allows users to submit their project package dependencies to [Phylum's](https://phylum.io) API for analysis. Currently [pre-built binaries](https://github.com/phylum-dev/cli/releases) for Linux and macOS are available. On Windows, we recommend using the Linux binaries under [WSL](https://learn.microsoft.com/en-us/windows/wsl/). See the [alternate installation methods](https://docs.phylum.io/cli/alternate_install) for more options.
14+
The Phylum command line interface (CLI) allows users to submit their project package dependencies to [Phylum's](https://app.phylum.io) API for analysis. Currently [pre-built binaries](https://github.com/phylum-dev/cli/releases) for Linux and macOS are available. On Windows, we recommend using the Linux binaries under [WSL](https://learn.microsoft.com/en-us/windows/wsl/). See the [alternate installation methods](https://docs.phylum.io/cli/alternate_install) for more options.
1515

1616
## Install `phylum` CLI
1717

@@ -101,7 +101,7 @@ FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
101101

102102
You should have received a copy of the GNU General Public License along with
103103
this program. If not, see <https://www.gnu.org/licenses/gpl.html> or write to
104-
`phylum@phylum.io` or `engineering@phylum.io`
104+
`phylum@veracode.com` or `dl-phylum-engineering@veracode.com`
105105

106106
---
107107
## Discord
@@ -112,4 +112,4 @@ Join us on the [Phylum Community Discord](https://discord.gg/c9QnknWxm3)!
112112

113113
Please contact Phylum with any questions or issues using the CLI tool.
114114

115-
Email: <support@phylum.io>
115+
Email: `dl-phylum[email protected]`

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Phylum was founded by a team of security researchers at heart, and we take the s
55
## Reporting a Vulnerability
66

77
We love coordinated disclosure!
8-
Please email [security@phylum.io](mailto:security@phylum.io) to start a conversation!
8+
Please email [phylum@veracode.com](mailto:phylum@veracode.com) to start a conversation!
99
We'll coordinate a secure communication mechanism first, then evaluate the reported issue(s)
1010
and keep you apprised each step of the way.

cli/Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "phylum-cli"
33
version = "7.3.0"
4-
authors = ["Phylum, Inc. <engineering@phylum.io>"]
4+
authors = ["Veracode, Inc. <dl-phylum-engineering@veracode.com>"]
55
license = "GPL-3.0-or-later"
66
edition = "2021"
77
rust-version = "1.82.0"
@@ -23,7 +23,10 @@ anyhow = "1.0.44"
2323
axum = "0.7.4"
2424
base64 = "0.22.1"
2525
bytes = "1.1.0"
26-
chrono = { version = "^0.4", default-features = false, features = ["serde", "clock"] }
26+
chrono = { version = "^0.4", default-features = false, features = [
27+
"serde",
28+
"clock",
29+
] }
2730
cidr = "0.3.0"
2831
clap = { version = "4.0.9", features = ["string", "wrap_help"] }
2932
console = "0.15.2"
@@ -52,7 +55,13 @@ prettytable-rs = "0.10.0"
5255
purl = { version = "0.1.5", features = ["serde"] }
5356
rand = "0.8.4"
5457
regex = "1.5.5"
55-
reqwest = { version = "0.12.7", features = ["blocking", "json", "rustls-tls", "rustls-tls-native-roots", "rustls-tls-webpki-roots"], default-features = false }
58+
reqwest = { version = "0.12.7", features = [
59+
"blocking",
60+
"json",
61+
"rustls-tls",
62+
"rustls-tls-native-roots",
63+
"rustls-tls-webpki-roots",
64+
], default-features = false }
5665
rsa = { version = "0.9.2", features = ["sha2"] }
5766
serde_json = "1.0.85"
5867
serde = { version = "1.0.144", features = ["derive"] }

cli/tests/extensions/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ fn net_sandboxing_fail() {
256256
try {
257257
const output = Phylum.runSandboxed({
258258
cmd: 'curl',
259-
args: ['http://phylum.io'],
259+
args: ['http://veracode.com'],
260260
});
261261
Deno.exit(output.code);
262262
} catch (e) {
@@ -286,7 +286,7 @@ fn net_sandboxing_success() {
286286
.extension("
287287
const output = Phylum.runSandboxed({
288288
cmd: 'curl',
289-
args: ['http://phylum.io'],
289+
args: ['http://veracode.com'],
290290
exceptions: { env: true, run: true, net: true },
291291
});
292292
Deno.exit(output.code);

cli/tests/sandbox.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ fn default_deny_net() {
9595
let test_cli = TestCli::builder().build();
9696

9797
test_cli
98-
.run(["sandbox", "--allow-run", "/", "--allow-env", "--", "curl", "http://phylum.io"])
98+
.run(["sandbox", "--allow-run", "/", "--allow-env", "--", "curl", "http://veracode.com"])
9999
.failure()
100-
.stderr(predicate::str::contains("Could not resolve host: phylum.io"));
100+
.stderr(predicate::str::contains("Could not resolve host: veracode.com"));
101101
}
102102

103103
#[test]
@@ -112,7 +112,7 @@ fn allow_net() {
112112
"--allow-env",
113113
"--allow-net",
114114
"curl",
115-
"http://phylum.io",
115+
"http://veracode.com",
116116
])
117117
.success();
118118
}

doc_templates/phylum_group_member_add.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
## Examples
66

77
```sh
8-
# Add user `demo@phylum.io` to the `sample` group
9-
$ phylum group member --group sample add demo@phylum.io
8+
# Add user `demo@veracode.com` to the `sample` group
9+
$ phylum group member --group sample add demo@veracode.com
1010
```

doc_templates/phylum_group_member_remove.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
## Examples
66

77
```sh
8-
# Remove user `demo@phylum.io` from the `sample` group
9-
$ phylum group member --group sample remove demo@phylum.io
8+
# Remove user `demo@veracode.com` from the `sample` group
9+
$ phylum group member --group sample remove demo@veracode.com
1010
```

doc_templates/phylum_org_member_add.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
## Examples
66

77
```sh
8-
# Add user `demo@phylum.io` to the `sample` organization
9-
$ phylum org -o sample member add demo@phylum.io
8+
# Add user `demo@veracode.com` to the `sample` organization
9+
$ phylum org -o sample member add demo@veracode.com
1010
```

0 commit comments

Comments
 (0)