Skip to content

Commit

Permalink
chore: release [skip ci]
Browse files Browse the repository at this point in the history
- v14.2.0
  • Loading branch information
github-actions[bot] committed Nov 4, 2023
1 parent 9b108ff commit ae5b275
Show file tree
Hide file tree
Showing 57 changed files with 470 additions and 215 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,19 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)


### Features

* **deps:** update dependency @sentry/node to v7.77.0 ([#785](https://github.com/christophehurpeau/nightingale/issues/785)) ([ebcbe5b](https://github.com/christophehurpeau/nightingale/commit/ebcbe5b2a6f489ea5aeb27fc2071d2736dedac68))* nightingale-app-react-native add listenReactNativeUnhandledErrors ([88d2b0c](https://github.com/christophehurpeau/nightingale/commit/88d2b0c03873c994ba0e002601762264c741734f))* **nightingale:** improve unhandled error display ([a56473e](https://github.com/christophehurpeau/nightingale/commit/a56473e2eb09267c19f12ba7a3d89bccec21d3c5))

### Bug Fixes

* **nightingale-formatter:** fix duplicate name and message in error stack ([bf4faf6](https://github.com/christophehurpeau/nightingale/commit/bf4faf655afd80ae0040f8627ad1bff1ff558f90))* **nightingale-react-native-console:** fix stack log ([edcc9b5](https://github.com/christophehurpeau/nightingale/commit/edcc9b593655bee8edb743c6214b34590f0ff118))* update plugin-conventional-version ([9b108ff](https://github.com/christophehurpeau/nightingale/commit/9b108ffe8f8c66c7c78bc739d346b3277651fdfd))

## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)


Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "nightingale-monorepo",
"private": true,
"version": "14.1.0",
"version": "14.2.0",
"description": "Logger for browser and node, see [nightingale](packages/nightingale) to get started !",
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
"license": "ISC",
Expand Down
10 changes: 9 additions & 1 deletion packages/nightingale-ansi-formatter/CHANGELOG.md
@@ -1,8 +1,16 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-formatter
Version bump for dependency: nightingale-types


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-ansi-formatter
Expand Down
6 changes: 3 additions & 3 deletions packages/nightingale-ansi-formatter/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-ansi-formatter",
"version": "14.1.0",
"version": "14.2.0",
"description": "Nightingale ANSI formatter",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -75,8 +75,8 @@
},
"dependencies": {
"ansi-styles": "^6.2.1",
"nightingale-formatter": "14.1.0",
"nightingale-types": "14.1.0"
"nightingale-formatter": "14.2.0",
"nightingale-types": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
11 changes: 10 additions & 1 deletion packages/nightingale-app-console/CHANGELOG.md
@@ -1,8 +1,17 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale
Version bump for dependency: nightingale-browser-console
Version bump for dependency: nightingale-console


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-app-console
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-app-console/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-app-console",
"version": "14.1.0",
"version": "14.2.0",
"description": "nightingale default config and logger for app",
"keywords": [],
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
Expand Down Expand Up @@ -78,9 +78,9 @@
},
"dependencies": {
"@types/node": ">=18.0.0",
"nightingale": "14.1.0",
"nightingale-browser-console": "14.1.0",
"nightingale-console": "14.1.0"
"nightingale": "14.2.0",
"nightingale-browser-console": "14.2.0",
"nightingale-console": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
13 changes: 12 additions & 1 deletion packages/nightingale-app-react-native/CHANGELOG.md
@@ -1,8 +1,19 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)


### Features

* nightingale-app-react-native add listenReactNativeUnhandledErrors ([88d2b0c](https://github.com/christophehurpeau/nightingale/commit/88d2b0c03873c994ba0e002601762264c741734f))
Version bump for dependency: nightingale
Version bump for dependency: nightingale-browser-console
Version bump for dependency: nightingale-react-native-console


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-app-react-native
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-app-react-native/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-app-react-native",
"version": "14.1.0",
"version": "14.2.0",
"description": "React Native and Expo logger for application",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -83,9 +83,9 @@
}
},
"dependencies": {
"nightingale": "14.1.0",
"nightingale-browser-console": "14.1.0",
"nightingale-react-native-console": "14.1.0"
"nightingale": "14.2.0",
"nightingale-browser-console": "14.2.0",
"nightingale-react-native-console": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
11 changes: 10 additions & 1 deletion packages/nightingale-browser-console-formatter/CHANGELOG.md
@@ -1,8 +1,17 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-formatter
Version bump for dependency: nightingale-types
Version bump for dependency: nightingale-levels


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-browser-console-formatter
Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-browser-console-formatter/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-browser-console-formatter",
"version": "14.1.0",
"version": "14.2.0",
"description": "Nightingale Browser console formatter",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -81,13 +81,13 @@
]
},
"dependencies": {
"nightingale-formatter": "14.1.0",
"nightingale-types": "14.1.0"
"nightingale-formatter": "14.2.0",
"nightingale-types": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"nightingale-levels": "14.1.0",
"nightingale-levels": "14.2.0",
"pob-babel": "36.4.4",
"typescript": "5.2.2"
}
Expand Down
12 changes: 11 additions & 1 deletion packages/nightingale-browser-console/CHANGELOG.md
@@ -1,8 +1,18 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-browser-console-formatter
Version bump for dependency: nightingale-console-output
Version bump for dependency: nightingale-debug
Version bump for dependency: nightingale-types


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-browser-console
Expand Down
10 changes: 5 additions & 5 deletions packages/nightingale-browser-console/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-browser-console",
"version": "14.1.0",
"version": "14.2.0",
"description": "Browser console handler for nightingale",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -72,10 +72,10 @@
]
},
"dependencies": {
"nightingale-browser-console-formatter": "14.1.0",
"nightingale-console-output": "14.1.0",
"nightingale-debug": "14.1.0",
"nightingale-types": "14.1.0"
"nightingale-browser-console-formatter": "14.2.0",
"nightingale-console-output": "14.2.0",
"nightingale-debug": "14.2.0",
"nightingale-types": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
13 changes: 12 additions & 1 deletion packages/nightingale-console-example/CHANGELOG.md
@@ -1,8 +1,19 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)


### Features

* **deps:** update dependency @sentry/node to v7.77.0 ([#785](https://github.com/christophehurpeau/nightingale/issues/785)) ([ebcbe5b](https://github.com/christophehurpeau/nightingale/commit/ebcbe5b2a6f489ea5aeb27fc2071d2736dedac68))
Version bump for dependency: nightingale
Version bump for dependency: nightingale-console
Version bump for dependency: nightingale-sentry


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)


Expand Down
8 changes: 4 additions & 4 deletions packages/nightingale-console-example/package.json
@@ -1,7 +1,7 @@
{
"name": "nightingale-console-example",
"private": true,
"version": "14.1.0",
"version": "14.2.0",
"author": "Christophe Hurpeau <christophe@hurpeau.com> (https://christophe.hurpeau.com)",
"license": "ISC",
"repository": {
Expand Down Expand Up @@ -61,9 +61,9 @@
},
"dependencies": {
"@sentry/node": "7.77.0",
"nightingale": "14.1.0",
"nightingale-console": "14.1.0",
"nightingale-sentry": "14.1.0"
"nightingale": "14.2.0",
"nightingale-console": "14.2.0",
"nightingale-sentry": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
10 changes: 9 additions & 1 deletion packages/nightingale-console-output/CHANGELOG.md
@@ -1,8 +1,16 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-levels
Version bump for dependency: nightingale-types


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-console-output
Expand Down
6 changes: 3 additions & 3 deletions packages/nightingale-console-output/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-console-output",
"version": "14.1.0",
"version": "14.2.0",
"description": "Nightingale console output",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -81,8 +81,8 @@
},
"dependencies": {
"@types/node": ">=18.0.0",
"nightingale-levels": "14.1.0",
"nightingale-types": "14.1.0"
"nightingale-levels": "14.2.0",
"nightingale-types": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
14 changes: 13 additions & 1 deletion packages/nightingale-console/CHANGELOG.md
@@ -1,8 +1,20 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-ansi-formatter
Version bump for dependency: nightingale-console-output
Version bump for dependency: nightingale-debug
Version bump for dependency: nightingale-json-formatter
Version bump for dependency: nightingale-levels
Version bump for dependency: nightingale-types


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-console
Expand Down
14 changes: 7 additions & 7 deletions packages/nightingale-console/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-console",
"version": "14.1.0",
"version": "14.2.0",
"description": "Console handler for nightingale",
"keywords": [
"nightingale",
Expand Down Expand Up @@ -57,12 +57,12 @@
},
"dependencies": {
"@types/node": ">=18.0.0",
"nightingale-ansi-formatter": "14.1.0",
"nightingale-console-output": "14.1.0",
"nightingale-debug": "14.1.0",
"nightingale-json-formatter": "14.1.0",
"nightingale-levels": "14.1.0",
"nightingale-types": "14.1.0"
"nightingale-ansi-formatter": "14.2.0",
"nightingale-console-output": "14.2.0",
"nightingale-debug": "14.2.0",
"nightingale-json-formatter": "14.2.0",
"nightingale-levels": "14.2.0",
"nightingale-types": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down
9 changes: 8 additions & 1 deletion packages/nightingale-debug/CHANGELOG.md
@@ -1,8 +1,15 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [14.2.0](https://github.com/christophehurpeau/nightingale/compare/v14.1.0...v14.2.0) (2023-11-04)

Note: no notable changes

Version bump for dependency: nightingale-levels


## [14.1.0](https://github.com/christophehurpeau/nightingale/compare/v14.0.2...v14.1.0) (2023-07-27)

**Note:** Version bump only for package nightingale-debug
Expand Down
4 changes: 2 additions & 2 deletions packages/nightingale-debug/package.json
@@ -1,6 +1,6 @@
{
"name": "nightingale-debug",
"version": "14.1.0",
"version": "14.2.0",
"description": "Nightingale debug",
"keywords": [
"logger"
Expand Down Expand Up @@ -80,7 +80,7 @@
]
},
"dependencies": {
"nightingale-levels": "14.1.0"
"nightingale-levels": "14.2.0"
},
"devDependencies": {
"@babel/core": "7.23.2",
Expand Down

0 comments on commit ae5b275

Please sign in to comment.