Skip to content

chore(deps): update dependency serverless to v4#1397

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/serverless-4.x
Open

chore(deps): update dependency serverless to v4#1397
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/serverless-4.x

Conversation

@renovate

@renovate renovate Bot commented May 22, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
serverless 3.40.04.38.1 age confidence

Release Notes

serverless/serverless (serverless)

v4.38.1

Compare Source

v4.38.0

Compare Source

v4.37.0

Compare Source

v4.36.1

Compare Source

v4.36.0

Compare Source

v4.35.1

Compare Source

v4.35.0

Compare Source

v4.34.0

Compare Source

v4.33.3

Compare Source

v4.33.2

Compare Source

v4.33.1

Compare Source

v4.33.0

Compare Source

v4.32.0

Compare Source

v4.31.2

Compare Source

v4.31.1

Compare Source

v4.31.0

Compare Source

v4.30.0

Compare Source

v4.29.4

Compare Source

v4.29.3

Compare Source

v4.29.0: 4.29.0

Compare Source

Features
  • Serverless Framework
    • Added sls login aws command. Learn more in the docs.
Bux Fixes
  • Serverless Framework
    • Avoid adding unnecessary duplicate managed policies for durable functions
Maintenance
  • Serverless Framework
    • Updated Java local invoke bridge dependencies

v4.28.0: 4.28.0

Compare Source

Features
Maintenance

v4.27.1: 4.27.1

Compare Source

Bux Fixes
  • Serverless Framework
    • Added an option to pass the tenant ID in sls invoke
    • Fixed a regression affecting integration request parameters in AWS REST API

v4.27.0: 4.27.0

Compare Source

Features
  • Serverless Framework
    • Added support for ap-southeast-6 AWS region (#​13174)
    • Added support for IPv6 outbound connections for Lambda functions running in dual-stack subnets (ipv6AllowedForDualStack). Learn more in the docs (#​12253)
Bux Fixes
  • Serverless Framework
    • Fixed AWS error handling in Axiom integration (#​13173)
    • Enabled support for nodejs24.x runtime in dev mode (#​13172)

v4.26.1: 4.26.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Fixed AWS SDK error handling

v4.26.0: 4.26.0

Compare Source

Features
  • Serverless Framework
    • Added support for Lambda tenant isolation mode so multi-tenant services can run each tenant in its own isolated execution environment (see AWS announcement and read more in our docs).
      functions:
        multiTenantFunction:
          handler: handler.handler
          tenancy:
            mode: per_tenant
    • Added configuration options for API Gateway security policy and endpoint access mode in serverless.yml (see AWS announcement and read more in our docs).
      provider:
        name: aws
        apiGateway:
          endpoint:
            securityPolicy: SecurityPolicy_TLS13_2025_EDGE
            accessMode: strict
    • Added an AWS CLI–based login flow in the onboarding experience and updated the credentials guides to simplify first-time setup (see AWS announcement and read more in our docs).
      serverless  # Run onboarding wizard
      ...
      ✔ AWS Credentials Set-Up Method: · Sign in with AWS CLI (Recommended)
      ...
      Your new Service "my-new-service" is ready. Here are next steps:
      
      • Open Service Directory: cd my-new-service
      • Install Dependencies: npm install (or use another package manager)
      • Deploy Your Service: serverless deploy
    • Added support for a perFunction IAM role mode where the shared service-wide execution role is not created and each function gets its own role. Read more in our docs. (#​13141)
      provider:
       name: aws
       iam:
         role:
           mode: perFunction
      
      functions:
       ddbConsumer:
         handler: handler.ddbConsumer
         events:
           - stream:
               type: dynamodb
               arn: arn:aws:dynamodb:${aws:region}:${aws:accountId}:table/Orders/stream/2025-11-30T12:00:00.000
         # Gets its own role with CloudWatch Logs permissions and
         # DynamoDB Streams permissions (GetRecords, GetShardIterator, etc.)
         # scoped to the configured stream ARN.
      
       queueWorker:
         handler: handler.queueWorker
         events:
           - sqs:
               arn: arn:aws:sqs:${aws:region}:${aws:accountId}:user-events-queue
         # Gets a separate role with CloudWatch Logs permissions and
         # SQS permissions to receive messages, delete them, and read
         # queue attributes from the configured queue.
    • Added support for MFA in the AWS credentials provider, enabling stronger authentication flows when accessing AWS accounts (#​12559).
      serverless deploy --aws-profile my-mfa-profile
    • Added support for the CloudFormation Fn::ForEach intrinsic function, enabling more expressive and reusable templates (#​12402).
      resources:
        Transform: AWS::LanguageExtensions
        Resources:
          Fn::ForEach::TenantBucket:
            - TenantName
            - - tenant-a
              - tenant-b
            - ${TenantName}Bucket:
                Type: AWS::S3::Bucket
                Properties:
                  BucketName: !Sub '${TenantName}-${self:service}-${sls:stage}'
Bug Fixes
  • Serverless Framework
    • Fixed handling of multi-value CLI options for the invoke local command by normalizing values consistently before passing them to the runtime (#​13166).
    • Fixed esbuild externals handling to use Compose-managed dependencies when available, avoiding missing or duplicated modules in bundled artifacts (#​12840).
    • Enhanced the AWS credential provider and related runners to support automatic credential refresh during long-running operations, reducing failures due to expired credentials.
    • Removed the deprecated glob-all dependency and refreshed related dependencies across core packages to improve security.

v4.25.0: 4.25.0

Compare Source

Features
  • Serverless Framework
    • Added support for nodejs24.x AWS Lambda runtime
    • Added support for python3.14 AWS Lambda runtime
    • Added support for Amazon API Gateway response streaming. Enable it by setting response.transferMode: stream on your http event to stream responses back to clients. See the docs for a quick how-to.
  streamer:
    handler: src/handler.handler
    events:
      - http:
          path: stream
          method: get
          response:
            transferMode: stream

v4.24.0: 4.24.0

Compare Source

Features
  • Serverless Framework
    • Added support for java25 AWS Lambda runtime (#​13159)
    • serverless-apigateway-service-proxy plugin is now included in the Serverless Framework. You can remove it from the plugins list in your configuration file and from your package.json. The integration activates automatically whenever custom. apiGatewayServiceProxies is present, so keep or add that block. It is fully backward-compatible. Learn more in the docs.
Bux Fixes
  • Serverless Framework
    • Auto-install uv when dockerizePip and uv installer is enabled (#​13158)
    • Fix Compose support in Python requirements packaging (#​13157)

v4.23.0: 4.23.0

Compare Source

Features
Bux Fixes
  • Serverless Framework
    • Fixed logging of packager output in cases where external dependency installation fails when using the built-in esbuild (#​13149)
Maintenance
  • Serverless Framework
    • Improved authentication performance
    • Improved and cleaned up debug logs

v4.22.0: 4.22.0

Compare Source

Features
  • Serverless Framework
    • serverless-python-requirements plugin is now included in the Serverless Framework. You can remove it from the plugins list in your configuration file and from your package.json. The integration activates automatically whenever custom.pythonRequirements is present, so keep or add that block. It is fully backward-compatible and comes with uv support! Learn more in the docs.
Bug Fixes
  • Serverless Framework
    • Unused stages are now pruned from the service config (#​13138)
    • Fixed an issue where a null app name was sent during authentication
    • Improved input validation
    • Ensured the print command returns a config without $ref references when no cycles exist
Maintenance
  • Serverless Framework
    • The WebSocket module is now lazy-loaded to reduce startup dependencies

v4.21.1: 4.21.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Added support for the --config flag in version pinning (frameworkVersion property)
    • Added handling for the 403 Forbidden error during Docker authentication (#​13116) (#​12895)
    • Fixed invoke local when using Docker and lambda/provided AWS Lambda images; added log capture and proper exit codes for function errors (#​12921)
    • Replaced manual path manipulation with path.basename to improve Windows support (#​13120)
    • Fixed an issue where named AWS resolver properties were not resolved before the resolver was instantiated (#​13133)
    • Improved error logging for easier debugging (#​13121)

v4.21.0: 4.21.0

Compare Source

Features
  • Serverless Framework
    • Added support for notifications

v4.20.2: 4.20.2

Compare Source

Bug Fixes
  • Serverless Framework
    • Reverts skipping CloudWatch Logs ARN in the global IAM role policy when per-function roles are used

v4.20.1: 4.20.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Reverts the integrated serverless-python-requirements plugin

v4.20.0: 4.20.0

Compare Source

Features
  • Serverless Framework
    • Upgraded Custom Resources to Node.js 22 runtime
    • Added support for KMS encryption of created SNS topics (docs)
    • CloudWatch Logs ARN is not added to the global IAM role policy when per-function role is used
Bug Fixes
  • Serverless Framework
    • Fixed handling lambda/provided Docker images in invoke local command (#​12921)
    • Fixed support for NO_PROXY environment variable in AWS SDK
    • Fixed an issue when using a custom CloudFormation stack name
Maintenance
  • Serverless Framework
    • Resolved issues causing DEP0190 deprecation warning in Node.js 24

v4.19.1: 4.19.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Fixes proxy support for requests to the Serverless Platform API

v4.19.0: 4.19.0

Compare Source

Features
  • Serverless Framework
    • Add support for AWS SDK for JavaScript v3. Enable it by setting the environment variable SLS_AWS_SDK=3. See the docs for more info.
    • Add support for IAM roles per function, see the docs for more info.
Bug Fixes
  • Serverless Framework
    • Prevent logical ID collisions for Kafka EventSourceMappings, fixes #​13112
    • Improve handling of named and default exports in CommonJS modules when using Serverless Variables, fixes #​13106
    • Fixes proxy support in AWS SDK
Maintenance

v4.18.2: 4.18.2

Compare Source

Bug Fixes

  • Serverless Framework
    • Fixes building functions with esbuild in dev mode

v4.18.1: 4.18.1

Compare Source

Bug Fixes

  • Serverless Framework
    • Skips esbuild build when prebuilt artifacts are provided
    • Respects AWS_REGION env variable
    • Bumps jackson to 2.15.0 in invoke-bridge and to address CVE-2025-52999 and CVE-2025-49128
    • Bumps form-data to 4.0.4 to address CVE-2025-7783

v4.18.0: 4.18.0

Compare Source

Features

v4.17.2: 4.17.2

Compare Source

Bug Fixes

  • Serverless Container Framework
    • Fixes an issue with the AWS CRT not always being found when creating Cloudfront resources

v4.17.1: 4.17.1

Compare Source

Features
  • Serverless Framework
    • Add support for ENABLE_LEGACY_DEPLOYMENT_BUCKET env var.
    • Enable packaging without AWS credentials if using legacy deployment buckets.
Bug Fixes
  • Serverless Framework
    • Add better validation if deploying to multiple regions and/or stages at the same time.

v4.17.0: 4.17.0

Compare Source

Features
  • Serverless Framework

v4.16.1: 4.16.1

Compare Source

Features
  • Serverless Container Framework
    • A new AWS DeploymentType with faster and more reliable routing

v4.16.0

Compare Source

v4.15.1: 4.15.1

Compare Source

Bug Fixes

v4.15.0: 4.15.0

Compare Source

Features
Bug Fixes
  • Serverless Framework

    • Default to dev stage if user specified the stage option without a value
  • Serverless Container Framework

    • Handle when containers are not running during rebuild

v4.14.4: 4.14.4

Compare Source

Bug Fixes
  • Serverless Framework
    • Skip AWS credentials check on the package command if a deployment bucket name is explicitly set via provider.deploymentBucket
    • Fix support for the -s shortcut in certain cases
    • Fix handling of the service name when service is provided as an object with a name property
  • Serverless Container Framework
    • Fix wildcard domain detection in ACM and Route 53

v4.14.3: 4.14.3

Compare Source

Security Fixes

  • Update Go version to address CVE-2025-22871, related to net/http in the Golang stdlib: We’ve reviewed the recent CVE, which generally affects the Go standard library in web servers and web-related functionalities. Since the Serverless Framework is a CLI tool does not rely on running a web server or handling web requests, users are not affected by this vulnerability. The CLI uses a small amount of Go to handle updating to the version set in frameworkCore in serverless.yml. Our update process uses HTTPS with SSL/TLS to securely check for and install new versions, ensuring no risk of exploitation or malicious code injection. All dependencies have been audited, and no vulnerabilities were found. However, upgrading is always a best practice and, we recommend users upgrade to the latest version to ensure they’re on the most secure release. This can be done via the serverless upgrade command, which will update the installer.

v4.14.2: 4.14.2

Compare Source

Bug Fixes
  • Serverless Framework
    • Fixed an issue with proxy support (#​13062)

v4.14.1: 4.14.1

Compare Source

Bug Fixes
  • Serverless Container Framework
    • Pinned the Docker image builder version

v4.14.0: 4.14.0

Compare Source

Features
  • Serverless Framework
    • Support for Doppler secrets in Serverless Variables (docs)
service: my-service
provider:
  environment:
    DB_PASSWORD: ${doppler:my-project/DB_PASSWORD}

v4.13.0: 4.13.0

Compare Source

Features
  • Serverless MCP Server
    • Intelligent Error Analysis

      • Introduces the errors-info tool for advanced error pattern detection across AWS services.
      • Automatically discovers and scans log groups from Lambda, API Gateway (REST & HTTP), and other CloudWatch log groups defined in the CFN Stack.
      • Groups similar logs using CloudWatch Logs Insights pattern command.
      • Extracts metadata including regex strings, pattern IDs, frequency ratios, and severity levels.
      • Displays representative examples of each pattern group to reduce noise and improve diagnostics.
    • Confirmation Handling for Queries

      • Adds robust safeguards against accidentally triggering large historical queries.
      • Requires explicit confirmation for:
        • Date ranges older than 1 month
        • Timeframes longer than 3 hours
    • Enhanced Logs Search

      • Improves the logs-search tool with more flexible search behavior.
      • Supports arrays of search terms with implicit OR logic.
      • Enables case-insensitive matching.
    • Integrated Documentation Tool

      • Adds support for browsing Serverless Framework and Serverless Container Framework documentation within the MCP server.
      • Serves markdown files directly - always up to date.
      • Documentation is always tied to the version you are using, ensuring accuracy and consistency with your environment.
    • General Tooling Improvements

      • Improved AWS Credential Error Handling

        • Detects and returns actionable messages for profile, role, or region misconfigurations in all tools.
      • Context Overflow Protection

        • Introduces caps to prevent overloading agents with excessive data:
          • Max log events
          • Max error patterns
          • Max metric datapoints
        • Dynamically adjusts metric periods for larger timeframes.
      • Optimized Lambda Logs Queries

        • Large timeframe metric queries now supported, but error pattern queries are limited to the past 7 days.
        • Provides actionable hints suggesting direct use of the errors-info tool for broader analyses.
      • Service-wide Analysis Support

        • The service-summary tool now supports serviceWideAnalysis, enabling complete resource scanning without requiring specific IDs.
        • Expands usability for agents operating with incomplete context.

v4.12.0: 4.12.0

Compare Source

Features
  • Serverless MCP Server
    • Introduces of a powerful AI-compatible interface for cloud infrastructure. The Serverless MCP Server enables AI agents to diagnose issues, fetch metrics, and analyze resources across cloud services, eliminating the need to dig through web interfaces like the AWS Console.
    • Supports both stdio and HTTP/SSE transports, and includes comprehensive tools for Lambda, API Gateway, DynamoDB, S3, SQS, and CloudWatch.
    • Delivers critical infrastructure insights directly to your AI agent within your IDE - such as Cursor or Windsurf - making debugging and troubleshooting faster and more intuitive than ever.
    • To try it out, use the following in your MCP servers configuration file (mcp_config.json or mcp.json)
{
  "mcpServers": {
    "serverless": {
      "command": "serverless",
      "args": [
        "mcp"
      ]
    }
  }
}

v4.11.1: 4.11.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Fixed = Truncated in Serverless v4 Parameter Values (#​13050)

v4.11.0: 4.11.0

Compare Source

Features
  • Serverless Framework
    • Allow setting provisioned concurrency alias (#​7209)

v4.10.1: 4.10.1

Compare Source

Bug Fixes
  • Serverless Framework
    • Resolved incorrect region usage in certain cases when resolving CloudFormation outputs via Serverless Variables
  • Serverless Compose
    • Fixed handling of service parameters in the remove command (#​13041)
Maintenance

v4.10.0: 4.10.0

Compare Source

Features
  • Serverless Container Framework
    • Added support for user-provided VPCs, IAM roles, and WAF

v4.9.1: 4.9.1

Compare Source

Features
  • Serverless Framework
    • Added support for new ap-southeast-7 and mx-central-1 AWS regions
Bug Fixes
  • Serverless Framework
    • Fixed handling v3 fallback in installer

v4.9.0: 4.9.0

Compare Source

Features
  • Serverless Container Framework
    • Added step scaling policies
Maintenance

v4.8.0: 4.8.0

Compare Source

Features
  • Serverless Framework
    • Adds reconcile command (docs)
  • Serverless Container Framework
    • Adds configurable lambda timeout

v4.7.0: 4.7.0

Compare Source

Features
  • Serverless Framework
    • Serverless Variables supports Fn::Sub literal values (AWS docs)
  • Serverless Container Framework
    • Auto-configures "www" subdomain when a naked domain is specified in domain of a container, so that it points toward the ALB.
    • Adds scale policy for Target Tracking scaling based on request count to ALB.
Maintenance
Bug Fixes
  • Serverless Framework
    • Ignores AWS_PROFILE when using Dev Mode to properly use Lambda Function AWS credentials
  • Serverless Container Framework
    • Fixes AWS IAM Role creation and injection of temporary credentials in Dev Mode.
    • Fixes cpu and memory configuration for AWS ECS Fargate containers.

v4.6.4

Compare Source

v4.6.3: 4.6.3

Compare Source

Features
  • Serverless Framework
    • Added support for ruby3.3 runtime (#​12423)
  • Serverless Container Framework
    • Adds auto-scaling, includes min/max/desired, and target tracking auto-scaling for cpu and memory.
    • Auto-calculates desired values to safely deploy at high scale without over/under provisioning current Task count.
    • Improves ALB routing to always recalculate route priorities and save them.
    • Detects incorrect port values and failed health checks to offer users clear feedback, faster, as to why their deployments failed
    • Adds build args to the Docker build process.
    • Improved types and validation around scaling policies and more, with helpful errors.
Maintenance
  • Serverless Framework:
    • Removed vulnerable formdiable and tar dependencies (#​12422, #​12442)
    • Cleaned up unused dependencies
  • Serverless Container Framework
    • Moved SCF/engine logic out of sf-core and into its own engine packages. This is needed to enable SCF and future frameworks to be used with separate clients, starting with an MCP.
    • Moved AWS utilities to engine as well. Note that some sf-core logic relies on a few of these.
Bug Fixes
  • Serverless Framework
    • Serverless Variables ignoringPROP and iot provider name to prevent misinterpreting CloudWatch dynamic labels and IoT Core policy variables (#​13015)
    • Fixed print command to output to stdout not stderr (#​13006)
    • Fixed app name onboarding validation
  • Serverless Container Framework

v4.6.2: 4.6.2

Compare Source

Features
Maintenance
Bug Fixes
  • Fixed handling SIGINT and SIGTERM signals

v4.6.1: 4.6.1

Compare Source

Bug Fixes
  • Fixes importing files using Variables in Windows
  • Fixes handling SIGINT and SIGTERM signals
  • Fixes setting default state bucket region (#​13014)

v4.6.0

Compare Source

Features
  • Initial release of the Serverless Container Framework: A rich developer experience for deploying containers to AWS Lambda and AWS Fargate, without rearchitecting – https://github.com/serverless/containers

v4.5.4: 4.5.4

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Maintenance
  • Continued roll out of the new Serverless Container Framework for testing.

v4.5.3: 4.5.3

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Bug Fixes
  • Fixes missing node_modules when using lockfiles with yarn (#​13012)

v4.5.2: 4.5.2

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Bug Fixes
  • Fixes TypeError: Cannot read properties of undefined (reading 'promiseResolved') (#​13010)
  • Fixes missing node_modules when using lockfiles with pnpm (#​13002)

v4.5.1: 4.5.1

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Bug Fixes
  • Slow roll out of the new Serverless Container Framework for testing.
  • Fixes Unable to use Gitlab CI - IncompleteSignature (#​13008)
  • Fixes Cannot parse "serverless": Unsupported file extension (#​13007)
  • The variables table in the print command is only displayed when using the --debug flag (#​13006)
  • Fixes Variable Resolution in v4 Requires Multiple Passes Unlike v3 (#​12985)
  • Added support for the frameworkVersion property (version pinning) in serverless-compose configuration files

v4.5.0: 4.5.0

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Maintanance
  • Refactored configuration file loading
Bug Fixes
  • Lock files are now respected when building with esbuild

v4.4.21

Compare Source

v4.4.20

Compare Source

v4.4.19: 4.4.19

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Features
  • Added support for ap-southeast-5 and ca-west-1 AWS regions (#​12981)
  • Added AWS SSM parameter check in license key resolution (docs)
Bug Fixes
  • Resolve layer package artifact and Docker image paths correctly (#​12971)
  • Fixed an issue with duplicated files in the zip file (#​12890)

v4.4.18

Compare Source

v4.4.17: 4.4.17

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Features
  • Added support for provenance option in docker build (#​12808)
Maintenance
Bug Fixes
  • Enabled loading provider.stage from a file (#​12910)
  • Fall back to default value when file lacks attribute at specified path (#​12956)
  • Use relative paths for artifacts in serverless-state.json (#​12775)

v4.4.16: 4.4.16

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Bug Fixes
  • Resolved an issue with the self resolver by correcting the variable execution order to prevent errors.
  • Fixed Axiom integration when using package and deploy --package commands (#​12943)
  • Reverted the fix for bundling off (#​12947, #​12944)

v4.4.15: 4.4.15

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Maintanance
  • Improved error message for cases where a function handler does not point to a valid function (#​12939)
Bug Fixes
  • Fixed an issue where the file resolver could not load a file with an unsupported extension (#​12935)
  • Resolved the error The value at this path is object, but it should be a string when using YAML anchors in files loaded by the file resolver (#​12934)
  • Fixed an issue where a parameter could not be resolved when using the provider.region key (#​12932)
  • Corrected a typo in the exclude property (#​12942)
  • Fixed an issue with esbuild when bundling is disabled (#​12941 #​12840 #​12706)

v4.4.14: 4.4.14

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Bug Fixes
  • Optimize performance of self resolver (#​12927)

v4.4.13: 4.4.13

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Features
  • Added support for the nodejs22.x runtime in dev mode
  • Enable setting AWS API Gateway integration timeout (#​12800) (docs)
Bug Fixes
  • Fixed an issue where dev dependencies were included in the deployment package (#​12911)
  • Reverted the use of State for individual Serverless Framework services. State is now created and used only when using Compose, as it was previously (#​12908)

v4.4.12: 4.4.12

Compare Source

This is another Serverless Framework V.4 GA release. If you have Serverless Framework V.4 installed already, it will auto-update within 24 hours, or you can run serverless update to get the latest version immediately. If you are upgrading to V.4 from V.3 or less, see our Upgrading to Serverless Framework V.4 Documentation.

Features
  • Added support for the nodejs22.x runtime (#​12914)
  • Added support for server-side encryption in State buckets with enforced bucket pol

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 7 times, most recently from 24b0257 to 2bcd5b4 Compare May 28, 2024 11:25
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 12 times, most recently from 1962893 to 000751e Compare June 5, 2024 17:33
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 9 times, most recently from 674275a to 71b44ee Compare June 17, 2024 04:00
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 2 times, most recently from c1e62ac to 05f261c Compare June 18, 2024 07:23
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 7 times, most recently from 3ceee1c to c5b0182 Compare July 10, 2024 01:12
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 7 times, most recently from 018351c to 0b9ca8f Compare July 17, 2024 00:37
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 10 times, most recently from 30d5290 to 6eda744 Compare July 24, 2024 17:09
@renovate renovate Bot force-pushed the renovate/serverless-4.x branch 3 times, most recently from 995f41f to 1f40856 Compare July 28, 2024 16:09
@codacy-production

codacy-production Bot commented Mar 31, 2026

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

🟢 Metrics 0 complexity

Metric Results
Complexity 0

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@renovate

renovate Bot commented Jun 20, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
➤ YN0000: · Yarn 4.17.0
➤ YN0000: ┌ Resolution step
➤ YN0016: │ serverless@npm:4.38.1: All versions satisfying "4.38.1" are quarantined
➤ YN0000: └ Completed in 1s 475ms
➤ YN0000: · Failed with errors in 1s 493ms

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants