Skip to content

Commit

Permalink
Merge pull request #218 from firebase/ts-loosen-firebase-dep
Browse files Browse the repository at this point in the history
Bump required firebase dep version to install 2.2+
  • Loading branch information
sararob committed Mar 20, 2015
2 parents ead888f + 78be0bc commit 9edaa22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion blueprints/emberfire/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
var self = this,
firebaseUrl = options.url || 'https://YOUR-FIREBASE-NAME.firebaseio.com/';

return this.addBowerPackagesToProject([ {name: 'firebase', target: "~2.1.0"} ])
return this.addBowerPackagesToProject([ {name: 'firebase', target: "^2.1.0"} ])
.then(function() {
return self.addToConfig('firebase', '\'' + firebaseUrl + '\'');
})
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"package.json"
],
"dependencies": {
"firebase": "~2.1.0",
"firebase": "^2.1.0",
"ember-data": ">=1.0.0-beta.11 <1.0.0-beta.15"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
fixed - Fixed an issue where `model.destroyRecord` was throwing an error `undefined is not a function`.
changed - Installs Firebase dependency with version compatibility of `^2.1.0`.
changed - Show the `Firebase` version in Ember Inspector's info panel.

0 comments on commit 9edaa22

Please sign in to comment.