# Changelog December 9, 2022

##

$6.2m new funding, led by a16z

On November 30th, we announced $6.2m in new funding led by Martin Casado at Andreessen Horowitz, with continued participation from S28 Capital, Fathom Capital, and South Park Commons. This funding marks a significant milestone for Clerk. For the first time, we've raised based on the traction of our customers, who are simply blowing us away with their continued success.

You can read the [full blog post](https://clerk.com/blog/a16z-seed.md) from our CEO Colin.

## Support for Cloudflare workers

With the latest release of `@clerk/remix `we can now support Cloudflare workers, Cloudflare pages, Node, and Deno. This was a long-requested feature, and we are glad we can start supporting the runtime of your choice. To learn how to use experimental support, check out the [documentation](https://clerk.com/docs/quickstarts/get-started-with-remix.md#using-experimental-edge-runtimes).

## Localization improvements

### `@clerk/localizations`

We introduced a new open-source package this week called `@clerk/localizations` that allows you to import a language and use it in our components. If you have translated your Clerk components into another language, feel free to [open a PR](https://github.com/clerkinc/javascript/tree/main/packages/localizations) and hope the Clerk community.

```jsx
import { ClerkProvider } from '@clerk/nextjs'
import { frFR } from '@clerk/localizations'

function MyApp({ Component, pageProps }) {
  return (
    <ClerkProvider localization={frFR} {...pageProps}>
      <Component {...pageProps} />
    </ClerkProvider>
  )
}

export default MyApp
```

![Next.js integration example](./1e85fbb3aa4cdf9c6f36d4b34b5a5f5000bfc077-816x458.png)

## Datetime localization

As part of our localization effort, we also introduced Datetime localization, allowing you to present your user with the correct format based on their location. For example:

```jsx
dates: {
  previous6Days: "{{ date | weekday('fr-FR','long') | titleize }} dernier à {{ date | timeString('fr-FR') }}",
},
```

Thanks to the contributors: Nikos Douvlis, Stefanos Anagnostou

## Invite your team

The Clerk dashboard now supports organizations in the Dashboard, allowing you to invite team members who need access to the admin panel with a single click. We also give you a personal workspace for all those side projects you've been thinking of.

[View video](./48ee6e03ed8df6353ce9c27c6d6570ee5f4c1f87-860x584.mp4)

If you already have an application in your Dashboard that isn't attached to an organization but needs to be transferred, with a few clicks, you can transfer the ownership.

[View video](./f514fb8a33970b0df82ad4a31135b6392a7996a0-860x584.mp4)

## Sign in with Xero and Box.

We now support Box and Xero for social logins bringing our total to 20 supported providers! Check out our integration documentation if you are interested in [Box](https://clerk.com/docs/authentication/social-connection-with-box.md) or [Xero](https://clerk.com/docs/authentication/social-connection-with-xero.md).

## Community shoutout

A massive shoutout to our Discord member [David](https://github.com/dvargas92495) who created a [Terraform module](https://registry.terraform.io/modules/dvargas92495/clerk/aws/latest) that allows hook up your Clerk instance to AWS.

## How to keep up to date with Clerk?

The best way to keep up with Clerk is to subscribe to our newsletter. We send out updates every week. Updates include new features, what we have been working on, and blog posts you may have missed!

### Clerk Community Discord

Clerk has a community [Discord](https://clerk.com/discord). When you join, you will find a place:

- Find the latest Clerk news and announcements
- Share your project with the Clerk community, and talk about your experience
- Request features and gets help integrating Clerk from the team and community.

### Clerk Twitter

Our X account ([@clerk](https://x.com/clerk)) announces the latest features and improvements. We would also be psyched if you tagged us in projects you have built.
