From 2131680374916f6ad98a6a619b24870b363fcd88 Mon Sep 17 00:00:00 2001 From: Jan Christoph Ebersbach Date: Fri, 31 May 2024 18:05:32 +0200 Subject: [PATCH] Release version 0.3.0 --- CHANGELOG.md | 27 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- docs/public/openapi.yaml | 2 +- .../content/docs/deployment/self-hosting.md | 2 +- docs/src/content/docs/getting-started.md | 2 +- manifest.json | 2 +- 7 files changed, 33 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9799add..4dec0ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,33 @@ All notable changes to this project will be documented in this file. +## [0.3.0] - 2024-05-31 + +### Added Features + +- [f91cfd5](https://github.com/identinet/did-web-server/commit/f91cfd5a47332a1e7fb70969a4104c35804d81f6) Create leading directories before storing DID document + +### Bug Fixes + +- [**breaking**] [14ae074](https://github.com/identinet/did-web-server/commit/14ae0745393a8bcf4c10897f38d790cd9c2402ad) Revert back to default port 8000 +- [**breaking**] [7b6957c](https://github.com/identinet/did-web-server/commit/7b6957cfe5b5d37309acd0873bd42ba5f693a9c0) Require proof purpose "authentication" +- [**breaking**] [ae7cd08](https://github.com/identinet/did-web-server/commit/ae7cd0874ada927759c26ee4d38946a613f0c68d) Change support characters in path segments/identifier +- [862206e](https://github.com/identinet/did-web-server/commit/862206e9aeb1d4364d50f0cb6a7de46eb7fe5135) Correct compiler warning +- [c5cf1a7](https://github.com/identinet/did-web-server/commit/c5cf1a704f6adc19a54138f54bce7d3e9212dc53) Enable TLS functionality + +### Documentation + +- [8ddfcac](https://github.com/identinet/did-web-server/commit/8ddfcacfb058f8bb5e211f8dcba109d7a27dccce) Correct rocket linke in the configuration section +- [eddd7e0](https://github.com/identinet/did-web-server/commit/eddd7e09cfbfeff702d1380453e46edf488e9716) Optimize configuration descriptions +- [2b97a4a](https://github.com/identinet/did-web-server/commit/2b97a4a2167d7b40a8c8b98e2e2ac1c1846bdf38) Add DID management documentation +- [c48d3c9](https://github.com/identinet/did-web-server/commit/c48d3c999f40009da6fd6dcc42a06c989491a0d9) Correct typos + +### Miscellaneous Tasks + +- [728292a](https://github.com/identinet/did-web-server/commit/728292ad0db90ce3891e7a9a4a11dabd2d762128) Update rocket dependency +- [a7bcdf5](https://github.com/identinet/did-web-server/commit/a7bcdf571c2807624a82e0fbf9373c246a1d26e0) Make error messages more expressive +- [4627a3d](https://github.com/identinet/did-web-server/commit/4627a3dac0fd2fcfa23c990e90c23141274d767e) Print DIDs found in submitted document + ## [0.2.0] - 2024-05-30 ### Added Features diff --git a/Cargo.lock b/Cargo.lock index 536152f..df5289e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1082,7 +1082,7 @@ dependencies = [ [[package]] name = "did-web-server" -version = "0.2.0" +version = "0.3.0" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 66be8b1..942f589 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,4 +59,4 @@ homepage = "https://github.com/identinet/did-web-server" keywords = ["ssi", "did", "http"] name = "did-web-server" repository = "https://github.com/identinet/did-web-server" -version = "0.2.0" +version = "0.3.0" \ No newline at end of file diff --git a/docs/public/openapi.yaml b/docs/public/openapi.yaml index 0a6cefe..562cd91 100644 --- a/docs/public/openapi.yaml +++ b/docs/public/openapi.yaml @@ -6,7 +6,7 @@ # HTTP methods: https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods openapi: 3.1.0 info: - version: "0.2.0" + version: "0.3.0" title: did-web-server API documentation description: | This is the Open API specification for [did-web-server](https://dws.identinet.io). diff --git a/docs/src/content/docs/deployment/self-hosting.md b/docs/src/content/docs/deployment/self-hosting.md index d57a2fe..8ad3261 100644 --- a/docs/src/content/docs/deployment/self-hosting.md +++ b/docs/src/content/docs/deployment/self-hosting.md @@ -64,7 +64,7 @@ DWS_TLS={certs="example.com.pem",key="example.com-key.pem"} 2. With the updated configuration in place, let's restart the server: ```bash -docker run -it --rm -p 8000:443 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.2.0 +docker run -it --rm -p 8000:443 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.3.0 ``` ### Test Functionality diff --git a/docs/src/content/docs/getting-started.md b/docs/src/content/docs/getting-started.md index 9d59f0e..5dc612b 100644 --- a/docs/src/content/docs/getting-started.md +++ b/docs/src/content/docs/getting-started.md @@ -57,7 +57,7 @@ With the configuration in place, it is time to start the server. Execute the fol the current directory. Newly created DIDs will be stored in the `./did_store` directory: ```bash -docker run -it --rm -p 8000:8000 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.2.0 +docker run -it --rm -p 8000:8000 --env-file .env -u "$(id -u):$(id -g)" -v "$PWD:/run/dws" identinet/did-web-server:0.3.0 ``` ## Create the first did:web DID diff --git a/manifest.json b/manifest.json index a672509..cd1a1d6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "did-web-server", - "version": "0.2.0", + "version": "0.3.0", "description": "Docker image that packages did-web-server", "author": "identinet GmbH ", "contributors":