Skip to content

Commit 7496d6b

Browse files
Merge pull request #297285 from domainname/main
feilonghuang/Update Buildpack versions
2 parents 1301704 + a4a482a commit 7496d6b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/spring-apps/enterprise/how-to-enterprise-deploy-polyglot-apps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ The following table lists the features supported in Azure Spring Apps:
532532

533533
| Feature description | Comment | Environment variable | Usage |
534534
|---------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|--------------------------------------|
535-
| Configure the .NET Core runtime version. | Supports `Net6.0`, and `Net8.0`. <br> You can configure through a **runtimeconfig.json** or MSBuild Project file. <br> The default runtime is `6.0.*`. | N/A | N/A |
535+
| Configure the .NET Core runtime version. | Supports `Net8.0`, and `Net9.0`. <br> You can configure through a **runtimeconfig.json** or MSBuild Project file. <br> The default runtime is `8.0.*`. | N/A | N/A |
536536
| Add CA certificates to the system trust store at build and runtime. | See the [Configure CA certificates for app builds and deployments](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md#configure-ca-certificates-for-app-builds-and-deployments) section of [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
537537
| Integrate with the Dynatrace and New Relic APM agents. | See [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
538538
| Enable configuration of labels on the created image. | Configures both OCI-specified labels with short environment variable names and arbitrary labels using a space-delimited syntax in a single environment variable. | `BP_IMAGE_LABELS` <br> `BP_OCI_AUTHORS` <br> See more environment variables [here](https://github.com/paketo-buildpacks/image-labels). | `--build-env BP_OCI_AUTHORS=<value>` |
@@ -545,7 +545,7 @@ The following table lists the features supported in Azure Spring Apps:
545545

546546
| Feature description | Comment | Environment variable | Usage |
547547
|---------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------|
548-
| Specify a Python version. | Supports `3.8.*`, `3.9.*`, `3.10.*`, `3.11.*`, `3.12.*`. The default value is `3.10.*`.<br> You can specify the version via the `BP_CPYTHON_VERSION` environment variable during build. | `BP_CPYTHON_VERSION` | `--build-env BP_CPYTHON_VERSION=3.8.*` |
548+
| Specify a Python version. | Supports `3.9.*`, `3.10.*`, `3.11.*`, `3.12.*`, `3.13.*`. The default value is `3.10.*`.<br> You can specify the version via the `BP_CPYTHON_VERSION` environment variable during build. | `BP_CPYTHON_VERSION` | `--build-env BP_CPYTHON_VERSION=3.13.*` |
549549
| Add CA certificates to the system trust store at build and runtime. | See the [Configure CA certificates for app builds and deployments](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md#configure-ca-certificates-for-app-builds-and-deployments) section of [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
550550
| Enable configuration of labels on the created image. | Configures both OCI-specified labels with short environment variable names and arbitrary labels using a space-delimited syntax in a single environment variable. | `BP_IMAGE_LABELS` <br> `BP_OCI_AUTHORS` <br> See more environment variables [here](https://github.com/paketo-buildpacks/image-labels). | `--build-env BP_OCI_AUTHORS=<value>` |
551551

@@ -557,7 +557,7 @@ The following table lists the features supported in Azure Spring Apps:
557557

558558
| Feature description | Comment | Environment variable | Usage |
559559
|---------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------|
560-
| Specify a Go version. | Supports `1.21.*`, `1.22.*`. The default value is `1.21.*`.<br> The Go version is automatically detected from the app's **go.mod** file. You can override this version by setting the `BP_GO_VERSION` environment variable at build time. | `BP_GO_VERSION` | `--build-env BP_GO_VERSION=1.22.*` |
560+
| Specify a Go version. | Supports `1.22.*`, `1.23.*`. The default value is `1.22.*`.<br> The Go version is automatically detected from the app's **go.mod** file. You can override this version by setting the `BP_GO_VERSION` environment variable at build time. | `BP_GO_VERSION` | `--build-env BP_GO_VERSION=1.23.*` |
561561
| Configure multiple targets. | Specifies multiple targets for a Go build. | `BP_GO_TARGETS` | `--build-env BP_GO_TARGETS=./some-target:./other-target` |
562562
| Add CA certificates to the system trust store at build and runtime. | See the [Configure CA certificates for app builds and deployments](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md#configure-ca-certificates-for-app-builds-and-deployments) section of [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
563563
| Integrate with Dynatrace APM agent. | See [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
@@ -571,7 +571,7 @@ The following table lists the features supported in Azure Spring Apps:
571571

572572
| Feature description | Comment | Environment variable | Usage |
573573
|----------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|--------------------------------------|
574-
| Specify a Node version. | Supports `16.*`, `18.*`, `19.*`, `20.*`. The default value is `20.*`. <br>You can specify the Node version via an **.nvmrc** or **.node-version** file at the application directory root. `BP_NODE_VERSION` overrides the settings. | `BP_NODE_VERSION` | `--build-env BP_NODE_VERSION=20.*` |
574+
| Specify a Node version. | Supports `18.*`, `20.*`, `22.*`. The default value is `20.*`. <br>You can specify the Node version via an **.nvmrc** or **.node-version** file at the application directory root. `BP_NODE_VERSION` overrides the settings. | `BP_NODE_VERSION` | `--build-env BP_NODE_VERSION=20.*` |
575575
| Add CA certificates to the system trust store at build and runtime. | See the [Configure CA certificates for app builds and deployments](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md#configure-ca-certificates-for-app-builds-and-deployments) section of [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
576576
| Integrate with Dynatrace, Elastic, New Relic, App Dynamic APM agent. | See [How to configure APM integration and CA certificates](./how-to-enterprise-configure-apm-integration-and-ca-certificates.md). | N/A | N/A |
577577
| Enable configuration of labels on the created image. | Configures both OCI-specified labels with short environment variable names and arbitrary labels using a space-delimited syntax in a single environment variable. | `BP_IMAGE_LABELS` <br> `BP_OCI_AUTHORS` <br> See more environment variables [here](https://github.com/paketo-buildpacks/image-labels). | `--build-env BP_OCI_AUTHORS=<value>` |

0 commit comments

Comments
 (0)