Skip to content
This repository was archived by the owner on Mar 29, 2022. It is now read-only.

Commit dd1105e

Browse files
committed
chore: release 1.0.0-rc.0
1 parent b40d28a commit dd1105e

3 files changed

Lines changed: 13 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 1.0.0-rc.0 - 2018-05-20
4+
- Migrate project to TypeScript
5+
- Drop node 6.x support
6+
- Add `address()`, `getPort()` methods
7+
- `close()` method now returns a promise
8+
- Upgrade the Firebase JS Library to 5.x
9+
- Upgrade the `ws` library to 5.x
10+
- Split send payloads according to firebase's custom continuation format ([#115](https://github.com/urish/firebase-server/pull/115), contributed by [andrewparmet](https://github.com/andrewparmet))
11+
- Align 'now' in Targaryen with firebase-server time ([#112](https://github.com/urish/firebase-server/pull/112), contributed by [dotdoom](https://github.com/dotdoom))
12+
313
## 0.12.0 - 2017-11-16
414
- REST API support ([#95](https://github.com/urish/firebase-server/pull/95), contributed by [p-salido](https://github.com/p-salido))
515
- Daemonization option ([#111](https://github.com/urish/firebase-server/pull/111), contributed by [p-salido](https://github.com/p-salido))

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* firebase-server 0.12.0
2+
* firebase-server 1.0.0-rc.0
33
* License: MIT.
44
* Copyright (C) 2013, 2014, 2015, 2016, 2017, 2018 Uri Shaked and contributors.
55
*/

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
22
"name": "firebase-server",
3-
"version": "0.12.0",
3+
"version": "1.0.0-rc.0",
44
"description": "Simple Firebase Server",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",
77
"bin": "./bin/firebase-server.js",
88
"scripts": {
99
"build": "rimraf dist && tsc",
10+
"prepublish": "yarn build",
1011
"test": "yarn lint && yarn cover",
1112
"cover": "nyc mocha",
1213
"debug": "mocha",

0 commit comments

Comments
 (0)