@@ -10,6 +10,50 @@ Deploy Classic documentation? [View it here](/deploy/).
10
10
11
11
:::
12
12
13
+ ## July 9th, 2025
14
+
15
+ ### Features
16
+
17
+ - New: Cloud Connect allows you to securely connect your Deno
18
+ Deploy<sup >EA</sup > apps to AWS and GCP, enabling you to use services like AWS
19
+ S3, Google Cloud Storage, without needing to manage credentials.
20
+ - This is done without storing any long lived static credentials, but rather
21
+ using short-lived tokens and OIDC (OpenID Connect) to establish a trust
22
+ relationship between Deno Deploy<sup >EA</sup > and your cloud provider.
23
+ - A setup flow in the app settings page, or a drawer in playgrounds, guides
24
+ you through the process of connecting your app to AWS or GCP.
25
+ - You can use the standard AWS and GCP SDKs to access the services - no need
26
+ to re-write any code to use a different API.
27
+ - [ Learn more in the documentation.] ( https://docs.deno.com/deploy/early-access/reference/cloud-connections/ )
28
+ - The application metrics page now shows more metrics, including V8 memory
29
+ metrics such as heap size and garbage collection stats, as well as process
30
+ level metrics such as CPU usage and overall memory usage.
31
+ - There is now a new "Metrics" tab in the organization overview that shows
32
+ overall metrics for all applications in the organization, including the number
33
+ of requests, CPU usage, and memory usage.
34
+ - You can now edit the URL you are viewing in the playground preview iframe by
35
+ editing the "address bar" that is displayed above the preview
36
+ - Environment variables now default to being a secret when the key contains
37
+ ` SECRET ` , ` KEY ` , ` TOKEN ` , ` PRIVATE ` , or ` PASSWORD ` . You can still manually
38
+ switch them to plain text if needed.
39
+ - The maximum length limit for environment variable values has been increased to
40
+ 4096 characters, up from 1024 characters.
41
+
42
+ ### Bug fixes
43
+
44
+ - Playgrounds do not get stuck when attempting to deploy an empty file anymore.
45
+ - Playground drawer resizing now works more reliably, especially when some
46
+ drawers are collapsed.
47
+ - Builds now take significantly less time to complete, especially for larger
48
+ projects. The "Warmup" and "Routing" steps, which previously took more than 10
49
+ seconds respectively, now usually take less than 1 second each.
50
+ - Builds can now be cancelled while they are in the "Queueing" and "Routing"
51
+ steps.
52
+ - The organization creation page now correctly displays whether an organization
53
+ slug is taken or not, prior to submitting the form.
54
+ - ` npm install ` can now install ` esbuild ` again - previously it would fail with
55
+ a nondescript error.
56
+
13
57
## June 24th, 2025
14
58
15
59
### Features
0 commit comments