Skip to content

v0.7.20

Compare
Choose a tag to compare
@fukaoi fukaoi released this 10 Jul 08:57
· 17 commits to main since this release

What's Changed

Full Changelog: v0.7.19...v0.7.20

Changelog Filebase

  • f you are using a custom account, please log in to the Filebase Console and manually set up the bucket. The bucket name is solana-suite.

  • cors policy example json

{
  "CORSRules": [
    {
      "AllowedHeaders": [
        "*"
      ],
      "AllowedMethods": [
        "GET",
        "PUT",
        "POST",
        "DELETE",
        "HEAD"
      ],
      "AllowedOrigins": [
        "*"
      ],
      "ExposeHeaders": [
        "x-amz-request-id",
        "x-amz-meta-cid",
        "x-amz-meta-custom-header"
      ],
      "MaxAgeSeconds": 3000
    }
  ]
}