Skip to content

chore(deps-dev): update serverless requirement from ^4.32.0 to ^4.33.0 in /examples/deploy-aws-lambda#2800

Merged
zimeg merged 1 commit intomainfrom
dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0
Mar 17, 2026
Merged

chore(deps-dev): update serverless requirement from ^4.32.0 to ^4.33.0 in /examples/deploy-aws-lambda#2800
zimeg merged 1 commit intomainfrom
dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Updates the requirements on serverless to permit the latest version.

Release notes

Sourced from serverless's releases.

4.33.0

Features

Serverless Framework

  • Added AWS Bedrock AgentCore integration for deploying and managing AI agents. Define agents, tools, memory, browsers, and code interpreters via a new ai top-level block in serverless.yml. The Framework compiles agent resources to CloudFormation with least-privilege IAM roles, builds and uploads Docker images to ECR, and supports both JavaScript and Python runtimes. New CLI commands include sls invoke -a <agent> (with JSON and SSE streaming), sls logs -a <agent>, and sls dev mode for agents with hot-reload. Includes 20+ example agents covering LangGraph, MCP servers, browser automation, code interpreters, and more. Read more in the AI Agents documentation. (#13353)
functions:
  calculatorFunction:
    handler: handlers/calculator.handler
ai:
tools:
calculator:
function: calculatorFunction
toolSchema:
- name: calculate
inputSchema:
type: object
properties:
expression:
type: string
required:
- expression
agents:
assistant:
memory:
expiration: 30

# Deploy the agent
sls deploy
Invoke with streaming
sls invoke -a assistant -d "What is 2+2?"
Tail agent logs
sls logs -a assistant --tail

  • Dev mode now matches the shim runtime to your local Node.js version. Previously, dev mode always used nodejs20.x for the remote shim regardless of your local Node.js version. The Framework now automatically selects the matching AWS Lambda runtime (e.g., local Node.js 22 -> nodejs22.x), and falls back to nodejs20.x with a warning when the local version isn't supported by Lambda. (#13355, #13362)

  • Added JSDoc descriptions to the configuration schema for TypeScript type generation. All JSON Schema properties across 30+ config schema files now include description, @see, @example, @default, @deprecated, and @since annotations. This enables auto-generated TypeScript type definitions (via serverless/typescript) with rich inline documentation, hover tooltips, and link-to-docs support in IDEs. (#13345)

Bug Fixes

Serverless Framework

... (truncated)

Commits
  • 406252e chore: release 4.33.0 (#13364)
  • f308bab fix(tests): update path handling and Python binary detection for Windows comp...
  • 5bffeee docs(agents): add configuration guide to menu and fix comment formatting (#13...
  • 83677fd feat: add Bedrock AgentCore integration for AI agents (#13353)
  • 1e5fd26 chore(deps): update minimatch in prod deps (#13363)
  • e4c2b47 chore(deps): bump the aws-sdk group with 30 updates (#13357)
  • 1f0abd8 feat(dev-mode): match shim runtime to local Node.js version (#13362)
  • d0d9ee3 chore(deps): bump is-wsl from 3.1.0 to 3.1.1 in the patch-updates group (#13358)
  • 34ab370 chore(deps): bump @​slack/web-api from 7.13.0 to 7.14.0 (#13359)
  • 4e5460f chore(deps): bump golang.org/x/mod in /binary-installer (#13356)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 23, 2026
@dependabot dependabot bot requested a review from a team as a code owner February 23, 2026 17:39
@dependabot dependabot bot added area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 23, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Feb 23, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 93.45%. Comparing base (19940ee) to head (531b8c3).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2800   +/-   ##
=======================================
  Coverage   93.45%   93.45%           
=======================================
  Files          37       37           
  Lines        7689     7689           
  Branches      669      669           
=======================================
  Hits         7186     7186           
  Misses        498      498           
  Partials        5        5           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@zimeg
Copy link
Copy Markdown
Member

zimeg commented Feb 27, 2026

@dependabot recreate

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0 branch 5 times, most recently from c32a09b to ae0e809 Compare March 2, 2026 18:37
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0 branch 2 times, most recently from 82301a6 to 0e7e25b Compare March 6, 2026 16:32
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0 branch from 0e7e25b to aa1c61a Compare March 13, 2026 15:57
@zimeg
Copy link
Copy Markdown
Member

zimeg commented Mar 17, 2026

@dependabot recreate?

@zimeg zimeg enabled auto-merge (squash) March 17, 2026 03:25
Updates the requirements on [serverless](https://github.com/serverless/serverless) to permit the latest version.
- [Release notes](https://github.com/serverless/serverless/releases)
- [Changelog](https://github.com/serverless/serverless/blob/main/RELEASE_PROCESS.md)
- [Commits](https://github.com/serverless/serverless/compare/sf-core@4.32.0...sf-core@4.33.0)

---
updated-dependencies:
- dependency-name: serverless
  dependency-version: 4.33.0
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0 branch from aa1c61a to 531b8c3 Compare March 17, 2026 03:26
@zimeg zimeg merged commit 79c104b into main Mar 17, 2026
21 checks passed
@zimeg zimeg deleted the dependabot/npm_and_yarn/examples/deploy-aws-lambda/serverless-tw-4.33.0 branch March 17, 2026 03:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:examples issues related to example or sample code dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants