Skip to content

Commit

Permalink
Release 1.4.2. Fix Angular dependency strictness.
Browse files Browse the repository at this point in the history
This is a temporary fix to avoid Angular 1.6.0 until all dependencies
have been updated.
Unfortunately the loose matching in bower.json means that all
electron-release-server versions prior to this one will break on
their next `bower install`.
  • Loading branch information
ArekSredzki committed Dec 10, 2016
1 parent 31d2b91 commit 2e48ead
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ _Note: Despite being advertised as a release server for Electron applications, i

If you host your project on your Github **and** do not need a UI for your app, then [Nuts](https://github.com/GitbookIO/nuts) is probably what you're looking for. Otherwise, you're in the same boat as I was, and you've found the right place!

## Advisory Notice
**IMPORTANT:** The release of Angular `1.6.0` has broken all `electron-release-server` versions prior to `1.4.2`. Please use the instructions under the `Maintenance` heading below to update your fork! Sorry for the inconvenience.

## Features
- :sparkles: Docker :whale: support (thanks to EvgeneOskin)!
- :sparkles: Awesome release management interface powered by [AngularJS](https://angularjs.org)
Expand Down
28 changes: 14 additions & 14 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@
"dependencies": {
"angular": "^1.5.9",
"bootstrap-sass-official": "^3.3.7",
"angular-animate": "^1.5.9",
"angular-messages": "^1.5.9",
"angular-route": "^1.5.9",
"angular-sanitize": "^1.5.9",
"angular-animate": "~1.5.9",
"angular-messages": "~1.5.9",
"angular-route": "~1.5.9",
"angular-sanitize": "~1.5.9",
"angular-xeditable": "~0.5.0",
"lodash": "~4.17.2",
"angular-ui-notification": "~0.2.0",
"angular-bootstrap": "~1.3.3",
"angular-confirm-modal": "^1.2.6",
"angular-jwt": "^0.1.8",
"ngstorage": "^0.3.11",
"angular-confirm-modal": "~1.2.6",
"angular-jwt": "~0.1.8",
"ngstorage": "~0.3.11",
"sails.io.js": "*",
"angular-sails": "^1.1.4",
"angular-moment": "^1.0.1",
"components-font-awesome": "^4.7.0",
"ng-file-upload": "^12.2.13",
"angular-sails": "~1.1.4",
"angular-moment": "~1.0.1",
"components-font-awesome": "~4.7.0",
"ng-file-upload": "~12.2.13",
"angular-PubSub": "angular.pubsub#*",
"ng-device-detector": "^3.0.1",
"compare-versions": "^3.0.0"
"ng-device-detector": "~3.0.1",
"compare-versions": "~3.0.0"
},
"appPath": "app",
"overrides": {
Expand All @@ -38,6 +38,6 @@
}
},
"resolutions": {
"angular": "^1.5.9"
"angular": "~1.5.9"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "electron-release-server",
"private": true,
"version": "1.4.1",
"version": "1.4.2",
"description": "A version server for hosting and serving the your electron desktop app releases.",
"dependencies": {
"bluebird": "^3.4.6",
Expand All @@ -24,7 +24,7 @@
"grunt-sync": "~0.6.2",
"grunt-wiredep": "^3.0.1",
"include-all": "~2.0.0",
"jsonwebtoken": "^7.1.9",
"jsonwebtoken": "^7.2.1",
"ldapauth-fork": "^2.5.4",
"lodash": "^4.17.2",
"mime": "^1.3.4",
Expand Down

0 comments on commit 2e48ead

Please sign in to comment.