This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EmberCLI 2.8 & Ember 2.8 upgrade (#669)
* Upgraded EmberCLI to 2.8.0 * Upgraded to Ember 2.8 * Updated to changes made between ember-cli 2.7 and 2.8 * Replace horrible observes code There was an observer on patient that was causing database is closed errors when testing. * Disable service worker offline sync when testing * Upgrade to pouchdb 5.4.5 * Updated for deprecation warnings. * updated snyk
- Loading branch information
Showing
8 changed files
with
41 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
version: v1.5.0 | ||
version: v1.5.2 | ||
failThreshold: high | ||
ignore: {} | ||
patch: | ||
'npm:minimatch:20160620': | ||
- ember-inflector > ember-cli-babel > broccoli-babel-transpiler > babel-core > minimatch: | ||
patched: '2016-07-06T20:50:31.952Z' | ||
ember-rapid-forms > ember-cli-babel > broccoli-babel-transpiler > babel-core > minimatch: | ||
patched: '2016-09-29T20:23:59.408Z' | ||
- ember-inflector > ember-cli-babel > broccoli-babel-transpiler > babel-core > regenerator > commoner > glob > minimatch: | ||
patched: '2016-07-06T20:50:31.952Z' | ||
ember-rapid-forms > ember-validations > ember-cli-babel > broccoli-babel-transpiler > babel-core > minimatch: | ||
patched: '2016-09-29T20:23:59.408Z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import Ember from 'ember'; | ||
export default Ember.Helper.helper(function([text]) { | ||
if (text !== null && typeof text !== 'undefined') { | ||
return new Ember.Handlebars.SafeString(text.replace(/\n/g, '<br>')); | ||
return Ember.String.htmlSafe(text.replace(/\n/g, '<br>')); | ||
} else { | ||
return null; | ||
} | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters