Stay organized with collections
Save and categorize content based on your preferences.
This page documents production updates to Buildpacks.
Check this page for announcements about new or updated features, bug fixes,
known issues, and deprecated functionality.
You can see the latest product updates for all of Google Cloud on the
Google Cloud page, browse and filter all release notes in the
Google Cloud console,
or programmatically access release notes in
BigQuery.
To get the latest product updates delivered to you, add the URL of this page to your
feed
reader, or add the
feed URL directly.
August 14, 2025
The Python buildpack supports Cloud Run source deployments for modern web frameworks such as FastAPI, Gradio, and Streamlit.
For Python version 3.13 and later, the Python buildpack sets the default entrypoint for Cloud Run source deployments based on the web server or framework configuration in your requirements.txt file. For more information, see Build a Python application.
Starting in Go version 1.22 and later, you can no longer use GOPATH for installing dependencies. To manage dependencies, you use a go.mod file. For more information about Go versions, and managing dependencies for vendor directories, see GOPATH and Modules in Go documentation.
The Python buildpack now uses gunicorn --bind :8080 main:app as the default entrypoint for all web applications. If you currently use a Procfile, it will continue to work but you are no longer required to configure a Procfile for your projects. Learn more about Python application entrypoints.
June 27, 2023
The default generic builder now uses the Ubuntu 22 LTS base image. When you specify the latest location, the builds now uses the google-22 builder by default. For example, you can specify either of the following to use google-22:
Starting June 5, 2023, the default generic builder will begin using the Ubuntu 22 LTS base image. This means that builds using gcr.io/buildpacks/builder:latest will get the google-22 builder which addresses multiple security issues. You can read more about the google-22 builder in our announcement on GitHub.
You can preview the new builder by adding --builder=gcr.io/buildpacks/builder:google-22 to the gcloud builds submit --pack command when you build your application with a specific builder.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-29 UTC."],[[["\u003cp\u003eThis page provides updates on Buildpacks, including new features, bug fixes, known issues, and deprecated functionality, with the latest updates shown at the top.\u003c/p\u003e\n"],["\u003cp\u003eUpdates are available on the Google Cloud release notes page, through the Google Cloud console, or programmatically via BigQuery.\u003c/p\u003e\n"],["\u003cp\u003eThe runtime support schedule for specific PHP runtimes has been extended to align with PHP's public support schedule.\u003c/p\u003e\n"],["\u003cp\u003eGo version 1.22 and later require using a \u003ccode\u003ego.mod\u003c/code\u003e file for dependency management, replacing the use of \u003ccode\u003eGOPATH\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe default generic builder now uses the Ubuntu 22 LTS base image, and users can specify the \u003ccode\u003elatest\u003c/code\u003e location to use the \u003ccode\u003egoogle-22\u003c/code\u003e builder.\u003c/p\u003e\n"]]],[],null,["# Buildpacks release notes\n\nThis page documents production updates to Buildpacks. Check this page for announcements about new or updated features, bug fixes, known issues, and deprecated functionality.\nYou can see the latest product updates for all of Google Cloud on the\n[Google Cloud](/release-notes) page, browse and filter all release notes in the\n[Google Cloud console](https://console.cloud.google.com/release-notes),\nor programmatically access release notes in\n[BigQuery](https://console.cloud.google.com/bigquery?p=bigquery-public-data&d=google_cloud_release_notes&t=release_notes&page=table).\n\nTo get the latest product updates delivered to you, add the URL of this page to your\n[feed\nreader](https://wikipedia.org/wiki/Comparison_of_feed_aggregators), or add the\n[feed URL](https://cloud.google.com/feeds/cloudbuildpacks-release-notes.xml) directly.\n\nAugust 14, 2025\n---------------\n\nThe Python buildpack supports Cloud Run source deployments for modern web frameworks such as [FastAPI](https://cloud.google.com/run/docs/quickstarts/build-and-deploy/deploy-python-fastapi-service.md), [Gradio](https://cloud.google.com/run/docs/quickstarts/build-and-deploy/deploy-python-gradio-service), and [Streamlit](https://cloud.google.com/run/docs/quickstarts/build-and-deploy/deploy-python-streamlit-service).\n\nFor Python version 3.13 and later, the Python buildpack sets the default entrypoint for [Cloud Run source deployments](https://cloud.google.com/run/docs/deploying-source-code) based on the web server or framework configuration in your `requirements.txt` file. For more information, see [Build a Python application](https://cloud.google.com/docs/buildpacks/python#entrypoint).\n\nSeptember 23, 2024\n------------------\n\nThe [runtime support schedule for some PHP runtimes](https://cloud.google.com/docs/buildpacks/runtime-support#php) has been extended to match [PHP's public support schedule](https://www.php.net/supported-versions.php).\n\nFebruary 26, 2024\n-----------------\n\nStarting in Go version 1.22 and later, you can no longer use `GOPATH` for installing dependencies. To manage dependencies, you use a [`go.mod`](https://cs.opensource.google/go/go/+/refs/tags/go1.22.0:src/go.mod) file. For more information about Go versions, and managing dependencies for vendor directories, see [GOPATH and Modules](https://pkg.go.dev/cmd/go#hdr-GOPATH_and_Modules) in Go documentation.\n\nAugust 28, 2023\n---------------\n\nThe support policy and schedule for Google Cloud's buildpacks is now available at \u003chttps://cloud.google.com/docs/buildpacks/support-policy\u003e.\n\nJuly 19, 2023\n-------------\n\nThe Python buildpack now uses `gunicorn --bind :8080 main:app` as the default entrypoint for all web applications. If you currently use a `Procfile`, it will continue to work but you are no longer required to configure a `Procfile` for your projects. Learn more about [Python application entrypoints](https://cloud.google.com/docs/buildpacks/python#application_entrypoint).\n\nJune 27, 2023\n-------------\n\nThe default generic builder now uses the Ubuntu 22 LTS base image. When you specify the `latest` location, the builds now uses the `google-22` builder by default. For example, you can specify either of the following to use `google-22`:\n\n- `gcr.io/buildpacks/builder:latest`\n- `gcr.io/buildpacks/builder:google-22`\n\nIf you need to pin your build to the previous Ubuntu 18 builder, see the [instructions about how to configure the builder version](https://cloud.google.com/docs/buildpacks/use-a-specific-builder), including:\n\n- `pack` commands for local builds.\n- `gcloud` commands for remote builds.\n- How to configure the `project.toml` for Cloud Run.\n\nJune 22, 2023\n-------------\n\nThe Java runtime now supports using [Maven wrappers](https://cloud.google.com/docs/buildpacks/java#configure_maven) for managing your project's dependency on Maven.\n\nJune 01, 2023\n-------------\n\nYou can use the [Pnpm](https://pnpm.io/installation) package manager to configure dependencies for Node.js runtimes. [Learn how to configure your application](https://cloud.google.com/docs/buildpacks/nodejs#installing_dependencies).\n\nApril 26, 2023\n--------------\n\nStarting June 5, 2023, the default generic builder will begin using the Ubuntu 22 LTS base image. This means that builds using `gcr.io/buildpacks/builder:latest` will get the `google-22` builder which addresses multiple security issues. You can read more about the `google-22` builder in our [announcement on GitHub](https://cloud.google.com/docs/buildpacks/github/buildpacks/discussions/271).\n\nYou can preview the new builder by adding `--builder=gcr.io/buildpacks/builder:google-22` to the `gcloud builds submit --pack` command when you build your application with a [specific builder](https://cloud.google.com/docs/buildpacks/use-a-specific-builder)."]]