Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
chore(main): release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 16, 2024
1 parent 3299b04 commit 8a0c382
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 37 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@
# Revision History for the OLCS Backend ### 4.0 2016-09-23 - Version 4.0 is the first version of the OLCS Self-serve to be published to GitHub

## 1.0.0 (2024-01-16)


### ⚠ BREAKING CHANGES

* upgrade to Laminas v3 ([#17](https://github.com/dvsa/olcs-selfserve/issues/17))
* migrate to GitHub ([#6](https://github.com/dvsa/olcs-selfserve/issues/6))

### Features

* migrate to GitHub ([#6](https://github.com/dvsa/olcs-selfserve/issues/6)) ([75aac02](https://github.com/dvsa/olcs-selfserve/commit/75aac0220cdcc8232c1066b59d0e3123fca75bc6))
* upgrade to Laminas v3 ([#17](https://github.com/dvsa/olcs-selfserve/issues/17)) ([3299b04](https://github.com/dvsa/olcs-selfserve/commit/3299b0421ac50dd0e8a0e73cb9c43309ea975540))


### Bug Fixes

* refactor constants to static variables ([#15](https://github.com/dvsa/olcs-selfserve/issues/15)) ([c9c54e3](https://github.com/dvsa/olcs-selfserve/commit/c9c54e3de08fdc20b2741bca21fa2261b5c759f3))
* remove form unit tests ([#11](https://github.com/dvsa/olcs-selfserve/issues/11)) ([a58e05c](https://github.com/dvsa/olcs-selfserve/commit/a58e05c809821f7edc5945f3003c5f348874b7e3))
* set `memory_limit` to 4G in PHPUnit configuration ([#9](https://github.com/dvsa/olcs-selfserve/issues/9)) ([9954443](https://github.com/dvsa/olcs-selfserve/commit/99544434c99bb3d88baad692e3340686cc434901))
* VOL-3471: TM Journey uses Verify when GOV.UK Acc toggle is off ([1d7beda](https://github.com/dvsa/olcs-selfserve/commit/1d7beda1b5d7280eeaf64d54ccc0253298d52cd2))


### Miscellaneous Chores

* add Dependabot config ([#10](https://github.com/dvsa/olcs-selfserve/issues/10)) ([ab4d991](https://github.com/dvsa/olcs-selfserve/commit/ab4d9919a25ddf6bb46f82f895179457cb721e33))

### 4.0.11 2016-12-12

- Version 4.0.11 is the second version of the OLCS Self-serve to be published to Githab. It contains enhancements to various features and remediation of defects discovered during the first three weeks of the Public Beta delivery.

Reference can be made to the composite release note provided.
Reference can be made to the composite release note provided.
Expand Down
72 changes: 36 additions & 36 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,43 +51,43 @@
"Common\\": "vendor/olcs/olcs-common/Common/src/Common"
}
},
"autoload-dev": {
"psr-4": {
"OlcsTest\\": "test/Olcs/src",
"PermitsTest\\": "test/Permits/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true,
"bamarni/composer-bin-plugin": true
"autoload-dev": {
"psr-4": {
"OlcsTest\\": "test/Olcs/src",
"PermitsTest\\": "test/Permits/src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true,
"bamarni/composer-bin-plugin": true
},
"platform": {
"ext-redis": "4.3"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": [
"@composer bin all install"
],
"test": "phpunit",
"phpcs": "phpcs",
"psalm": "psalm",
"phpstan": "phpstan",
"all": [
"@test",
"@phpcs",
"@psalm",
"@phpstan"
]
},
"platform": {
"ext-redis": "4.3"
}
},
"scripts": {
"bin": "echo 'bin not installed'",
"post-install-cmd": [
"@composer bin all install"
],
"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
}
}
}

0 comments on commit 8a0c382

Please sign in to comment.