Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
next-team authored and rowanmanning committed Nov 23, 2023
1 parent d22e24a commit 87e3d00
Show file tree
Hide file tree
Showing 11 changed files with 45 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"packages/app-info": "2.2.0",
"packages/crash-handler": "3.0.6",
"packages/crash-handler": "3.0.7",
"packages/errors": "2.2.0",
"packages/eslint-config": "2.0.1",
"packages/fetch-error-handler": "0.1.1",
"packages/log-error": "3.1.4",
"packages/logger": "2.3.1",
"packages/middleware-log-errors": "3.0.6",
"packages/middleware-render-error-info": "4.0.1",
"packages/log-error": "3.1.5",
"packages/logger": "2.4.0",
"packages/middleware-log-errors": "3.0.7",
"packages/middleware-render-error-info": "4.0.2",
"packages/serialize-error": "2.2.0",
"packages/serialize-request": "2.2.1"
}
6 changes: 6 additions & 0 deletions packages/crash-handler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,12 @@
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.3 to ^3.1.4

### Dependencies

* The following workspace dependencies were updated
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.4 to ^3.1.5

## [3.0.0](https://github.com/Financial-Times/dotcom-reliability-kit/compare/crash-handler-v2.1.2...crash-handler-v3.0.0) (2023-08-07)


Expand Down
4 changes: 2 additions & 2 deletions packages/crash-handler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dotcom-reliability-kit/crash-handler",
"version": "3.0.6",
"version": "3.0.7",
"description": "A method to bind an uncaught exception handler to ensure that fatal application errors are logged",
"repository": {
"type": "git",
Expand All @@ -16,6 +16,6 @@
},
"main": "lib",
"dependencies": {
"@dotcom-reliability-kit/log-error": "^3.1.4"
"@dotcom-reliability-kit/log-error": "^3.1.5"
}
}
6 changes: 6 additions & 0 deletions packages/log-error/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@
* dependencies
* @dotcom-reliability-kit/logger bumped from ^2.3.0 to ^2.3.1

### Dependencies

* The following workspace dependencies were updated
* dependencies
* @dotcom-reliability-kit/logger bumped from ^2.3.1 to ^2.4.0

## [3.1.0](https://github.com/Financial-Times/dotcom-reliability-kit/compare/log-error-v3.0.1...log-error-v3.1.0) (2023-09-19)


Expand Down
4 changes: 2 additions & 2 deletions packages/log-error/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dotcom-reliability-kit/log-error",
"version": "3.1.4",
"version": "3.1.5",
"description": "A method to consistently log error object with optional request information",
"repository": {
"type": "git",
Expand All @@ -17,7 +17,7 @@
"main": "lib",
"dependencies": {
"@dotcom-reliability-kit/app-info": "^2.2.0",
"@dotcom-reliability-kit/logger": "^2.3.1",
"@dotcom-reliability-kit/logger": "^2.4.0",
"@dotcom-reliability-kit/serialize-error": "^2.2.0",
"@dotcom-reliability-kit/serialize-request": "^2.2.1"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
* dependencies
* @dotcom-reliability-kit/app-info bumped from ^2.1.0 to ^2.2.0

## [2.4.0](https://github.com/Financial-Times/dotcom-reliability-kit/compare/logger-v2.3.1...logger-v2.4.0) (2023-11-23)


### Features

* add useIsoTimeFormat option to format log timestamps ([d22e24a](https://github.com/Financial-Times/dotcom-reliability-kit/commit/d22e24a811e6bf4baef8adfcd8401330436a405f))

## [2.3.1](https://github.com/Financial-Times/dotcom-reliability-kit/compare/logger-v2.3.0...logger-v2.3.1) (2023-11-21)


Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dotcom-reliability-kit/logger",
"version": "2.3.1",
"version": "2.4.0",
"description": "A simple and fast logger based on Pino, with FT preferences baked in",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions packages/middleware-log-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.3 to ^3.1.4

### Dependencies

* The following workspace dependencies were updated
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.4 to ^3.1.5

## [3.0.0](https://github.com/Financial-Times/dotcom-reliability-kit/compare/middleware-log-errors-v2.1.1...middleware-log-errors-v3.0.0) (2023-08-07)


Expand Down
4 changes: 2 additions & 2 deletions packages/middleware-log-errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dotcom-reliability-kit/middleware-log-errors",
"version": "3.0.6",
"version": "3.0.7",
"description": "Express middleware to consistently log errors",
"repository": {
"type": "git",
Expand All @@ -16,7 +16,7 @@
},
"main": "lib",
"dependencies": {
"@dotcom-reliability-kit/log-error": "^3.1.4"
"@dotcom-reliability-kit/log-error": "^3.1.5"
},
"devDependencies": {
"@financial-times/n-express": "^28.1.3",
Expand Down
6 changes: 6 additions & 0 deletions packages/middleware-render-error-info/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.3 to ^3.1.4

### Dependencies

* The following workspace dependencies were updated
* dependencies
* @dotcom-reliability-kit/log-error bumped from ^3.1.4 to ^3.1.5

## [4.0.0](https://github.com/Financial-Times/dotcom-reliability-kit/compare/middleware-render-error-info-v3.1.0...middleware-render-error-info-v4.0.0) (2023-11-20)


Expand Down
4 changes: 2 additions & 2 deletions packages/middleware-render-error-info/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dotcom-reliability-kit/middleware-render-error-info",
"version": "4.0.1",
"version": "4.0.2",
"description": "Express middleware to render error information in a way that makes local debugging easier and production error rendering more consistent.",
"repository": {
"type": "git",
Expand All @@ -17,7 +17,7 @@
"main": "lib",
"dependencies": {
"@dotcom-reliability-kit/app-info": "^2.2.0",
"@dotcom-reliability-kit/log-error": "^3.1.4",
"@dotcom-reliability-kit/log-error": "^3.1.5",
"@dotcom-reliability-kit/serialize-error": "^2.2.0",
"entities": "^4.5.0"
},
Expand Down

0 comments on commit 87e3d00

Please sign in to comment.