File tree Expand file tree Collapse file tree 4 files changed +15
-30
lines changed Expand file tree Collapse file tree 4 files changed +15
-30
lines changed Original file line number Diff line number Diff line change @@ -6,37 +6,12 @@ node_js:
66addons :
77 chrome : stable
88
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-
259branches :
2610 only :
2711 - master # otherwise pull requests get built twice
12+ - v5
2813
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
4015
4116script :
4217 - 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+
110<a name =" 5.4.1 " ></a >
211## [ 5.4.1] ( https://github.com/angular/angularfire2/compare/5.4.0...5.4.1 ) (2020-02-05)
312
Original file line number Diff line number Diff line change 11{
22 "name" : " @angular/fire" ,
3- "version" : " 5.4.1 " ,
3+ "version" : " 5.4.2 " ,
44 "description" : " The official library of Firebase and Angular." ,
55 "private" : true ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -90,8 +90,9 @@ export function ɵkeepUnstableUntilFirstFactory(
9090 // Run the subscribe body outside of Angular (e.g. calling Firebase SDK to add a listener to a change event)
9191 subscribeOn ( schedulers . outsideAngular ) ,
9292 // 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()
9596 ) ;
9697 }
9798}
You can’t perform that action at this time.
0 commit comments