Skip to content

Commit

Permalink
Don't show expired plugin notices for plugins that don't have updates…
Browse files Browse the repository at this point in the history
… available (craftcms#4186)
  • Loading branch information
brandonkelly committed Apr 30, 2019
1 parent f9ba7a4 commit 1254ad5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Craft now registers its project config event handlers before loading plugins. ([#3943](https://github.com/craftcms/cms/issues/3943))
- The Control Panel now uses jQuery 3.4.0. ([#4183](https://github.com/craftcms/cms/issues/4183))
- `behavior` and `behaviors` are now reserved field handles. ([#4184](https://github.com/craftcms/cms/issues/4184))
- The Updates utility no longer shows notices for expired plugins if no updates are actually available. ([#4186](https://github.com/craftcms/cms/issues/4186))

### Fixed
- Fixed an error where rebuilding the project config would not typecast the `propagateEntries` and `enableVersioning` section settings correctly. ([#3695](https://github.com/craftcms/cms/issues/3695))
Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/updates/dist/UpdatesUtility.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
},

processUpdate: function(updateInfo, isPlugin) {
if (!updateInfo.releases.length && updateInfo.status !== 'expired') {
if (!updateInfo.releases.length) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/updates/dist/UpdatesUtility.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1254ad5

Please sign in to comment.