Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 5.0.0 #4

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,35 @@
# Revision History for the OLCS Transfer ### 4.0 2016-09-23 - Version 4.0 is the first version of the OLCS Transfer to be published to GitHub
# Changelog

## [5.0.0](https://github.com/dvsa/olcs-transfer/compare/v5.0.0...v5.0.0) (2024-02-14)


### ⚠ BREAKING CHANGES

* drop Laminas v2 support ([#3](https://github.com/dvsa/olcs-transfer/issues/3))
* migrate to GitHub ([#2](https://github.com/dvsa/olcs-transfer/issues/2))

### Features

* Close Handler for Conversations ([#14](https://github.com/dvsa/olcs-transfer/issues/14)) ([203cf76](https://github.com/dvsa/olcs-transfer/commit/203cf767b866aaeea021a4ba2de51cf6c07656b8))
* drop Laminas v2 support ([#3](https://github.com/dvsa/olcs-transfer/issues/3)) ([564fcf0](https://github.com/dvsa/olcs-transfer/commit/564fcf01080e72adcdf6a92314a44c918e48a799))
* drop support for Laminas 2, remove last createService methods ([#21](https://github.com/dvsa/olcs-transfer/issues/21)) ([a27b074](https://github.com/dvsa/olcs-transfer/commit/a27b07483bfe72cb44238327c85f1fdfdbba5926))
* Introduce CreateMessage command ([#11](https://github.com/dvsa/olcs-transfer/issues/11)) ([402d21a](https://github.com/dvsa/olcs-transfer/commit/402d21a23acd53b8475f901b97b9e1b727facda0))
* migrate to GitHub ([#2](https://github.com/dvsa/olcs-transfer/issues/2)) ([9d457fd](https://github.com/dvsa/olcs-transfer/commit/9d457fdb8d4bac53e7d484021c3d952979b12109))
* VOL-4575 Conversation query rebuild ([#10](https://github.com/dvsa/olcs-transfer/issues/10)) ([be54dab](https://github.com/dvsa/olcs-transfer/commit/be54dabeb4ef6d15529f0e03205e9121c91b4b3a))


### Bug Fixes

* Fixed single chr typo that made it in with recent en-masse refactor of annotations. Causing issues on Admin IRFO pages on internal. ([#22](https://github.com/dvsa/olcs-transfer/issues/22)) ([5ba7b52](https://github.com/dvsa/olcs-transfer/commit/5ba7b5279ecb96cbe545d95587c503caba6c38a0))
* irfo stock control page ([#27](https://github.com/dvsa/olcs-transfer/issues/27)) ([9b20f1f](https://github.com/dvsa/olcs-transfer/commit/9b20f1f18e02c42775e85b87ed362765a2177ed3))
* mark `LaminasRouterHttpQueryV2` as `final` and return `static` ([#7](https://github.com/dvsa/olcs-transfer/issues/7)) ([49ec220](https://github.com/dvsa/olcs-transfer/commit/49ec220ab857b6832139b361fd17249f518bdf10))
* remove some outdated docblock comments that should have been removed during Laminas update ([#25](https://github.com/dvsa/olcs-transfer/issues/25)) ([f891a80](https://github.com/dvsa/olcs-transfer/commit/f891a80e7f82874887e08c1b624ef34fe413692e))
* VOL-4687 - Refactor ListConversation Query for compatibility with internal (applications) ([#5](https://github.com/dvsa/olcs-transfer/issues/5)) ([e152fef](https://github.com/dvsa/olcs-transfer/commit/e152fef3f759a85abf3c7aa8d7e3df693f960815))


### Miscellaneous Chores

* add Dependabot config ([#13](https://github.com/dvsa/olcs-transfer/issues/13)) ([d880c6f](https://github.com/dvsa/olcs-transfer/commit/d880c6f782213758a867021e8877626adb89a99b))
* release 5.0.0 ([#33](https://github.com/dvsa/olcs-transfer/issues/33)) ([b2803d3](https://github.com/dvsa/olcs-transfer/commit/b2803d3980f0705db0cbbee2dd15e9265e030838))

## Revision History for the OLCS Transfer ### 4.0 2016-09-23 - Version 4.0 is the first version of the OLCS Transfer to be published to GitHub
Expand Down
46 changes: 23 additions & 23 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,35 +29,35 @@
}
},
"autoload-dev": {
"psr-4": {
"Dvsa\\OlcsTest\\Transfer\\": "test/"
}
"psr-4": {
"Dvsa\\OlcsTest\\Transfer\\": "test/"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"test": "phpunit",
"phpcs": "phpcs",
"psalm": "psalm",
"phpstan": "phpstan",
"all": [
"@test",
"@phpcs",
"@psalm",
"@phpstan"
]
"bin": "echo 'bin not installed'",
"test": "phpunit",
"phpcs": "phpcs",
"psalm": "psalm",
"phpstan": "phpstan",
"all": [
"@test",
"@phpcs",
"@psalm",
"@phpstan"
]
},
"extra": {
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
"bamarni-bin": {
"bin-links": true,
"forward-command": true
}
},
"config": {
"allow-plugins": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"ext-redis": "4.3"
}
},
"platform": {
"ext-redis": "4.3"
}
}
}