mirror of
https://github.com/dwaxweiler/connector-mobilizon
synced 2025-06-05 21:59:25 +02:00
Merge branch 'main' into requests-in-php
This commit is contained in:
4958
package-lock.json
generated
4958
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
40
package.json
40
package.json
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "connector-mobilizon",
|
"name": "connector-mobilizon",
|
||||||
"version": "0.11.1",
|
"version": "0.11.3",
|
||||||
"description": "Display Mobilizon events in WordPress.",
|
"description": "Display Mobilizon events in WordPress.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build-dev": "webpack --mode=development && gulp inject",
|
"build-dev": "webpack --mode=development && gulp inject",
|
||||||
"build-prod": "ava && webpack --mode=production && gulp inject",
|
"build-prod": "rimraf -- build && ava && webpack --mode=production && gulp inject",
|
||||||
"clean": "rimraf -- build",
|
"clean": "rimraf -- build",
|
||||||
"coverage": "c8 --all --reporter=html --reporter=text --include=source/**/*.js ava",
|
"coverage": "c8 --all --reporter=html --reporter=text --include=source/**/*.js ava",
|
||||||
"eslint": "npx eslint source/**/*.js",
|
"eslint": "npx eslint source/**/*.js",
|
||||||
@ -24,35 +24,35 @@
|
|||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"graphql": "16.6.0",
|
"graphql": "16.7.1",
|
||||||
"graphql-request": "6.0.0",
|
"graphql-request": "6.1.0",
|
||||||
"luxon": "3.3.0",
|
"luxon": "3.3.0",
|
||||||
"object-hash": "3.0.0"
|
"object-hash": "3.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "7.21.8",
|
"@babel/core": "7.22.9",
|
||||||
"@babel/eslint-parser": "7.21.8",
|
"@babel/eslint-parser": "7.22.9",
|
||||||
"@babel/preset-env": "7.21.5",
|
"@babel/preset-env": "7.22.9",
|
||||||
"@babel/preset-react": "7.18.6",
|
"@babel/preset-react": "7.22.5",
|
||||||
"@wordpress/eslint-plugin": "14.5.0",
|
"@wordpress/eslint-plugin": "14.11.0",
|
||||||
"ava": "5.2.0",
|
"ava": "5.3.1",
|
||||||
"babel-loader": "9.1.2",
|
"babel-loader": "9.1.3",
|
||||||
"browser-env": "3.3.0",
|
"browser-env": "3.3.0",
|
||||||
"c8": "7.13.0",
|
"c8": "8.0.1",
|
||||||
"copy-webpack-plugin": "11.0.0",
|
"copy-webpack-plugin": "11.0.0",
|
||||||
"eslint": "8.40.0",
|
"eslint": "8.45.0",
|
||||||
"eslint-plugin-ava": "14.0.0",
|
"eslint-plugin-ava": "14.0.0",
|
||||||
"eslint-plugin-jsx": "0.1.0",
|
"eslint-plugin-jsx": "0.1.0",
|
||||||
"eslint-plugin-react": "7.32.2",
|
"eslint-plugin-react": "7.33.0",
|
||||||
"esm": "3.2.25",
|
"esm": "3.2.25",
|
||||||
"gulp": "4.0.2",
|
"gulp": "4.0.2",
|
||||||
"gulp-replace": "1.1.4",
|
"gulp-replace": "1.1.4",
|
||||||
"husky": "8.0.3",
|
"husky": "8.0.3",
|
||||||
"lint-staged": "13.2.2",
|
"lint-staged": "13.2.3",
|
||||||
"prettier": "2.8.8",
|
"prettier": "3.0.0",
|
||||||
"rimraf": "5.0.0",
|
"rimraf": "5.0.1",
|
||||||
"webpack": "5.82.0",
|
"webpack": "5.88.2",
|
||||||
"webpack-cli": "5.1.0"
|
"webpack-cli": "5.1.4"
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"files": [
|
"files": [
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"niceName": "Connector for Mobilizon",
|
"niceName": "Connector for Mobilizon",
|
||||||
"phpMinimumVersion": 7.4,
|
"phpMinimumVersion": 7.4,
|
||||||
"wordpressMinimumVersion": 5.6,
|
"wordpressMinimumVersion": 5.6,
|
||||||
"wordpressTestedUpToVersion": "6.2"
|
"wordpressTestedUpToVersion": "6.3"
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"source/**/*.js": "eslint",
|
"source/**/*.js": "eslint",
|
||||||
|
@ -8,6 +8,15 @@
|
|||||||
#### Fixed
|
#### Fixed
|
||||||
#### Security
|
#### Security
|
||||||
|
|
||||||
|
### [0.11.3]
|
||||||
|
#### Fixed
|
||||||
|
- Clean up distributed files
|
||||||
|
|
||||||
|
### [0.11.2]
|
||||||
|
#### Changed
|
||||||
|
- Update dependencies
|
||||||
|
- Confirm compatibility with WordPress 6.3
|
||||||
|
|
||||||
### [0.11.1]
|
### [0.11.1]
|
||||||
#### Fixed
|
#### Fixed
|
||||||
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
|
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
|
||||||
|
@ -41,6 +41,15 @@ You have to use their username, e.g. `@nosliensvivants`, and append the name of
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### [0.11.3]
|
||||||
|
#### Fixed
|
||||||
|
- Clean up distributed files
|
||||||
|
|
||||||
|
### [0.11.2]
|
||||||
|
#### Changed
|
||||||
|
- Update dependencies
|
||||||
|
- Confirm compatibility with WordPress 6.3
|
||||||
|
|
||||||
### [0.11.1]
|
### [0.11.1]
|
||||||
#### Fixed
|
#### Fixed
|
||||||
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
|
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
|
||||||
|
Reference in New Issue
Block a user