File tree 4 files changed +15
-30
lines changed
4 files changed +15
-30
lines changed Original file line number Diff line number Diff line change @@ -6,37 +6,12 @@ node_js:
6
6
addons :
7
7
chrome : stable
8
8
9
- cache :
10
- yarn : true
11
- directories :
12
- - node_modules
13
- - " $HOME/.npm"
14
- - " $HOME/.cache"
15
-
16
- env :
17
- - CANARY=false
18
- - CANARY=true
19
-
20
- matrix :
21
- fast_finish : true
22
- allow_failures :
23
- - env : CANARY=true
24
-
25
9
branches :
26
10
only :
27
11
- master # otherwise pull requests get built twice
12
+ - v5
28
13
29
- install :
30
- - |
31
- if $CANARY; then
32
- yarn upgrade && yarn add firebase@canary
33
- else
34
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then
35
- yarn upgrade
36
- else
37
- yarn install --frozen-lockfile
38
- fi
39
- fi
14
+ install : yarn install --frozen-lockfile
40
15
41
16
script :
42
17
- yarn build
Original file line number Diff line number Diff line change
1
+ <a name =" 5.4.2 " ></a >
2
+ ## [ 5.4.2] ( https://github.com/angular/angularfire2/compare/5.4.1...5.4.2 ) (2020-02-06)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * ** core:** fixing a problem with hot/cold observables resulting in missed events ([ #2315 ] ( https://github.com/angular/angularfire2/issues/2315 ) ) ([ 6dd0409] ( https://github.com/angular/angularfire2/commit/6dd0409 ) )
8
+
9
+
1
10
<a name =" 5.4.1 " ></a >
2
11
## [ 5.4.1] ( https://github.com/angular/angularfire2/compare/5.4.0...5.4.1 ) (2020-02-05)
3
12
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular/fire" ,
3
- "version" : " 5.4.1 " ,
3
+ "version" : " 5.4.2 " ,
4
4
"description" : " The official library of Firebase and Angular." ,
5
5
"private" : true ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -90,8 +90,9 @@ export function ɵkeepUnstableUntilFirstFactory(
90
90
// Run the subscribe body outside of Angular (e.g. calling Firebase SDK to add a listener to a change event)
91
91
subscribeOn ( schedulers . outsideAngular ) ,
92
92
// Run operators inside the angular zone (e.g. side effects via tap())
93
- observeOn ( schedulers . insideAngular ) ,
94
- share ( )
93
+ observeOn ( schedulers . insideAngular )
94
+ // This isn't working correctly #2309, #2314, #2312
95
+ // share()
95
96
) ;
96
97
}
97
98
}
You can’t perform that action at this time.
0 commit comments