mirror of
https://github.com/dwaxweiler/connector-mobilizon
synced 2025-06-05 21:59:25 +02:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
4c604c4fc4 | |||
db9e9edf00 | |||
7675e0e2ba | |||
b2f01d46d8 | |||
e50dc76968 | |||
ac9cca3b26 | |||
1df834cbca |
@ -13,9 +13,11 @@
|
|||||||
|
|
||||||
### Release procedure
|
### Release procedure
|
||||||
1. Make sure `changelog.txt` is up-to-date. Use a new version number and copy over the new section into `readme.txt`.
|
1. Make sure `changelog.txt` is up-to-date. Use a new version number and copy over the new section into `readme.txt`.
|
||||||
2. Build: `npm run build-prod`
|
2. Update `package.json` with the same version number.
|
||||||
3. Determine minimum PHP version for code and update package.json if needed: `./vendor/bin/phpcompatinfo analyser:run ./source`
|
3. Build: `npm run build-prod`
|
||||||
4. Make sure screenshots are up-to-date.
|
4. Determine minimum PHP version for code and update package.json if needed: `./vendor/bin/phpcompatinfo analyser:run ./source`
|
||||||
|
5. Make sure screenshots are up-to-date.
|
||||||
|
6. Copy the built plugin into `/trunk` of SVN. Also creatte a new tag of the new version. Check the version number occurences in both folders. Commit everything together.
|
||||||
|
|
||||||
### Other commands
|
### Other commands
|
||||||
- Run tests: `npm test`
|
- Run tests: `npm test`
|
||||||
|
387
composer.lock
generated
387
composer.lock
generated
File diff suppressed because it is too large
Load Diff
864
package-lock.json
generated
864
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "connector-mobilizon",
|
"name": "connector-mobilizon",
|
||||||
"version": "0.2.1",
|
"version": "0.2.2",
|
||||||
"description": "Display mobilizon events in WordPress.",
|
"description": "Display mobilizon events in WordPress.",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -14,7 +14,7 @@
|
|||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"graphql": "^15.4.0",
|
"graphql": "^15.5.0",
|
||||||
"graphql-request": "^3.4.0",
|
"graphql-request": "^3.4.0",
|
||||||
"luxon": "^1.25.0"
|
"luxon": "^1.25.0"
|
||||||
},
|
},
|
||||||
@ -24,10 +24,10 @@
|
|||||||
"esm": "^3.2.25",
|
"esm": "^3.2.25",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
"gulp-replace": "^1.0.0",
|
"gulp-replace": "^1.0.0",
|
||||||
"jsdom": "^16.4.0",
|
"jsdom": "^16.5.0",
|
||||||
"webpack": "^5.11.1",
|
"webpack": "^5.24.4",
|
||||||
"webpack-cli": "^4.3.1",
|
"webpack-cli": "^4.5.0",
|
||||||
"webpack-stream": "^6.1.1"
|
"webpack-stream": "^6.1.2"
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"files": [
|
"files": [
|
||||||
@ -41,6 +41,6 @@
|
|||||||
"niceName": "Connector for Mobilizon",
|
"niceName": "Connector for Mobilizon",
|
||||||
"phpMinimumVersion": 5.4,
|
"phpMinimumVersion": 5.4,
|
||||||
"wordpressMinimumVersion": 5.6,
|
"wordpressMinimumVersion": 5.6,
|
||||||
"wordpressTestedUpToVersion": 5.6
|
"wordpressTestedUpToVersion": 5.7
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,22 +1,28 @@
|
|||||||
### [Unreleased]
|
### [Unreleased]
|
||||||
Added
|
#### Added
|
||||||
Changed
|
#### Changed
|
||||||
Deprecated
|
#### Deprecated
|
||||||
Removed
|
#### Removed
|
||||||
Fixed
|
#### Fixed
|
||||||
Security
|
#### Security
|
||||||
|
|
||||||
|
### [0.2.2] - 2021-03-10
|
||||||
|
#### Changed
|
||||||
|
- Confirm compatibility with WordPress 5.7
|
||||||
|
- Update graphql dependency
|
||||||
|
- Update dev dependencies jsdom, webpack, webpack-cli, webpack-stream
|
||||||
|
|
||||||
### [0.2.1] - 2021-01-15
|
### [0.2.1] - 2021-01-15
|
||||||
Changed
|
#### Fixed
|
||||||
- Add missing backtick to `readme.txt`
|
- Add missing backtick to `readme.txt`
|
||||||
|
|
||||||
### [0.2.0] - 2021-01-15
|
### [0.2.0] - 2021-01-15
|
||||||
Added
|
#### Added
|
||||||
- `changelog.txt`
|
- `changelog.txt`
|
||||||
- Changelog maintenance steps to `README.md`
|
- Changelog maintenance steps to `README.md`
|
||||||
- Link to Github repository in `readme.txt`
|
- Link to Github repository in `readme.txt`
|
||||||
- Option to show events of a specific group by indicating its name
|
- Option to show events of a specific group by indicating its name
|
||||||
Changed
|
#### Changed
|
||||||
- Use same Markdown style in `README.md` as in other documents
|
- Use same Markdown style in `README.md` as in other documents
|
||||||
|
|
||||||
### [0.1.0] - 2021-01-09
|
### [0.1.0] - 2021-01-09
|
||||||
|
@ -28,17 +28,23 @@ The source code is available on [Github](https://github.com/dwaxweiler/connector
|
|||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|
||||||
|
### [0.2.2] - 2021-03-10
|
||||||
|
#### Changed
|
||||||
|
- Confirm compatibility with WordPress 5.7
|
||||||
|
- Update graphql dependency
|
||||||
|
- Update dev dependencies jsdom, webpack, webpack-cli, webpack-stream
|
||||||
|
|
||||||
### [0.2.1] - 2021-01-15
|
### [0.2.1] - 2021-01-15
|
||||||
Changed
|
#### Fixed
|
||||||
- Add missing backtick to `readme.txt`
|
- Add missing backtick to `readme.txt`
|
||||||
|
|
||||||
### [0.2.0] - 2021-01-15
|
### [0.2.0] - 2021-01-15
|
||||||
Added
|
#### Added
|
||||||
- `changelog.txt`
|
- `changelog.txt`
|
||||||
- Changelog maintenance steps to `README.md`
|
- Changelog maintenance steps to `README.md`
|
||||||
- Link to Github repository in `readme.txt`
|
- Link to Github repository in `readme.txt`
|
||||||
- Option to show events of a specific group by indicating its name
|
- Option to show events of a specific group by indicating its name
|
||||||
Changed
|
#### Changed
|
||||||
- Use same Markdown style in `README.md` as in other documents
|
- Use same Markdown style in `README.md` as in other documents
|
||||||
|
|
||||||
### [0.1.0] - 2021-01-09
|
### [0.1.0] - 2021-01-09
|
||||||
|
Reference in New Issue
Block a user