1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-06-05 21:59:25 +02:00

17 Commits

6 changed files with 2325 additions and 1545 deletions

View File

@ -0,0 +1,23 @@
name: Qodana
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
qodana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2022.3.2
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
- uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json

3779
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "connector-mobilizon", "name": "connector-mobilizon",
"version": "0.10.1", "version": "0.11.1",
"description": "Display Mobilizon events in WordPress.", "description": "Display Mobilizon events in WordPress.",
"private": true, "private": true,
"type": "module", "type": "module",
@ -24,35 +24,35 @@
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"graphql": "^16.6.0", "graphql": "16.6.0",
"graphql-request": "^5.0.0", "graphql-request": "5.2.0",
"luxon": "3.0.4", "luxon": "3.3.0",
"object-hash": "3.0.0" "object-hash": "3.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "7.19.6", "@babel/core": "7.21.3",
"@babel/eslint-parser": "7.19.1", "@babel/eslint-parser": "7.21.3",
"@babel/preset-env": "7.19.4", "@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6", "@babel/preset-react": "7.18.6",
"@wordpress/eslint-plugin": "13.4.0", "@wordpress/eslint-plugin": "14.3.0",
"ava": "5.0.1", "ava": "5.2.0",
"babel-loader": "8.2.5", "babel-loader": "9.1.2",
"browser-env": "3.3.0", "browser-env": "3.3.0",
"c8": "7.12.0", "c8": "7.13.0",
"copy-webpack-plugin": "11.0.0", "copy-webpack-plugin": "11.0.0",
"eslint": "8.26.0", "eslint": "8.37.0",
"eslint-plugin-ava": "13.2.0", "eslint-plugin-ava": "14.0.0",
"eslint-plugin-jsx": "0.1.0", "eslint-plugin-jsx": "0.1.0",
"eslint-plugin-react": "7.31.10", "eslint-plugin-react": "7.32.2",
"esm": "3.2.25", "esm": "3.2.25",
"gulp": "4.0.2", "gulp": "4.0.2",
"gulp-replace": "1.1.3", "gulp-replace": "1.1.4",
"husky": "8.0.1", "husky": "8.0.3",
"lint-staged": "13.0.3", "lint-staged": "13.2.0",
"prettier": "2.7.1", "prettier": "2.8.7",
"rimraf": "3.0.2", "rimraf": "4.4.1",
"webpack": "5.74.0", "webpack": "5.77.0",
"webpack-cli": "4.10.0" "webpack-cli": "5.0.1"
}, },
"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.1" "wordpressTestedUpToVersion": "6.2"
}, },
"lint-staged": { "lint-staged": {
"source/**/*.js": "eslint", "source/**/*.js": "eslint",

2
qodana.yaml Normal file
View File

@ -0,0 +1,2 @@
version: '1.0'
linter: jetbrains/qodana-js:2022.3-eap

View File

@ -6,6 +6,17 @@
#### Fixed #### Fixed
#### Security #### Security
### [0.11.1]
#### Fixed
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
### [0.11.0]
#### Changed
- Update dependencies
- Confirm compatibility with WordPress 6.2
#### Security
- Set minimum PHP version to oldest stable 8.0
### [0.10.1] ### [0.10.1]
#### Changed #### Changed
- Confirm compatibility with WordPress 6.1 - Confirm compatibility with WordPress 6.1

View File

@ -41,6 +41,17 @@ You have to use their username, e.g. `@nosliensvivants`, and append the name of
## Changelog ## Changelog
### [0.11.1]
#### Fixed
- Revert minimum PHP version to 7.4 to allow some more time for upgrading PHP
### [0.11.0]
#### Changed
- Update dependencies
- Confirm compatibility with WordPress 6.2
#### Security
- Set minimum PHP version to oldest stable 8.0
### [0.10.1] ### [0.10.1]
#### Changed #### Changed
- Confirm compatibility with WordPress 6.1 - Confirm compatibility with WordPress 6.1