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

Feature/rr logs improvement #1952

Merged
merged 2 commits into from
Dec 17, 2023
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com), and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]
## [3.7.1] - 2023-12-17
### Added
* *Nothing*

Expand All @@ -19,6 +19,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this

### Fixed
* [#1947](https://github.com/shlinkio/shlink/issues/1947) Fix error when importing short URLs while using Postgres.
* [#1939](https://github.com/shlinkio/shlink/issues/1939) Fine-tune RoadRunner logs to avoid too many useless info.


## [3.7.0] - 2023-11-25
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@
"php-middleware/request-id": "^4.1",
"pugx/shortid-php": "^1.1",
"ramsey/uuid": "^4.7",
"shlinkio/shlink-common": "dev-main#4d0b6ca as 5.8",
"shlinkio/shlink-common": "^5.7.1",
"shlinkio/shlink-config": "^2.5",
"shlinkio/shlink-event-dispatcher": "^3.1",
"shlinkio/shlink-importer": "dev-main#4616c54 as 5.3",
"shlinkio/shlink-installer": "dev-develop#cb0eaea as 8.7",
"shlinkio/shlink-ip-geolocation": "dev-main#e8406aa as 3.4",
"shlinkio/shlink-importer": "^5.2.1",
"shlinkio/shlink-installer": "^8.6.1",
"shlinkio/shlink-ip-geolocation": "^3.4",
"shlinkio/shlink-json": "^1.1",
"spiral/roadrunner": "^2023.2",
"spiral/roadrunner-cli": "^2.5",
Expand Down
4 changes: 3 additions & 1 deletion config/roadrunner/.rr.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.0'
version: '3'

rpc:
listen: tcp://127.0.0.1:6001
Expand Down Expand Up @@ -38,3 +38,5 @@ logs:
level: debug
metrics:
level: debug
jobs:
level: debug
6 changes: 4 additions & 2 deletions config/roadrunner/.rr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.0'
version: '3'

rpc:
listen: tcp://127.0.0.1:6001
Expand Down Expand Up @@ -33,4 +33,6 @@ logs:
http:
mode: 'off' # Disable logging as Shlink handles it internally
server:
level: debug # Everything written to worker stderr is logged
level: info
jobs:
level: debug
Loading