mirror of
https://github.com/dwaxweiler/connector-mobilizon
synced 2025-06-05 21:59:25 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
44f35aa007 | |||
f3b7dcf735 | |||
e3f2e5b133 | |||
09c0698509 | |||
f69769d291 |
10004
package-lock.json
generated
10004
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
42
package.json
42
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "connector-mobilizon",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"description": "Display Mobilizon events in WordPress.",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
@ -24,33 +24,33 @@
|
||||
},
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"graphql": "16.9.0",
|
||||
"luxon": "3.5.0"
|
||||
"graphql": "16.11.0",
|
||||
"luxon": "3.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "7.26.0",
|
||||
"@babel/eslint-parser": "7.25.9",
|
||||
"@babel/preset-env": "7.26.0",
|
||||
"@babel/preset-react": "7.25.9",
|
||||
"@wordpress/eslint-plugin": "21.4.0",
|
||||
"ava": "6.2.0",
|
||||
"babel-loader": "9.2.1",
|
||||
"browser-env": "3.3.0",
|
||||
"c8": "10.1.2",
|
||||
"copy-webpack-plugin": "12.0.2",
|
||||
"eslint": "8.57.0",
|
||||
"@babel/core": "7.27.1",
|
||||
"@babel/eslint-parser": "7.27.1",
|
||||
"@babel/preset-env": "7.27.2",
|
||||
"@babel/preset-react": "7.27.1",
|
||||
"@wordpress/eslint-plugin": "22.10.0",
|
||||
"ava": "6.3.0",
|
||||
"babel-loader": "10.0.0",
|
||||
"c8": "10.1.3",
|
||||
"copy-webpack-plugin": "13.0.0",
|
||||
"eslint": "8.57.1",
|
||||
"eslint-plugin-ava": "14.0.0",
|
||||
"eslint-plugin-jsx": "0.1.0",
|
||||
"eslint-plugin-react": "7.37.2",
|
||||
"eslint-plugin-react": "7.37.5",
|
||||
"esm": "3.2.25",
|
||||
"gulp": "5.0.0",
|
||||
"gulp-replace": "1.1.4",
|
||||
"husky": "9.1.6",
|
||||
"lint-staged": "15.2.10",
|
||||
"prettier": "3.3.3",
|
||||
"husky": "9.1.7",
|
||||
"jsdom": "26.1.0",
|
||||
"lint-staged": "15.5.2",
|
||||
"prettier": "3.5.3",
|
||||
"rimraf": "5.0.10",
|
||||
"webpack": "5.96.1",
|
||||
"webpack-cli": "5.1.4"
|
||||
"webpack": "5.99.9",
|
||||
"webpack-cli": "6.0.1"
|
||||
},
|
||||
"ava": {
|
||||
"files": [
|
||||
@ -61,7 +61,7 @@
|
||||
"niceName": "Connector for Mobilizon",
|
||||
"phpMinimumVersion": 7.4,
|
||||
"wordpressMinimumVersion": 5.6,
|
||||
"wordpressTestedUpToVersion": "6.7"
|
||||
"wordpressTestedUpToVersion": "6.8"
|
||||
},
|
||||
"lint-staged": {
|
||||
"source/**/*.js": "eslint",
|
||||
|
@ -6,6 +6,11 @@
|
||||
#### Fixed
|
||||
#### Security
|
||||
|
||||
### [1.4.0]
|
||||
#### Changed
|
||||
- Update dependencies
|
||||
- Confirm compatibility with WordPress 6.8
|
||||
|
||||
### [1.3.0]
|
||||
#### Added
|
||||
- Comment for translators what placeholder will contain
|
||||
|
@ -1,5 +1,5 @@
|
||||
import test from 'ava'
|
||||
import browserEnv from 'browser-env'
|
||||
import { JSDOM } from 'jsdom'
|
||||
|
||||
import {
|
||||
displayEvents,
|
||||
@ -9,7 +9,9 @@ import {
|
||||
} from './events-displayer.js'
|
||||
|
||||
test.before(() => {
|
||||
browserEnv()
|
||||
const dom = new JSDOM()
|
||||
global.document = dom.window.document
|
||||
global.window = dom.window
|
||||
window.MOBILIZON_CONNECTOR = {
|
||||
locale: 'en-GB',
|
||||
timeZone: 'utc',
|
||||
|
@ -1,10 +1,11 @@
|
||||
import test from 'ava'
|
||||
import browserEnv from 'browser-env'
|
||||
import { JSDOM } from 'jsdom'
|
||||
|
||||
import { createAnchorElement } from './html-creator.js'
|
||||
|
||||
test.beforeEach(() => {
|
||||
browserEnv()
|
||||
const dom = new JSDOM()
|
||||
global.document = dom.window.document
|
||||
})
|
||||
|
||||
test('#createAnchorElement usual parameters', (t) => {
|
||||
|
@ -43,6 +43,11 @@ You have to use their username, e.g. `@nosliensvivants`, and append the name of
|
||||
|
||||
## Changelog
|
||||
|
||||
### [1.4.0]
|
||||
#### Changed
|
||||
- Update dependencies
|
||||
- Confirm compatibility with WordPress 6.8
|
||||
|
||||
### [1.3.0]
|
||||
#### Added
|
||||
- Comment for translators what placeholder will contain
|
||||
|
Reference in New Issue
Block a user