Skip to content

Commit c33d641

Browse files
committed
[GR-44721] [GR-44635] Documentation: Replace GraalVM Enterprise with Oracle GraalVM.
PullRequest: graalpython/2675
2 parents 112a412 + 67ce21d commit c33d641

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

SECURITY.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# Reporting Security Vulnerabilities
22

3-
The GraalVM team values the independent security research community and believes
4-
that responsible disclosure of security vulnerabilities in GraalVM Community
5-
Edition as well as GraalVM Enterprise Edition helps us ensure the security and
6-
privacy of all our users.
3+
The GraalVM team values the independent security research community and believes that responsible disclosure of security vulnerabilities in GraalVM helps us ensure the security and privacy of all our users.
74

85
If you believe you have found a security vulnerability, please submit a report
96
to [email protected] preferably with a proof of concept. Please refer to
@@ -16,7 +13,7 @@ other channels about a report.
1613
### Security Updates, Alerts and Bulletins
1714

1815
GraalVM Community Edition security updates will be released on a quarterly basis
19-
in conjunction withe GraalVM Enterprise Edition security updates that are part
16+
in conjunction with the Oracle GraalVM security updates that are part
2017
of the Oracle Critical Patch Update program. Security updates are released on
2118
the Tuesday closest to the 17th day of January, April, July and October. A
2219
pre-release announcement will be published on the Thursday preceding each
@@ -27,7 +24,7 @@ Alerts](https://www.oracle.com/security-alerts/).
2724
### Security-Related Information
2825

2926
Please refer to the [GraalVM Security
30-
Guide](https://www.graalvm.org/security-guide/) for security related topics
27+
Guide](https://www.graalvm.org/latest/security-guide/) for security related topics
3128
such as how to support trusted and less trusted code execution using the Truffle
3229
language framework, or compiler mitigations for transitive execution
3330
attacks. However please note that we do not currently support the execution of

docs/contributor/CONTRIBUTING.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ another double-dash:
235235
Note that there may be a little confusion about the configuration names of
236236
benchmarks.
237237

238-
##### GraalVM Community and GraalVM Enterprise configurations
238+
##### GraalVM Community Edition and Oracle GraalVM configurations
239239

240-
We have benchmarks for GraalVM Community and Enterprise. For historical reasons,
240+
We have benchmarks for GraalVM Community Edition and Oracle GraalVM. For historical reasons,
241241
these are sometimes referred to in some config files as *CE* and *EE*; *core*
242242
and *enterprise*; *graalvm_ce* and *graalvm_ee*; or *graalpython_core* and
243243
*graalpython_enterprise*, respectively.
@@ -252,9 +252,7 @@ via the `--python-vm-config` parameter:
252252
* `native` - same as `default`, its name is due to the fact that it runs C
253253
extensions using a mixture of LLVM bitcode interpreted and compiled via
254254
GraalVM and real native libraries
255-
* `sandboxed` - this name is historical - this configuration requires a GraalVM
256-
Enterprise and runs all C extensions purely as LLVM bitcode on the GraalVM,
257-
without any access to the native OS libraries, i.e., using the
255+
* `sandboxed` - this name is historical - this configuration requires Oracle GraalVM and runs all C extensions purely as LLVM bitcode on the GraalVM, without any access to the native OS libraries, i.e., using the
258256
`--llvm.managed` option for GraalVM.
259257

260258
##### Configuration of the underlying GraalVM runtime

docs/user/OsInterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This approach is the most compatible with CPython and provides bare access to th
2525
By default, this implementation bypasses the Truffle abstraction layer, therefore it is not sandboxed and does not support custom implementations of [Truffle FileSystem service-provider](https://www.graalvm.org/truffle/javadoc/org/graalvm/polyglot/io/FileSystem.html), and other Polyglot API providers related to system interfaces.
2626

2727
The native backend is chosen by default when GraalVM Python is started via the `graalpy` or any other Python related launcher inside GraalVM.
28-
The exception are Python related launchers with `-managed` suffix available only in GraalVM Enterprise (for example, `graalpy-managed`), which by default use the `java` POSIX backend.
28+
The exception are Python related launchers with `-managed` suffix available only in Oracle GraalVM (for example, `graalpy-managed`), which by default use the `java` POSIX backend.
2929

3030
### Limitations of the Native Backend
3131

@@ -39,7 +39,7 @@ Known limitations are:
3939
The `java` backend uses the [Truffle abstraction layer](https://github.com/oracle/graal/blob/master/truffle/docs/README.md) and therefore supports custom Polyglot API providers related to system interfaces and sandboxing.
4040
Since this abstraction is POSIX agnostic, it does not expose all the necessary functionality. Some functionality is emulated, and some functionality is not supported at all.
4141

42-
The Java backend is the default when GraalVM Python is run via the `Context` API, i.e., [embedded in Java applications](https://github.com/oracle/graal/blob/master/docs/reference-manual/embedding/embed-languages.md), or when it is launched using Python related launchers with `-managed` suffix available only in GraalVM Enterprise.
42+
The Java backend is the default when GraalVM Python is run via the `Context` API, i.e., [embedded in Java applications](https://github.com/oracle/graal/blob/master/docs/reference-manual/embedding/embed-languages.md), or when it is launched using Python related launchers with `-managed` suffix available only in Oracle GraalVM.
4343

4444
### Limitations of the Emulated Backend
4545

docs/user/ParserDetails.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ these language options:
8383
Note that a Python context will not enable writing `.pyc` files by default.
8484
The `graalpy` launcher enables it by default, but if this is desired in the embedding use case, care should be taken to ensure that the `__pycache__` location is properly managed and the files in that location are secured against manipulation just like the source `.py` files they were derived from.
8585

86-
Note also that to upgrade the application sources to GraalVM Enteprise's Python runtime, old `.pyc`
86+
Note also that to upgrade the application sources to Oracle GraalVM Python runtime, old `.pyc`
8787
files must be removed by the embedder as required.
8888

8989
## Security Considerations

0 commit comments

Comments
 (0)