> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beam.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# September 4, 2024

<Frame>
  <img src="https://mintcdn.com/slai-beam/vg5aTEbpFmupCYom/img/releases/changelog-94.jpg?fit=max&auto=format&n=vg5aTEbpFmupCYom&q=85&s=50b2d3419f7b05b8e0106cb3f93c2f08" width="2400" height="1350" data-path="img/releases/changelog-94.jpg" />
</Frame>

# 0.2.73

<Info>
  Beam V1 is now officially deprecated and all deployments, volumes, and data
  will be deleted on September 16th.

  If you have not yet migrated to Beam V2, [you can do it here](https://platform.beam.cloud).
</Info>

## Features

* Mount external cloud buckets to Beam containers with `CloudBucket`
* Added callback signature token to dashboard
* Improvements to reliability and system performance
* Download deployment packages from V2 dashboard
* Added scheduled jobs to V2
* Disable API keys in dashboard
* Show low capacity GPU warnings in dashboard

## Bug Fixes

* Fixed long-running tasks timing out
* Fixed `beam logs --task-id` not filtering correctly
* Improve setup prompts during `beam config create`

## How to update

```sh theme={null}
uv tool upgrade beam-client
```

## Mount S3 Buckets with `CloudBucket`

You can now mount your own S3 buckets to your apps. Buckets are mounted using AWS’s mountpoint-s3. In general, any provider with an S3-compatible API should work. For instance, AWS S3, Cloudflare R2, and Tigris all work out of the box.

[Read more here](/v2/data/external-storage).

<Frame>
  <img src="https://mintcdn.com/slai-beam/vg5aTEbpFmupCYom/img/releases/cloudbucketmount.png?fit=max&auto=format&n=vg5aTEbpFmupCYom&q=85&s=a650d2ff468287f69e99b80b7ddeeaeb" width="1338" height="1222" data-path="img/releases/cloudbucketmount.png" />
</Frame>

## Added callback signature token to dashboard

The callback verification token for callbacks can now be retrieved on the `/settings/account` page [in the web dashboard](https://platform.beam.cloud/settings/general).

[Read more about signature verification here](/v2/topics/callbacks#signature-verification).

<Frame>
  <img src="https://mintcdn.com/slai-beam/8ZCK4GhQQmQigFR0/img/releases/callback-key.png?fit=max&auto=format&n=8ZCK4GhQQmQigFR0&q=85&s=e6ca11536bfe3cc9d772097ba9480be1" width="551" height="191" data-path="img/releases/callback-key.png" />
</Frame>

## Scheduled Jobs Added to V2

You can run scheduled jobs on V2.

```python theme={null}
from beam import schedule


@schedule(when="@weekly", name="weekly-task")
def task():
    print("Hi, from your weekly scheduled task!")
```

[Read more about scheduled jobs here](/v2/function/scheduled-job).
