From 287a1a86cd7e6a51a897aa93193aa26852a28985 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sat, 1 Feb 2020 20:02:50 +0200 Subject: [PATCH] chore: release 1.1.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- index.ts | 4 ++-- package.json | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b8edc4..032ee73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 1.1.0 - 2020-02-01 +- fix #136: upgrade targaryen to 3.1.0 +- fix #142: respond with null instead of {} for empty path +- docs #140: Add global test hooks example to README.md +- chore(deps): upgrade ws to 7.x +- chore(deps): bump firebase from 6.0.1 to 7.2.3 +- chore(deps): bump mixin-deep from 1.3.1 to 1.3.2 +- chore(deps): bump handlebars from 4.0.11 to 4.5.1 +- chore(deps): bump lodash from 4.17.10 to 4.17.13 +- chore(deps): bump extend from 3.0.1 to 3.0.2 +- chore(deps): bump js-yaml from 3.11.0 to 3.13.1 + ## 1.0.2 - 2019-05-08 - fix #138: security vulnerability affecting `jwt-simple` package diff --git a/README.md b/README.md index 07da86a..cf8128f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ firebase-server Firebase Web Socket Protocol Server. Useful for emulating the Firebase server in tests. -Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, Uri Shaked and contributors +Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, Uri Shaked and contributors [![Build Status](https://travis-ci.org/urish/firebase-server.png?branch=master)](https://travis-ci.org/urish/firebase-server) [![Coverage Status](https://coveralls.io/repos/urish/firebase-server/badge.png)](https://coveralls.io/r/urish/firebase-server) diff --git a/index.ts b/index.ts index 6affb73..5a43904 100644 --- a/index.ts +++ b/index.ts @@ -1,7 +1,7 @@ /* - * firebase-server 1.0.2 + * firebase-server 1.1.0 * License: MIT. - * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, Uri Shaked and contributors. + * Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, Uri Shaked and contributors. */ import * as debug from 'debug'; diff --git a/package.json b/package.json index 0a918a0..521c1bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "firebase-server", - "version": "1.0.2", + "version": "1.1.0", "description": "Simple Firebase Server", "main": "dist/index.js", "typings": "dist/index.d.ts",