Skip to content

Upgrade dependencies #718

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog ##

### Unreleased

* Upgrades dependencies

### 2.9.0

#### Added
Expand All @@ -8,7 +12,7 @@

#### Changed

* Updated dev dependencies.
* Updated dev dependencies.

### 2.8.1

Expand All @@ -18,8 +22,8 @@

#### Documentation

* Updated documentation for `callback` (thanks @arashdalir)
* Updated documentation for `callback` (thanks @arashdalir)


### 2.8.0

Expand Down Expand Up @@ -99,7 +103,7 @@
#### Fixed

* ContextMenu appears with wrong position ([Issue #502](https://github.com/swisnl/jQuery-contextMenu/issues/502) thanks @apptaro
* Check if given selected value is a 0, if it is a zero so return it as is. Thanks @Falseee
* Check if given selected value is a 0, if it is a zero so return it as is. Thanks @Falseee
* Events are never trigger when opening a contextMenu right after the other ([Issue #454](https://github.com/swisnl/jQuery-contextMenu/issues/454) thanks @kagant15
* Accesskey jQuery Modal Dialog not working ([Issue #506](https://github.com/swisnl/jQuery-contextMenu/issues/506) thanks @CiTRO33
* Fix submenu hover not always staying active if hovering over a submenu item. ([Issue #523](https://github.com/swisnl/jQuery-contextMenu/issues/523) thanks @tim-nz
Expand All @@ -113,7 +117,7 @@

### 2.4.3

#### Changed
#### Changed

* The inline style causes a Content Security Policy violation if style-src 'unsafe-inline' is not defined in the policy. [PR 498](https://github.com/swisnl/jQuery-contextMenu/pull/498) thanks @StealthDuck

Expand All @@ -124,10 +128,10 @@
* Added SauceLabs tests for common browsers.

### 2.4.2 ###

### Fixed

* Focus not set on content editable element when right clicking the second time ([Issue #482](https://github.com/swisnl/jQuery-contextMenu/issues/482))
* Focus not set on content editable element when right clicking the second time ([Issue #482](https://github.com/swisnl/jQuery-contextMenu/issues/482))

* `selectableSubMenu` broke disabling click menu (fixes ([Issue #493](https://github.com/swisnl/jQuery-contextMenu/issues/493))

Expand All @@ -149,7 +153,7 @@

#### Fixed

* The contextmenu shows even if all items are set to visible:false ([Issue #473](https://github.com/swisnlhttps://github.com/swisnl/jQuery-contextMenu/issues/482/jQuery-contextMenu/issues/473))
* The contextmenu shows even if all items are set to visible:false ([Issue #473](https://github.com/swisnlhttps://github.com/swisnl/jQuery-contextMenu/issues/482/jQuery-contextMenu/issues/473))

#### Documentation

Expand Down Expand Up @@ -220,14 +224,14 @@

#### Added
* Add option to show item title as HTML (thanks @brassard)
* Full Font Awesome support
* Full Font Awesome support

#### Changed
#### Changed
* Use relative units for css fixes ([Issue #386](https://github.com/swisnl/jQuery-contextMenu/issues/386)) (thanks @RoachMech)
* Change unicode characters in CSS to readable strings.
* Improved item styles (thanks @anseki)

#### Fixed
#### Fixed
* Force woff2 font creation for Windows some machines.
* Fix so that disabled items can't get focus anymore (thanks @anseki)
* Fix so menu size is calculated better no items will take up 2 lines again (thanks @anseki)
Expand Down Expand Up @@ -304,10 +308,10 @@

### 1.7.0 (August 29th 2015) ###

* Touch support optimisations (by kccarter76)
* Touch support optimisations (by kccarter76)
* changed .text to .html so there are no extra span's fixed - ([Issue #252](https://github.com/swisnl/jQuery-contextMenu/issues/252))
* added visibility callback to item definition
* copy the HTML5 icon attribute when creating from HTML5 elements
* copy the HTML5 icon attribute when creating from HTML5 elements
* growing menu when opening multiple times fixed - ([Issue #197](https://github.com/swisnl/jQuery-contextMenu/issues/197))
* fixed failure to run tests

Expand Down
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
"gulp-jshint": "^2.1.0",
"gulp-load-plugins": "^2.0.1",
"gulp-qunit": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"jshint": "^2.9.4",
"karma": "^4.3.0",
"karma": "^5.0.2",
"karma-chrome-launcher": "^3.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-qunit": "^4.0.0",
"karma-sauce-launcher": "2.0.2",
"karma-sauce-launcher": "4.1.3",
"lodash": "^4.17.5",
"pump": "^3.0.0",
"qunit": "^2.0.1",
Expand All @@ -46,7 +46,7 @@
"wdio-mocha-framework": "^0.6.2",
"wdio-sauce-service": "^0.4.8",
"wdio-selenium-standalone-service": "^0.0.12",
"webdriverio": "^5.14.3"
"webdriverio": "^6.1.3"
},
"description": "Management facility for context menus. Developed for a large number of triggering objects. HTML5 Polyfill",
"keywords": [
Expand Down Expand Up @@ -100,5 +100,8 @@
"iOS >= 6",
"Opera >= 12",
"Safari >= 6"
]
],
"dependencies": {
"jquery": "^3.5.0"
}
}
Loading