Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/shared/redirect-map.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export const tempRedirects = {
'/node': '/docs/en/reference/runtime-helpers/node.js',
'/ruby': '/docs/en/reference/runtime-helpers/ruby',
'/python': '/docs/en/reference/runtime-helpers/python',
'/deno': '/docs/en/reference/runtime-helpers/deno',

// Other aliases
'/typescript': '/docs/en/guides/developer-experience/using-typescript',
Expand Down Expand Up @@ -182,7 +181,6 @@ export const permanentRedirects = {
// round 2: Q4 2021
'/docs/en/reference/runtime/node': '/docs/en/reference/runtime-helpers/node.js',
'/docs/en/reference/runtime/node.js': '/docs/en/reference/runtime-helpers/node.js',
'/docs/en/reference/runtime/deno': '/docs/en/reference/runtime-helpers/deno',
'/docs/en/reference/runtime/ruby': '/docs/en/reference/runtime-helpers/ruby',
'/docs/en/reference/runtime/python': '/docs/en/reference/runtime-helpers/python',

Expand Down
1 change: 0 additions & 1 deletion src/views/docs/en/:tutorials/configuring-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ Architect supports the following runtime versions:
- Unless otherwise specified in your project manifest, Node.js is the default runtime for new functions
- **Python**: `3.13`, `3.12`, `3.11`, `3.10`, or `3.9` using `pip3`
- **Ruby**: `3.3`, or `3.2` using `bundle`
- **Deno**: `1.6.x` ([under development](../reference/runtime-helpers/deno))

> ⚠️ Working locally with the Sandbox requires target runtimes to be available in your `$PATH`.

Expand Down
1 change: 0 additions & 1 deletion src/views/docs/en/get-started/detailed-aws-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Architect supports the following runtimes for composing your application's busin
- **Python**: >= 3.9 using `pip3`
- Unless otherwise specified in your project manifest, Python 3.13 is the default Python runtime
- **Ruby**: >= 3.2 using `bundle`
- **Deno**: `1.6.x` ([under development](../reference/runtime-helpers/deno))

> ⚠️ Working locally with the Sandbox requires target runtimes to be available in your `$PATH`.

Expand Down
6 changes: 1 addition & 5 deletions src/views/docs/en/get-started/runtime-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Architect runtime support documentation

## Overview

This document outlines the current runtime support commitments Architect makes, both for official AWS Lambda runtimes (such as Node.js), and Architect-specific runtimes (such as TypeScript and Deno).
This document outlines the current runtime support commitments Architect makes, both for official AWS Lambda runtimes (such as Node.js), and Architect-specific runtimes (such as TypeScript).


## Runtime support definitions
Expand Down Expand Up @@ -40,7 +40,6 @@ Runtime | [Deployment][1] | [Sandbox][2] | [Runtime utils][3] | [Automated
Node.js | **✓** | **✓** | [**✓**][5] | **✓**
TypeScript¹ | **✓** | **✓** | [**✓**][5] | **✓**
Python | **✓** | **✓** | [**✓**][6] | **✓**
Deno² | **✓** | **✓** | [~²][7] |
Ruby | **✓** | **✓** | |
Rust³ | **✓** | **✓** | |
Go⁴ | **✓** | **✓** | |
Expand All @@ -56,8 +55,6 @@ Legend:

¹ TypeScript supported via [official plugin](https://github.com/architect/plugin-typescript)

² Deno support may not be current or stable due to ongoing issues related to [Deno compiling to AWS Linux](https://github.com/denoland/deno/issues/17925); an [in-development Deno utility library can be found here](https://github.com/architect/functions-deno)

³ Rust supported via [official plugin](https://github.com/architect/plugin-rust)

⁴ Go supported via [official plugin](https://github.com/architect/plugin-go)
Expand All @@ -68,4 +65,3 @@ Legend:
[4]: #automated-dependency-management
[5]: /docs/en/reference/runtime-helpers/node.js
[6]: /docs/en/reference/runtime-helpers/python
[7]: /docs/en/reference/runtime-helpers/deno
58 changes: 0 additions & 58 deletions src/views/docs/en/guides/developer-experience/using-deno.md

This file was deleted.

12 changes: 0 additions & 12 deletions src/views/docs/en/reference/runtime-helpers/deno.md

This file was deleted.

2 changes: 0 additions & 2 deletions src/views/docs/table-of-contents.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const Guides = [
'Logging & monitoring',
'Using ESM',
'Using TypeScript',
'Using Deno',
'Custom CloudFormation',
'Create AWS credentials',
{
Expand Down Expand Up @@ -93,7 +92,6 @@ const Reference = [ {
'Runtime helpers': [
'Node.js',
'Python',
'Deno',
],
} ]

Expand Down
Loading