Skip to content

Commit

Permalink
Release 1.5.5 (#185)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
lbguilherme and dependabot[bot] committed Feb 22, 2021
1 parent 9c54436 commit 7d33f13
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/releases.md
@@ -1,5 +1,10 @@
# Releases

## 1.5.5 (2021-02-22)

**Correções:**
- Correção no carregamento do `/playground` por conta de regressão causada pela versão 1.5.4 ([#184](https://github.com/sdkgen/sdkgen/pull/184)).

## 1.5.4 (2021-02-19)

**Correções:**
Expand Down
2 changes: 1 addition & 1 deletion node-runtime/package.json
Expand Up @@ -34,7 +34,7 @@
"@typescript-eslint/parser": "^4.4.1",
"axios": "^0.21.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.1.2",
"form-data": "^4.0.0",
"jest": "^26.5.3",
Expand Down
2 changes: 1 addition & 1 deletion node-runtime/src/http-server.ts
Expand Up @@ -111,7 +111,7 @@ export class SdkgenHttpServer<ExtraContextT = unknown> {
res.end();
});

this.addHttpHandler("GET", /^\/playground/u, (req, res) => {
this.addHttpHandler("GET", /^\/playground.*/u, (req, res) => {
if (!this.introspection) {
res.statusCode = 404;
res.end();
Expand Down

0 comments on commit 7d33f13

Please sign in to comment.