Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
chore(packagist): Fix deployment script to not use version in compose…
Browse files Browse the repository at this point in the history
…r.json

Use tags instead
  • Loading branch information
k911 committed Oct 7, 2018
1 parent 32f9776 commit c770598
Show file tree
Hide file tree
Showing 5 changed files with 132 additions and 98 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ script:

before_deploy:
- >-
export VERSION=$(cat ./composer.json | grep version | sed -E
"s/\s+\"version\": \"v(.*)\",/\1/") && echo "VERSION=${VERSION}"
export VERSION=$(git tag -l | sort -V -r | head -1 | sed -E 's/v(.*)/\1/') && echo "VERSION=${VERSION}"
- yarn global add conventional-changelog-cli conventional-recommended-bump conventional-github-releaser

deploy:
Expand Down
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<a name=""></a>
# (2018-10-07)


### Bug Fixes

* **command:** Decode configuration one more time ([32f9776](https://github.com/k911/swoole-bundle/commit/32f9776))
* **config:** Add trusted_proxies and trusted_hosts ([aae8873](https://github.com/k911/swoole-bundle/commit/aae8873)), closes [#5](https://github.com/k911/swoole-bundle/issues/5)
* **configuration:** Set proper service ids in symfony DI ([dda8c9d](https://github.com/k911/swoole-bundle/commit/dda8c9d))
* **swoole:** Fix static file serving ([443bd13](https://github.com/k911/swoole-bundle/commit/443bd13))
* **swoole:** Make swoole http server lazy ([#132](https://github.com/k911/swoole-bundle/issues/132)) ([04a7dcc](https://github.com/k911/swoole-bundle/commit/04a7dcc))


### Features

* **swoole:** Add ability to customize server ([3534ed0](https://github.com/k911/swoole-bundle/commit/3534ed0))
* **swoole:** Add advanced static file serving ([17cde60](https://github.com/k911/swoole-bundle/commit/17cde60))
* **swoole:** Allow to change publicdir at runtime ([c5a0c27](https://github.com/k911/swoole-bundle/commit/c5a0c27))
* **swoole:** Disable Xdebug using XdebugHandler ([97ae8e7](https://github.com/k911/swoole-bundle/commit/97ae8e7))
* **swoole:** Process and respond cookies ([0b7e883](https://github.com/k911/swoole-bundle/commit/0b7e883))
* **swoole:** Use multiple http server workers ([8062a33](https://github.com/k911/swoole-bundle/commit/8062a33))


### Performance Improvements

* **swoole:** Improve Dependency Injection configuration ([b9f6ddc](https://github.com/k911/swoole-bundle/commit/b9f6ddc))
* **swoole:** Improve Dependency Injection configuration ([6f83e11](https://github.com/k911/swoole-bundle/commit/6f83e11))
* **swoole:** Use callable array form to handle request to avoid function call ([67e3154](https://github.com/k911/swoole-bundle/commit/67e3154))


### BREAKING CHANGES

* **config:** - Env APP_TRUSTED_HOSTS is no longer supported
- Env APP_TRUSTED_PROXIES is no longer supported
- Configuration 'swoole.http_server.services.debug' is renamed to 'swoole.http_server.services.debug_handler'
- Configuration 'swoole.http_server.services.trust_all_proxies' is renamed to 'swoole.http_server.services.trust_all_proxies_handler'



1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"name": "k911/swoole-bundle",
"type": "library",
"description": "Swoole Symfony Bundle",
"version": "v0.1.0-dev",
"keywords": [
"PHP",
"Bundle",
Expand Down
Loading

0 comments on commit c770598

Please sign in to comment.