| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.5.31 source code.tar.gz | 2026-07-07 | 3.0 MB | |
| 1.5.31 source code.zip | 2026-07-07 | 4.3 MB | |
| README.md | 2026-07-07 | 8.3 kB | |
| Totals: 3 Items | 7.3 MB | 0 | |
π Highlights
This release brings CloudWatch Logs Insights, adds RDS Data API for PostgreSQL, introduces RDS mock mode and read-only Cloud Control APIs, and lands substantial persistence and performance work. Lambda cold starts speed up with read-only code mounting, and multiple services join the durable-state family. Welcome to the 2 first-time contributors.
π CloudWatch Logs Insights
Logs Insights query support lands (#1448), enabling local execution of the query DSL for log analysis workflows. This closes one of the more requested CloudWatch Logs gaps.
π RDS Data API for PostgreSQL
The RDS Data API now supports PostgreSQL (#1720), extending the MySQL-backed Data API added in 1.5.25. Serverless SQL workflows against both engines now work locally.
π RDS mock mode
Mock mode for RDS lets clusters and instances be created without Docker (#1655). Useful for CI environments that don't have Docker-in-Docker, or for fast unit-style tests where the real engine isn't needed.
π Cloud Control API
list_resources from local services now works via the Cloud Control API (#1602), and read-only describe/list APIs for resource collection are broadly implemented (#1581). Combined with the Steampipe support in 1.5.28, tools that use unified resource-discovery APIs against AWS can now target Floci.
πΎ Persistence expansion
Three more services join the durable-state family:
- Elastic Beanstalk: applications, versions, and environments persist across restart (#1729)
- Lambda: version counters and event-invoke configs persist (#1730)
- API Gateway: API key tags persist, plus
GetApiKeyroute (#1677)
π Lambda cold-start performance
Lambda cold starts get meaningfully faster: function code now mounts from a read-only volume rather than being copied per cold start (#1673). Combined with the base64 round-trip removal in 1.5.30, Lambda's warm-up story is significantly improved.
π₯οΈ EC2: image and metadata catalogs
Two coordinated EC2 improvements from @jvanzyl:
- Instance metadata catalog with architecture parity (#1596)
- Registered images and snapshots support (#1601)
Real IaC that references specific instance types or manages custom AMIs behaves much closer to actual AWS.
π¨ EventBridge to Firehose
EventBridge can now deliver events to Firehose delivery stream targets (#1739), closing an integration gap for event-streaming architectures that fan out to analytics pipelines.
π§© Step Functions extensions
Two more Step Functions capabilities land:
MapItemReaderfor S3-backed JSON datasets (#1588), enabling large-scale distributed map patterns- Qualified Lambda function ARNs resolved in
lambda:invoke(#1660)
π Docs: auto-generated Supported Actions
Documentation now generates Supported Actions tables from handler source (#1641). Drift between docs and code is structurally addressed, so the service pages stay accurate as new actions land.
β¨ New Features
CloudWatch / RDS Data / Cloud Control
- feat(cloudwatch): add Logs Insights query support by @beytullah-gunduz in https://github.com/floci-io/floci/pull/1448
- feat(rds-data): add Data API for PostgreSQL by @QAnders in https://github.com/floci-io/floci/pull/1720
- feat(rds): add mock mode to create clusters and instances without Docker by @dnlopes in https://github.com/floci-io/floci/pull/1655
- feat(cloudcontrol): list resources from local services by @jvanzyl in https://github.com/floci-io/floci/pull/1602
- feat(read-apis): implement read-only describe / list APIs for resource collection by @Abhi011999 in https://github.com/floci-io/floci/pull/1581
EC2 / EventBridge / Scheduler / CloudFormation
- feat(ec2): add instance metadata catalog and architecture parity by @jvanzyl in https://github.com/floci-io/floci/pull/1596
- feat(ec2): support registered images and snapshots by @jvanzyl in https://github.com/floci-io/floci/pull/1601
- feat(eventbridge): deliver events to Firehose delivery stream targets by @hectorvent in https://github.com/floci-io/floci/pull/1739
- feat(scheduler): dispatch ECS targets to
RunTaskby @jvanzyl in https://github.com/floci-io/floci/pull/1733 - feat(cloudformation): apply S3 Bucket
CorsConfigurationby @dixitrathod16 in https://github.com/floci-io/floci/pull/1617
Step Functions / Secrets Manager
- feat(stepfunctions): support
MapItemReaderfor S3-backed JSON datasets by @shrimptails-f in https://github.com/floci-io/floci/pull/1588 - feat(secretsmanager): support
Filtersand pagination inBatchGetSecretValueby @hectorvent in https://github.com/floci-io/floci/pull/1737
API Gateway
- feat(apigateway): persist API key tags and add
GetApiKeyroute by @awuzi in https://github.com/floci-io/floci/pull/1677
Core / Docs
- feat(core): claim wire protocols reactively per Smithy selection guide by @hectorvent in https://github.com/floci-io/floci/pull/1712
- feat(docs): generate Supported Actions tables from handler source by @hampsterx in https://github.com/floci-io/floci/pull/1641
π Bug Fixes
Persistence
- fix(elasticbeanstalk): persist applications, versions, and environments across restart by @hectorvent in https://github.com/floci-io/floci/pull/1729
- fix(lambda): persist version counters and event-invoke configs across restart by @hectorvent in https://github.com/floci-io/floci/pull/1730
RDS / Auto Scaling / EC2 / EKS
- fix(rds): resolve tags by ARN resource type, not only DB instances by @dnlopes in https://github.com/floci-io/floci/pull/1649
- fix(rds): improve Postgres proxy startup parity by @jvanzyl in https://github.com/floci-io/floci/pull/1599
- fix(autoscaling): align active instance refresh behavior by @jvanzyl in https://github.com/floci-io/floci/pull/1598
- fix(ec2): honor launch template default version updates by @jvanzyl in https://github.com/floci-io/floci/pull/1704
- fix(eks): let pods pull images pushed to the Floci ECR registry by @hectorvent in https://github.com/floci-io/floci/pull/1762
SQS / S3 / Step Functions
- fix(sqs): render Query-protocol errors as XML instead of leaking JSON by @hectorvent in https://github.com/floci-io/floci/pull/1732
- fix(sqs): honor queue-level
DelaySecondsfor standard SQS queues by @Croway in https://github.com/floci-io/floci/pull/1567 - fix(s3): fix
CopyObject(issue [#1560]) by @kapoorp99 in https://github.com/floci-io/floci/pull/1670 - fix(stepfunctions): resolve qualified Lambda function ARNs in
lambda:invokeby @abanna in https://github.com/floci-io/floci/pull/1660
CloudWatch / EMR / Storage / Docker
- fix(cloudwatch): return
ResourceNotFoundforSetAlarmStateon missing alarm by @mvanhorn in https://github.com/floci-io/floci/pull/1621 - fix(emr): return AWS client-error codes instead of 500
InternalServerErrorby @hectorvent in https://github.com/floci-io/floci/pull/1731 - fix(storage): make
computeIfAbsentatomic by @jvanzyl in https://github.com/floci-io/floci/pull/1699 - fix(docker): isolate managed resource containers by @jvanzyl in https://github.com/floci-io/floci/pull/1703
π Performance
- perf(lambda): mount function code from a read-only volume instead of copying per cold start by @abanna in https://github.com/floci-io/floci/pull/1673
π§° Tests
- test(ec2): filter default VPC / subnet lookups to fix flaky
describeDefaultVpcby @okinaka in https://github.com/floci-io/floci/pull/1726 - chore(glue): fix
GlueJsonHandlerEmptyListTestcompile on main by @hectorvent in https://github.com/floci-io/floci/pull/1764
π Documentation
- docs: adding sponsor section by @hectorvent in https://github.com/floci-io/floci/pull/1724
π New Contributors
A warm welcome to everyone making their first contribution to Floci:
- @QAnders in https://github.com/floci-io/floci/pull/1720
- @awuzi in https://github.com/floci-io/floci/pull/1677
Full Changelog: https://github.com/floci-io/floci/compare/1.5.30...1.5.31