angular-translate
Advanced tools
Comparing version 2.2.1 to 2.4.0
@@ -0,1 +1,76 @@ | ||
# 2.4.0 (2014-09-22) | ||
## Features | ||
### service | ||
* introduce `versionInfo` function (e37d89c) | ||
* prefer detecting language by `navigator.languages` #722 (2204f4f) | ||
* enrich events with the currently handled language key (73b289d) | ||
* interpolate translationId in case of rejected translation (3efaac5) | ||
### loaders | ||
* introduce loader cache (b685601) | ||
### loader | ||
* apply support for loaderOptions.$http (8613bef) | ||
## Bug fixes | ||
### service | ||
* correctly iterate in fallback languages (fixes #690) (ac2f35c) | ||
* `$nextLang` should be not unset parallel loadings (d1745e4) | ||
* avoid possible doubled requested on refresh() (98d429d) | ||
* avoid possible npe in internal getTranslationTable() (9aaa9a0) | ||
### filter | ||
* mark filter being stateful required since Angular 1.3 rc2 (bffbf04) | ||
* interpolated params w/ scope aren't possible starting AJS1.3 (9465318) | ||
<a name="2.3.0"></a> | ||
## 2.3.0 (2014-09-16) | ||
#### Bug Fixes | ||
* **$translate:** return $missingTranslationHandler result when no translation was found ([7625951d](http://github.com/PascalPrecht/angular-translate/commit/7625951de2474049be78294fa129c32ea46df6a9)) | ||
* **bower.json:** Avoid 'invalid-meta angular-bootstrap-affix is missing "ignore" entry in bower.j ([595501a9](http://github.com/PascalPrecht/angular-translate/commit/595501a9d4882207e3ff510dec80dbe0a553d580)) | ||
* **demo:** fixes wrong method call in demo ([47fc9436](http://github.com/PascalPrecht/angular-translate/commit/47fc9436cfc69347f8a9b7f09cf5c726c0ca1931)) | ||
* **directive:** | ||
* improve the cloak-directive's performance ([acab18ab](http://github.com/PascalPrecht/angular-translate/commit/acab18ab5e6f455db86f6c9dabbbbdbc2f7b7855)) | ||
* change event for listening to `$translateChangeEnd` ([98fe649a](http://github.com/PascalPrecht/angular-translate/commit/98fe649a241b79c245fb32d838b84f0fac319f5a), closes [#658](http://github.com/PascalPrecht/angular-translate/issues/658)) | ||
* **docs:** | ||
* fix example in directive ngdoc-documentation (fixes #678) ([176b3e96](http://github.com/PascalPrecht/angular-translate/commit/176b3e96a78c4590f42817e6dcf44addcc49a13f)) | ||
* Fix typo ([6c2ab307](http://github.com/PascalPrecht/angular-translate/commit/6c2ab307d5b31c0e2e70c2cce0ccbf804db4c540)) | ||
* **package.json:** remove unnecessary relative paths from package.json ([8e5b87e7](http://github.com/PascalPrecht/angular-translate/commit/8e5b87e726562b2fcfdaefb49b35c114e92c66a0)) | ||
* **service:** | ||
* use hasOwnProperty of prototype #638 ([d8a5060b](http://github.com/PascalPrecht/angular-translate/commit/d8a5060b2273f699fa75e32d7a73e5f62aab670c)) | ||
* add shim for indexOf and trim #638 ([b951fd50](http://github.com/PascalPrecht/angular-translate/commit/b951fd50f1f312755de1fd66f51e38bef3f5b882)) | ||
* load fallback languages also for instant and filter ([ed6023a4](http://github.com/PascalPrecht/angular-translate/commit/ed6023a4aa2ebc51ba839b976eb1b8f8e8fa91b6)) | ||
* addition of preferred language to fallback language stack is now preventing dupl ([b2bb1669](http://github.com/PascalPrecht/angular-translate/commit/b2bb166944074aa174f0ed557bf4e2457128b3b8)) | ||
* **storage:** | ||
* fixup 75504cbe ([53a8badb](http://github.com/PascalPrecht/angular-translate/commit/53a8badbd1d8fe82d43ddc17e27eaae1a414ee9b)) | ||
* fix 'DOM Exception 18' at feature detection ([75504cbe](http://github.com/PascalPrecht/angular-translate/commit/75504cbe2ddc0d18e08288b0fa4453356aaafe73)) | ||
* **translateService:** | ||
* fixup/rewrite for b48f6bb (specs) ([45ac14d5](http://github.com/PascalPrecht/angular-translate/commit/45ac14d5bf7d8d9569fa0fff99a0dcb5bc419e68)) | ||
* prevent multiple XHR calls ([b48f6bb4](http://github.com/PascalPrecht/angular-translate/commit/b48f6bb438a193174df569beef24d193d5cd954c)) | ||
#### Features | ||
* **directive:** add possibility to mix translation interpolation with other text in element body ([be621314](http://github.com/PascalPrecht/angular-translate/commit/be6213144a686b34cff3ba29b9a52041924b2c9e), closes [#461](http://github.com/PascalPrecht/angular-translate/issues/461)) | ||
<a name="2.2.0"></a> | ||
@@ -2,0 +77,0 @@ ## 2.2.0 (2014-06-03) |
{ | ||
"name": "angular-translate", | ||
"version": "2.2.1", | ||
"version": "2.4.0", | ||
"description": "A translation module for AngularJS", | ||
"main": "index.js", | ||
"main": "dist/angular-translate.js", | ||
"repository": { | ||
@@ -11,4 +11,6 @@ "type": "git", | ||
"scripts": { | ||
"postinstall": "./node_modules/.bin/bower install", | ||
"test": "./node_modules/karma/bin/karma start karma.unit.conf.js --single-run" | ||
"prepublish": "bower install", | ||
"shipit": "bower install && bower update && grunt prepare-release", | ||
"test": "grunt install-test && grunt test", | ||
"test-scopes": "grunt install-test && for f in test_scopes/*; do TEST_SCOPE=\"`basename $f`\" grunt test; done" | ||
}, | ||
@@ -20,6 +22,7 @@ "author": { | ||
"devDependencies": { | ||
"bower": "~1.3.0", | ||
"bower": "~1.3.2", | ||
"karma": "~0.10.9", | ||
"grunt-karma": "~0.6.x", | ||
"grunt": "~0.4.1", | ||
"grunt-bower-install-simple": "^1.0.3", | ||
"grunt-contrib-watch": "~0.4.2", | ||
@@ -37,4 +40,5 @@ "grunt-contrib-concat": "~0.3.x", | ||
"grunt-ngdocs": "~0.1.11", | ||
"grunt-conventional-changelog": "~1.1.0" | ||
"grunt-conventional-changelog": "~1.1.0", | ||
"grunt-version": "~0.3.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Install scripts
Supply chain riskInstall scripts are run when the package is installed. The majority of malware in npm is hidden in install scripts.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
0
0
1
139774
19
28
2402