File tree 10 files changed +411
-700
lines changed
10 files changed +411
-700
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,24 @@ Good to have: commit or PR links.
22
22
23
23
-->
24
24
25
+ ## v0.8.0-beta [ #75 ] ( https://github.com/interviewstreet/firepad-x/pull/75 )
26
+
27
+ ### Changed
28
+
29
+ - Upgrade firebase to v8
30
+
31
+ ## v0.7.4-beta [ #73 ] ( https://github.com/interviewstreet/firepad-x/pull/73 )
32
+
33
+ ### Added
34
+
35
+ - ` console.error() ` for all catch blocks to send events to error tracking service
36
+
37
+ ## v0.7.1-beta [ #68 ] ( https://github.com/interviewstreet/firepad-x/pull/68 )
38
+
39
+ ### Added
40
+
41
+ - Firestore as Database adapter to allow code sync via firestore
42
+
25
43
## v0.4.1-beta
26
44
27
45
No Changes
@@ -30,11 +48,11 @@ No Changes
30
48
31
49
### Changed
32
50
33
- - Fix a bug monaco-adapter/_ operationFromMonacoChange function
51
+ - Fix a bug monaco-adapter/\ _ operationFromMonacoChange function
34
52
- Revert https://github.com/interviewstreet/firepad-x/commit/2aebf79871d3fc9bf21e9b056a0faa60c6da0b3a
35
53
- Revert https://github.com/interviewstreet/firepad-x/commit/a12177892c692b44c106d60f2819fbf7f1094f22
36
54
- No breaking change on external APIs.
37
- - Revert to firebase v7.12.0 (https://github.com/interviewstreet/firepad-x/commit/03910ce475e04ddcab2e683877f579bfcbd32d91 ).
55
+ - Revert to firebase v7.12.0 (https://github.com/interviewstreet/firepad-x/commit/03910ce475e04ddcab2e683877f579bfcbd32d91 ).
38
56
39
57
## v0.3.1 [ #44 ] ( https://github.com/interviewstreet/firepad-x/pull/44 )
40
58
Original file line number Diff line number Diff line change 1
1
import * as monaco from "monaco-editor" ;
2
- import * as firebase from "firebase/app" ;
2
+ import firebase from "firebase/app" ;
3
3
import "firebase/database" ;
4
4
import "firebase/firestore" ;
5
5
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @hackerrank/firepad" ,
3
3
"description" : " Collaborative text editing powered by Firebase" ,
4
- "version" : " 0.7.4 -beta" ,
4
+ "version" : " 0.8.0 -beta" ,
5
5
"author" : {
6
6
7
7
"name" : " Progyan Bhattacharya" ,
54
54
"node" : " >= 10.17.0"
55
55
},
56
56
"peerDependencies" : {
57
- "firebase" : " 7.12.0 " ,
57
+ "firebase" : " 8.10.1 " ,
58
58
"monaco-editor" : " 0.18.1"
59
59
},
60
60
"dependencies" : {
73
73
"child-process-promise" : " 2.2.1" ,
74
74
"core-js" : " 3.11.0" ,
75
75
"css-loader" : " 5.2.4" ,
76
- "firebase" : " 7.12.0 " ,
76
+ "firebase" : " 8.10.1 " ,
77
77
"git-format-staged" : " 2.1.1" ,
78
78
"husky" : " ^7.0.0" ,
79
79
"jest" : " 27.0.3" ,
Original file line number Diff line number Diff line change 1
1
import "firebase/database" ;
2
2
3
- import * as firebase from "firebase/app" ;
3
+ import firebase from "firebase/app" ;
4
4
5
5
import { CursorType , ICursor } from "./cursor" ;
6
6
import {
Original file line number Diff line number Diff line change 1
- import * as Firebase from "firebase" ;
1
+ import firebase from "firebase" ;
2
2
3
3
import * as monaco from "monaco-editor" ;
4
4
@@ -50,7 +50,7 @@ export default class FirepadClassic implements IFirepad {
50
50
* @param options - Firepad constructor options (optional).
51
51
*/
52
52
constructor (
53
- databaseRef : Firebase . database . Reference ,
53
+ databaseRef : firebase . database . Reference ,
54
54
editor : monaco . editor . IStandaloneCodeEditor ,
55
55
options : IFirepadClassicConstructorOptions = { }
56
56
) {
@@ -224,7 +224,7 @@ export default class FirepadClassic implements IFirepad {
224
224
* @param options - Firepad constructor options (optional).
225
225
*/
226
226
static fromMonaco (
227
- databaseRef : Firebase . database . Reference ,
227
+ databaseRef : firebase . database . Reference ,
228
228
editor : monaco . editor . IStandaloneCodeEditor ,
229
229
options ?: IFirepadClassicConstructorOptions
230
230
) {
Original file line number Diff line number Diff line change 1
1
import * as monaco from "monaco-editor" ;
2
2
import { v4 as uuid } from "uuid" ;
3
- import * as firebase from "firebase/app" ;
3
+ import firebase from "firebase/app" ;
4
4
5
5
import { IDatabaseAdapter , UserIDType } from "./database-adapter" ;
6
6
import { FirebaseAdapter } from "./firebase-adapter" ;
Original file line number Diff line number Diff line change 1
1
import "firebase/database" ;
2
2
3
- import * as firebase from "firebase/app" ;
3
+ import firebase from "firebase/app" ;
4
4
5
5
import { CursorType , ICursor } from "./cursor" ;
6
6
import {
Original file line number Diff line number Diff line change 1
- import * as firebase from "firebase/app" ;
1
+ import firebase from "firebase/app" ;
2
2
import { ICursor } from "../../src/cursor" ;
3
3
import {
4
4
DatabaseAdapterCallbackType ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { editor } from "monaco-editor";
2
2
import { fromMonaco } from "../src/firepad-monaco" ;
3
3
import { getDatabaseAdapter , getEditorAdapter } from "./factory" ;
4
4
import { getMonacoEditor } from "./factory/monaco-editor.factory" ;
5
- import * as firebase from "firebase/app" ;
5
+ import firebase from "firebase/app" ;
6
6
7
7
jest . mock ( "../src/firebase-adapter" , ( ) => {
8
8
const { getDatabaseAdapter } = require ( "./factory/database-adapter.factory" ) ;
You can’t perform that action at this time.
0 commit comments