-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Changelog dec 15 / fix API error doc links (#691)
* Add changelog * Fix error URL in API * Add a call out * move callout
- Loading branch information
Showing
6 changed files
with
72 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
title: Unkey is faster, we have improved analytics, and a new billing page | ||
date: 2023-12-15, | ||
description: We've been working on improvements to the Unkey dashboard. We also moved the Unkey API to Cloudlfare workers. | ||
--- | ||
|
||
Welcome to the Unkey changelog for Decemeber 15th, 2023. The last two weeks have been busy with some core changes to the Unkey product. | ||
|
||
### Improved Analytics | ||
|
||
Analytics are now more detailed and easier to understand. We added a new chart that shows the number of active keys for your API and allows you to set a timeframe. | ||
|
||
|
||
![Analytics](/images/changelog/2023-12-15/verifications.png) | ||
|
||
![Active keys](/images/changelog/2023-12-15/active-keys.png) | ||
|
||
|
||
### We moved to Cloudflare | ||
|
||
Unkey's API has been on Fly.io since we launched in June. We've been reasonably happy with its performance, but we wanted to move to a more reliable and faster platform. We decided to move to Cloudflare Workers, a serverless platform on Cloudflare's edge network. After this change, Unkey's API runs on 300+ data centers worldwide, making it faster and more reliable. You can check out the new [API code in our repository](https://github.com/unkeyed/unkey/tree/main/apps/api) to see how we made the changes from Go to Typescript using Hono | ||
|
||
|
||
Below is a chart of our latency at P95. Can you tell when we moved to CF? | ||
|
||
![P95 results](/images/changelog/2023-12-15/speed.png) | ||
|
||
|
||
### New billing page | ||
|
||
We added a brand new billing page to the dashboard. Previously, you could change your plan and see your current usage. Now, you can see your billing history, change your payment method, and see your current billing cycle. My favorite part is that you can now see a projected forecast of your usage for the month and a projected bill. | ||
|
||
![Billing page](/images/changelog/2023-12-15/billing.png) | ||
|
||
|
||
### RPC methods | ||
|
||
With the move to Cloudflare workers, we decided to move to RPC methods. RPC makes it extremely easy to version our API and follow a standard. | ||
|
||
> Note: We will continue to support the old API for the next few months. We will send out a deprecation notice before we remove the old API. | ||
|
||
All our RPC methods are now in the format: | ||
|
||
``` | ||
https://api.unkey.dev/{version}/{service}.{method} | ||
``` | ||
|
||
Below are a couple of examples of RPC methods: one is a GET request, and the other is a POST request. | ||
|
||
``` | ||
curl "https://api.unkey.dev/v1/keys.getKey?keyId=key_123" \ | ||
-H "Authorization: Bearer <ROOT_KEY>" | ||
``` | ||
---------------- | ||
``` | ||
curl -XPOST "https://api.unkey.dev/v1/keys.createKey" \ | ||
-H "Authorization: Bearer <ROOT_KEY>" \ | ||
-H "Content-Type: application/json" \ | ||
-d '{"apiId": "api_123", "name": "My Key"}' | ||
``` | ||
|
||
|
||
### Content you might have missed | ||
|
||
[UX of UUIDs](https://unkey.dev/blog/uuid-ux): Andreas wrote an article on the UX of UUIDs and how some minor tweaks can make a big difference in the user experience. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
eaa61ae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
web – ./apps/web
web-git-main-unkey.vercel.app
web-unkey.vercel.app
unkey.dev
www.unkey.dev
unkey-web-lac.vercel.app