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

8 Commits

5 changed files with 410 additions and 464 deletions

View File

@ -26,7 +26,9 @@ More details can be found in the [WordPress Plugin Directory](https://wordpress.
8. Create a new tag of the new version: `svn cp trunk tags/<version>` 8. Create a new tag of the new version: `svn cp trunk tags/<version>`
9. Check the version number occurences in both folders. 9. Check the version number occurences in both folders.
10. Commit everything together to the release SVN: `svn ci -m "release version <version>"` 10. Commit everything together to the release SVN: `svn ci -m "release version <version>"`
11. Commit and tag the new version in `git` too. 11. Commit the new version in git with the same message.
12. Tag the new version: `git tag v<version>`
13. Push the new tag to the repository: `git push --tags`
### Other commands ### Other commands
- Run ESLint: `npm run eslint` - Run ESLint: `npm run eslint`

844
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.6.0", "version": "0.6.1",
"description": "Display Mobilizon events in WordPress.", "description": "Display Mobilizon events in WordPress.",
"private": true, "private": true,
"scripts": { "scripts": {
@ -20,23 +20,23 @@
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"graphql": "^15.5.0", "graphql": "^15.5.1",
"graphql-request": "^3.4.0", "graphql-request": "^3.4.0",
"luxon": "^1.27.0", "luxon": "^1.28.0",
"object-hash": "^2.2.0" "object-hash": "^2.2.0"
}, },
"devDependencies": { "devDependencies": {
"ava": "^3.15.0", "ava": "^3.15.0",
"c8": "^7.7.2", "c8": "^7.7.3",
"del": "^6.0.0", "del": "^6.0.0",
"eslint": "^7.27.0", "eslint": "^7.30.0",
"eslint-plugin-ava": "^12.0.0", "eslint-plugin-ava": "^12.0.0",
"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.3",
"jsdom": "^16.6.0", "jsdom": "^16.6.0",
"webpack": "^5.38.1", "webpack": "^5.44.0",
"webpack-cli": "^4.7.0", "webpack-cli": "^4.7.2",
"webpack-stream": "^6.1.2" "webpack-stream": "^6.1.2"
}, },
"ava": { "ava": {
@ -51,6 +51,6 @@
"niceName": "Connector for Mobilizon", "niceName": "Connector for Mobilizon",
"phpMinimumVersion": 5.4, "phpMinimumVersion": 5.4,
"wordpressMinimumVersion": 5.6, "wordpressMinimumVersion": 5.6,
"wordpressTestedUpToVersion": 5.7 "wordpressTestedUpToVersion": 5.8
} }
} }

View File

@ -6,6 +6,11 @@
#### Fixed #### Fixed
#### Security #### Security
### [0.6.1] - 2021-07-13
#### Changed
- Confirm compatibility with WordPress 5.8
- Update dependencies
### [0.6.0] - 2021-06-02 ### [0.6.0] - 2021-06-02
#### Added #### Added
- Optionally display the current offset as short name after the time via the general plugin settings - Optionally display the current offset as short name after the time via the general plugin settings

View File

@ -36,6 +36,11 @@ The source code is available on [Github](https://github.com/dwaxweiler/connector
## Changelog ## Changelog
### [0.6.1] - 2021-07-13
#### Changed
- Confirm compatibility with WordPress 5.8
- Update dependencies
### [0.6.0] - 2021-06-02 ### [0.6.0] - 2021-06-02
#### Added #### Added
- Optionally display the current offset as short name after the time via the general plugin settings - Optionally display the current offset as short name after the time via the general plugin settings