Release Notes
Stay up to date with the latest features, improvements, and bug fixes in App Builder and Adobe I/O Runtime.
April 2026
April 17, 2026
@adobe/aio-cli-plugin-console 5.3.0
New Features
- Added
aio console api listcommand to list API services available to the selected Organization (flags services that require a product profile) - Added
aio console workspace api listcommand to list API services subscribed to a Workspace, including their product profiles - Added
aio console workspace api addcommand to subscribe one or more API services to a Workspace by service code, using OAuth Server-to-Server credentials - Added repeatable
--license-config '<sdkCode>=<profileNameOrId>[,...]'flag onworkspace api addfor services that require a product profile (e.g. Adobe Analytics) - Together with
aio console project createandaio console workspace create(5.2.0), this completes a fully non-interactive App Builder project bootstrap workflow for scripted and agentic use cases
Upgrade Instructions
To use the update, reinstall the aio-cli:
npm install -g @adobe/aio-cli
April 1, 2026
@adobe/aio-cli-plugin-console 5.2.0
New Features
- Added
aio console project createcommand to create new App Builder projects non-interactively - Added
aio console workspace createcommand to create workspaces in existing projects non-interactively - Useful for scripted and agentic workflows where interactive terminal prompts are not available
Upgrade Instructions
To use the update, reinstall the aio-cli:
npm install -g @adobe/aio-cli
March 2026
March 24, 2026
@adobe/aio-lib-ims-oauth 6.1.0
New Features
- Added
AIO_IMS_LOCAL_LOGIN_PORTenvironment variable to configure the local login callback port - Enables interactive
aio loginfrom inside Docker containers by port-forwarding the configured port to the host browser
Upgrade Instructions
To use the update, reinstall the aio-cli:
npm install -g @adobe/aio-cli
March 10, 2026
@adobe/aio-cli 11.0.2 & @adobe/aio-cli-lib-app-config 4.2.0
Bug Fixes
- Fixed a
TypeError: opts.getPluginsList is not a functionerror that occurred when installing CLI plugins - Aligned
app.config.yamlaction and package schema validation with the OpenWhisk specification
Upgrade Instructions
To use the update, reinstall the aio-cli:
npm install -g @adobe/aio-cli
Full release changes - aio-cli
Full release changes - aio-cli-lib-app-config
February 2026
February 24, 2026
Activation Logs and CDN Management in Developer Console
New Features
Two new features are now available in Adobe Developer Console for App Builder projects:
Console Logs UI
View and search your action logs directly in Developer Console — no CLI required:
- See all activations, not just failures
- Access the last 3 days of logs
- Search by action name or log content
- Filter by time range
Access via Console → Project → Workspace → App Builder Logs. For longer retention, configure log forwarding to Splunk, Azure, or New Relic.
CDN Management
A new CDN page in Developer Console for managing your CDN settings:
- View your CDN URL and deployment info
- See the last deployer and timestamp
- Enable or disable caching with one click
- Invalidate the cache directly from the UI
Access via Console → Project → Workspace → App Builder CDN. See the CDN overview for details.
User Action Required
None — these features are available automatically in Developer Console.
February 3–5, 2026
@adobe/aio-lib-web 7.1.1, @adobe/aio-cli-plugin-app 14.4.2, @adobe/aio-cli-plugin-console 5.1.0 & @adobe/aio-cli-plugin-runtime 8.1.0
Bug Fixes
- aio-lib-web: Fixed a long-standing issue where static HTML files in subfolders were unreachable when deployed from Windows machines
- aio-cli-plugin-app: Fixed
aio app installto fall back tonpm installwhennpm cifails due to an out-of-sync lockfile in packages published before lockfile support was added - aio-cli-plugin-console: Fixed a
require() of ES Moduleerror - aio-cli-plugin-runtime: Fixed the
rtalias so it correctly displays help
Upgrade Instructions
To use the updates, reinstall the aio-cli:
npm install -g @adobe/aio-cli
Full release changes - aio-lib-web
Full release changes - aio-cli-plugin-app
Full release changes - aio-cli-plugin-console
Full release changes - aio-cli-plugin-runtime
January 2026
January 26, 2026
@adobe/aio-cli-plugin-app 14.4.0 & @adobe/aio-lib-console 5.5.0
New Features
- Validate app config by default in CLI app plugin
- Inherit secrets in prerelease workflow in CLI app plugin
- Append x-request-id header to error if present
Upgrade Instructions
To use the update, reinstall the aio-cli or update @adobe/aio-aio-lib-console to ^5.5 in your project's package.json.
Full release changes - aio-cli-plugin-app
Full release changes - aio-lib-console
December 2025
December 3, 2025
@adobe/aio-lib-ims-oauth 6.0.5
aio login on Windows issues: A patch release of a lib in the aio-cli fixes these login issues:
--no-openflag was not working (all OSes)- auto open of the login link in your default browser was not working (Windows Command Prompt and Windows PowerShell)
- any error in auto open will be captured, and the user will receive a warning to open the login link (which is logged into the console) manually in their browser
Full release changes - aio-lib-ims-oauth
To get the updates in the aio-cli, just reinstall the cli.
November 2025
November 27, 2025
@adobe/aio-lib-state 5.3.0 & @adobe/aio-cli-plugin-app-storage 1.2.0
New Features
- Added support for the new Australia (AUS) region for App Builder State
- Customers can now store state data in Australia for data residency and compliance requirements
- All state CLI commands now accept
--region ausflag - Available regions are now:
amer(US),emea(EU),apac(Japan), andaus(Australia)
Usage Examples
Library usage:
const state = await stateLib.init({ region: 'aus' })
CLI usage:
aio app state get mykey --region aus
Environment variable:
export AIO_STATE_REGION=aus
Upgrade Instructions
To use the update, reinstall the aio-cli or update @adobe/aio-lib-state to ^5.3.0 in your project's package.json.
Full release changes - aio-lib-state
Full release changes - aio-cli-plugin-app-storage
November 22, 2025
@adobe/aio-lib-state 5.2.0 & @adobe/aio-lib-core-networking 5.1.0
New Features
- Added
logRetryAfterSecondsoption to both libraries (defaults to 10 seconds) - When a network call is throttled with a
429response and theRetry-Afterheader exceeds this value, it will log the retry as a warning - This helps surface when you might be exceeding State service usage limits due to throttling
- Previously, retries were only logged when logging level was set to
debug - Set
logRetryAfterSecondsto0to disable this behavior
Upgrade Instructions
Update the respective dependencies in your projects to the appropriate versions above to enable this feature.
Full release changes - aio-lib-state
Full release changes - aio-lib-core-networking
November 18, 2025
@adobe/aio-lib-runtime 7.2.0
New Features
- Added Node.js 24 runtime support to App Builder Stage environment
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli:
npm install -g @adobe/aio-cli
November 18, 2025
@adobe/aio-cli 11.0.1
Bug Fixes
- Fixed warnings and issues when upgrading to use Node.js v24
Upgrade Instructions
Install the cli via:
npm install -g @adobe/aio-cli
November 18, 2025
@adobe/aio-lib-templates 3.0.4 & @adobe/aio-cli-plugin-telemetry 2.0.3
Bug Fixes
- Fixed proxy issues with telemetry and template listing
- When using
aio app init, telemetry and template listing was not going through a configured proxy properly - Was not connecting via SSL CONNECT as expected
Upgrade Instructions
To get the updates in the aio-cli, just reinstall the cli.
Full release changes - aio-lib-templates
Full release changes - aio-cli-plugin-telemetry
October 2025
October 7, 2025
@adobe/aio-lib-runtime 7.1.8
Bug Fixes
- Fixed proxy SSL CONNECT issues with openwhisk library
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli:
npm install -g @adobe/aio-cli
October 6, 2025
@adobe/aio-cli-plugin-app 14.3.0
New Features
aio app packnow includes apackage-lock.jsonfile by default to ensure reproducibility and security of packaged App Builder applicationsaio app installnow usesnpm ciwhen a lockfile is present- New
--[no]-lock-fileflag foraio app pack(default true) to control lockfile inclusion - New
--[no]-allow-scriptsflag foraio app install(default true) to control post and preinstall scripts
Upgrade Instructions
To update in the aio-cli, just reinstall the cli if you are on aio-cli@11.x. If you are not on aio-cli v11 or greater, you need to install the @adobe/aio-cli-plugin-app@14.3.0 plugin explicitly.
October 1, 2025
App Builder Provisioner Service 3.1.0
Improvements
- Minor feature enhancements to the provisioning service
User Action Required
No user action is needed, all future installs will use the new version of the service.
September 2025
September 30, 2025
@adobe/aio-lib-runtime 7.1.7
Bug Fixes
- Fixed a TypeError that occurred during deployment when attempting to read the 'length' property of an undefined object
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli:
npm install -g @adobe/aio-cli
September 22, 2025
App Builder Delete Service 2.0.4
Bug Fixes & Security
- Bug fixes and security enhancements
User Action Required
No user action is needed, all future delete-related requests will use the new version of the service.
September 15, 2025
App Builder Provisioner Service 2.1.1
Security
- Security enhancements
User Action Required
No user action is needed to upgrade, all future installs will use the new version of the service.
September 11, 2025
App Builder Delete Service 2.0.3
Security
- Security enhancements
User Action Required
No user action is needed, all future delete-related requests will use the new version of the service.
September 8, 2025
@adobe/aio-cli-plugin-app 14.2.0
New Features
- Unhid the
--projectand--orgflags foraio app init - Added new
--template-optionsflag (paired with--template) to facilitate non-interactive project creation - These features are useful for MCP scenarios and when already logged in with technical account credentials
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli if you are on aio-cli@11.x. If you are not on aio-cli v11 or greater, you need to install the @adobe/aio-cli-plugin-app@14.2.0 plugin explicitly.
September 8, 2025
@adobe/aio-lib-web 7.0.6
Bug Fixes
- Fixed network timeout issue when deploying web assets
- A third-party library was timing out if the handshake with AWS S3 Server (us-east-1) took longer than 1000ms
- This issue especially affected deployments from locations far from us-east-1 or when using VPN
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli.
September 5, 2025
CDN Infrastructure Improvements
Infrastructure Enhancements
We've successfully implemented a new generation of CDN infrastructure that includes advanced caching mechanisms and compression. These improvements are now live in staging and production, resulting in significant improvements in Lighthouse performance scores across applications. The best part? These improvements happen automatically without requiring any changes from developers.
User Action Required
None - improvements are automatic
September 4, 2025
App Builder Provisioner Service 2.1.0
Bug Fixes
- Fixed an issue where App Builder packages with dependencies that installed temporary files (i.e. in
/tmp) could not be installed due to permissions issues
User Action Required
No user action is needed to upgrade, all future installs will use the new version of the service.
September 3, 2025
@adobe/aio-lib-web 7.0.5
Bug Fixes
- Fixed proxy issue where deploying web assets was not going through the proxy if specified (when uploading website assets to Amazon S3)
Upgrade Instructions
To use the update in the aio-cli, just reinstall the cli.
Getting Help
If you have questions or need assistance with any of the changes in these release notes, please visit the Community page or consult the FAQ.