When upgrading to minio@^8, I noticed a type error: The LifecycleRule type has no property Filter, instead, it has a RuleFilter property. However, after renaming it, the code stopped working:
S3Error: The XML you provided was not well-formed or did not validate against our published schema
I had the following (working) code using
minio@^7
:When upgrading to
minio@^8
, I noticed a type error: TheLifecycleRule
type has no propertyFilter
, instead, it has aRuleFilter
property. However, after renaming it, the code stopped working: