Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/tame-wasps-add.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @magicserver/magicserver

## 0.1.0

### Minor Changes

- [#1](https://github.com/magicserverjs/magicserver/pull/1) [`1bc20d3`](https://github.com/magicserverjs/magicserver/commit/1bc20d36a5df7780b0e10752ddb39bc78ec5735a) Thanks [@lilnasy](https://github.com/lilnasy)! - Implements automatic renewal of certificates. A new certificate is requested when the current has reach two-thirds of its lifetime. For a 90 day certificate (Let's Encrypt default), renewal will take place on the 60th day of issuance. The certificate is updated without impacting the availability of the application; established connections remain functional.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ const server = createMagicServer("example.com", (req, res) => {

Here, `createMagicServer()` requests a certificate for "example.com" from Let's Encrypt, verifies ownership of the domain, and finally starts an HTTPS server that responds with "Hello, world!".

To learn more about how to use magicserver, please review our [documentation](https://magicserver.arsh.sh/docs).

## Features
- **Easy configuration** with best-practice defaults that just work.
- **Enterprise-ready** with flexibility to use a custom CA for internal names.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@magicserver/magicserver",
"version": "0.0.0",
"version": "0.1.0",
"description": "Automatic HTTPS for any Node.js application. Fully managed TLS certificate issuance and renewal.",
"license": "MIT",
"author": {
Expand Down