Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Releases: sst/ion

v0.0.300

23 Apr 16:54
Compare
Choose a tag to compare

Changelog

v0.0.299

23 Apr 16:51
Compare
Choose a tag to compare

Changelog

v0.0.298

22 Apr 13:53
Compare
Choose a tag to compare

Changelog

v0.0.297

22 Apr 05:25
Compare
Choose a tag to compare

Changelog

v0.0.296

17 Apr 00:16
Compare
Choose a tag to compare

DNS Adapters

Many users have asked, "Can I use my domain that's not hosted on Route 53?" In the past, migrating the domain's DNS to Route 53 was necessary.

With this release, we introduce Domain DNS Adapters, enabling SST to manage DNS records with your domain provider.

Below is an example of configuring a Cloudflare domain for a Next.js site deployed to AWS:

new sst.aws.Nextjs("Web", {
  domain: {
    name: "my-cloudflare-domain.com",
    dns: sst.cloudflare.dns(),
  }
});

We are launching with 3 adapters:

Breaking Changes

  1. domain.domainName has been renamed to domain.name in SSR Site, Router, and ApiGatewayV1 components. For example:

    // change from
    {
      domain: {
        domainName: "example.com",
      },
    }
    // to
    {
      domain: {
        name: "example.com",
      },
    }
  2. domain.hostedZoneId has been replaced with domain.dns in SSR Site, Router, and ApiGatewayV1 components. For example:

    // change from
    {
      domain: {
        hostedZoneId: "Z3FDTNDATAQYW2",
      },
    }
    // to
    {
      domain: {
        dns: sst.aws.dns({ zone: "Z3FDTNDATAQYW2" }),
      },
    }
  3. On deployment, if you encounter the error:

    Record: InvalidChangeBatch: [Tried to create resource record set [name='xxxxxxxx', type='yyyyyyyy'] but it already exists]
    

    Remove the indicated DNS record from your AWS Route 53 Console.

Changelog

v0.0.295

15 Apr 02:36
Compare
Choose a tag to compare

Changelog

  • 5122e97 print error if sst dev target command is wrong

v0.0.294

15 Apr 02:32
Compare
Choose a tag to compare

Changelog

  • 4489509 file watcher performance improvements

v0.0.293

14 Apr 23:48
Compare
Choose a tag to compare

Changelog

  • b59a1b2 Docs remove chaining from quick start
  • 4b1eb27 Docs static site locally
  • 16dacdf display esbuild errors properly
  • 380fbd0 formatting nonsense
  • b904601 get rid of lock files in examples
  • 988f62f ignore .git folder for file watcher
  • 1e8f253 improve aws monorepo
  • 3391888 improve bucket doc

v0.0.292

12 Apr 15:56
Compare
Choose a tag to compare

Changelog

  • 6b5d72d cleanup examples
  • 9f40c09 monorepo example
  • 6f171a3 pin string-width version to avoid flaky bun error

v0.0.291

12 Apr 02:39
Compare
Choose a tag to compare

Changelog