Skip to content

Commit

Permalink
chore(release): release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bd82 committed Jan 5, 2024
1 parent a6b627f commit 1e33184
Show file tree
Hide file tree
Showing 15 changed files with 154 additions and 23 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Change Log

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

# 2.0.0 (2024-01-05)

### Bug Fixes

- add .npmignore files to remove unneeded contents in published pkgs ([998b1f8](https://github.com/SAP/vscode-logging/commit/998b1f8341352af2bba9a640f425c66c2d3a8a74))
- convert timestamp format according to ISO-8601 ([b4ab3e4](https://github.com/SAP/vscode-logging/commit/b4ab3e48829df42bd73c67de3f068385aabd1259))
- source Location Tracking not affecting ChildLoggers ([72b151a](https://github.com/SAP/vscode-logging/commit/72b151a773ba2707cb131d59799389a7cfe93c85)), closes [#15](https://github.com/SAP/vscode-logging/issues/15)
- typo in the logging.level configuration description ([#181](https://github.com/SAP/vscode-logging/issues/181)) ([c05b17d](https://github.com/SAP/vscode-logging/commit/c05b17d4348e89f27a3cb86f2e20bc190cdf1afb))
- update yarn.lock ([#144](https://github.com/SAP/vscode-logging/issues/144)) ([33ec5ac](https://github.com/SAP/vscode-logging/commit/33ec5acfda275b9717a5986012667b8e854c6c5e))
- upgrade lodash version due to CVE-2021-23337 ([c514c16](https://github.com/SAP/vscode-logging/commit/c514c169ae5941cea9ebd5ae0dcb4eef8fc431d8))
- **logger:** vscode-logging/types package should be a dependency ([e2ea6c7](https://github.com/SAP/vscode-logging/commit/e2ea6c7d26efed219f2b983ad7e601eeb9f4704f))

### Features

- **wrapper:** remove dep to @types/vscode ([#167](https://github.com/SAP/vscode-logging/issues/167)) ([b362e5c](https://github.com/SAP/vscode-logging/commit/b362e5c3b11020ab09a5e705d7834fa53e8bd48e))
- logger wrapper package ([#163](https://github.com/SAP/vscode-logging/issues/163)) ([fc6abc5](https://github.com/SAP/vscode-logging/commit/fc6abc5ea43403c3039edb8589c68a0a339e5ebc))
- support console as log target ([#109](https://github.com/SAP/vscode-logging/issues/109)) ([ea16211](https://github.com/SAP/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))
- **logger:** a memory leak when creating 9 or more ChildLogger's ([#76](https://github.com/SAP/vscode-logging/issues/76)) ([482c708](https://github.com/SAP/vscode-logging/commit/482c708e9b8643849f6a14253c51650ffac70416))
- aPI Fixes (dummy change to force minor version) ([0fb0fb6](https://github.com/SAP/vscode-logging/commit/0fb0fb624def760bb1a1cf4a7b46b18133d85cf0))
- initial Commit ([ee780af](https://github.com/SAP/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))

### Reverts

- Revert "chore: include release number in release commit" ([d9d9c68](https://github.com/SAP/vscode-logging/commit/d9d9c68471476be517a06b3dd8712d573d3f7fa6))

* Make OutputChannel optional. (#55) ([b7fa564](https://github.com/SAP/vscode-logging/commit/b7fa56436693df9787f8ea720559beb3b0566612)), closes [#55](https://github.com/SAP/vscode-logging/issues/55) [#55](https://github.com/SAP/vscode-logging/issues/55)

### BREAKING CHANGES

- **wrapper:** `getConfigurations` and `onDidChangeConfiguration` properties
were removed from the `configureLogger` public API
- OutputChannel will not be created inside the logger as today. Alternatively, it
will be added as an optional parameter. The VS Code Extension will be able to create the
OutputChannel and send it to the logger as a parameter.
16 changes: 16 additions & 0 deletions examples/extension-wrapper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Bug Fixes

- typo in the logging.level configuration description ([#181](https://github.com/SAP/vscode-logging/issues/181)) ([c05b17d](https://github.com/SAP/vscode-logging/commit/c05b17d4348e89f27a3cb86f2e20bc190cdf1afb))

### Features

- **wrapper:** remove dep to @types/vscode ([#167](https://github.com/SAP/vscode-logging/issues/167)) ([b362e5c](https://github.com/SAP/vscode-logging/commit/b362e5c3b11020ab09a5e705d7834fa53e8bd48e))
- logger wrapper package ([#163](https://github.com/SAP/vscode-logging/issues/163)) ([fc6abc5](https://github.com/SAP/vscode-logging/commit/fc6abc5ea43403c3039edb8589c68a0a339e5ebc))

### BREAKING CHANGES

- **wrapper:** `getConfigurations` and `onDidChangeConfiguration` properties
were removed from the `configureLogger` public API

## [1.0.2](https://github.com/SAP/vscode-logging/compare/vscode-logging-extension-wrapper-example@[email protected]) (2021-09-12)

**Note:** Version bump only for package vscode-logging-extension-wrapper-example
Expand Down
6 changes: 3 additions & 3 deletions examples/extension-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"displayName": "logging-wrapper-example",
"description": "Example using @vscode-logging/logger and @vscode-logging/wrapper in a VSCode Extension",
"version": "1.0.2",
"version": "2.0.0",
"publisher": "SAP",
"engines": {
"vscode": "^1.52.0"
Expand Down Expand Up @@ -53,10 +53,10 @@
}
},
"dependencies": {
"@vscode-logging/wrapper": "^1.0.2"
"@vscode-logging/wrapper": "^2.0.0"
},
"devDependencies": {
"@types/vscode": "^1.52.0",
"@vscode-logging/types": "^0.1.4"
"@vscode-logging/types": "^2.0.0"
}
}
19 changes: 19 additions & 0 deletions examples/extension/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Bug Fixes

- typo in the logging.level configuration description ([#181](https://github.com/SAP/vscode-logging/issues/181)) ([c05b17d](https://github.com/SAP/vscode-logging/commit/c05b17d4348e89f27a3cb86f2e20bc190cdf1afb))

### Features

- initial Commit ([ee780af](https://github.com/SAP/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))
- support console as log target ([#109](https://github.com/SAP/vscode-logging/issues/109)) ([ea16211](https://github.com/SAP/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))

* Make OutputChannel optional. (#55) ([b7fa564](https://github.com/SAP/vscode-logging/commit/b7fa56436693df9787f8ea720559beb3b0566612)), closes [#55](https://github.com/SAP/vscode-logging/issues/55) [#55](https://github.com/SAP/vscode-logging/issues/55)

### BREAKING CHANGES

- OutputChannel will not be created inside the logger as today. Alternatively, it
will be added as an optional parameter. The VS Code Extension will be able to create the
OutputChannel and send it to the logger as a parameter.

## [1.1.3](https://github.com/SAP/vscode-logging/compare/vscode-logging-extension-example@[email protected]) (2021-04-13)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions examples/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"displayName": "logging-example",
"description": "Example using @vscode-logging/logger in a VSCode Extension",
"version": "1.1.3",
"version": "2.0.0",
"publisher": "SAP",
"engines": {
"vscode": "^1.32.0"
Expand Down Expand Up @@ -49,8 +49,8 @@
},
"scripts": {},
"dependencies": {
"@vscode-logging/library-example": "^0.1.4",
"@vscode-logging/logger": "^1.2.3"
"@vscode-logging/library-example": "^2.0.0",
"@vscode-logging/logger": "^2.0.0"
},
"devDependencies": {
"@types/vscode": "^1.32.0"
Expand Down
6 changes: 6 additions & 0 deletions examples/library/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Features

- initial Commit ([ee780af](https://github.com/sap/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))

## [0.1.4](https://github.com/sap/vscode-logging/compare/@vscode-logging/[email protected]...@vscode-logging/[email protected]) (2021-04-13)

**Note:** Version bump only for package @vscode-logging/library-example
Expand Down
4 changes: 2 additions & 2 deletions examples/library/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@vscode-logging/library-example",
"version": "0.1.4",
"version": "2.0.0",
"private": true,
"description": "Example node library using @vscode-logging/logger via Dependency Injection",
"main": "index.js",
"repository": "https://github.com/sap/vscode-logging/",
"license": "Apache-2.0",
"devDependencies": {
"@vscode-logging/types": "^0.1.4"
"@vscode-logging/types": "^2.0.0"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"message": "chore(release): release %s"
}
},
"version": "1.2.5"
"version": "2.0.0"
}
24 changes: 24 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,30 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Bug Fixes

- add .npmignore files to remove unneeded contents in published pkgs ([998b1f8](https://github.com/sap/vscode-logging/commit/998b1f8341352af2bba9a640f425c66c2d3a8a74))
- convert timestamp format according to ISO-8601 ([b4ab3e4](https://github.com/sap/vscode-logging/commit/b4ab3e48829df42bd73c67de3f068385aabd1259))
- **logger:** vscode-logging/types package should be a dependency ([e2ea6c7](https://github.com/sap/vscode-logging/commit/e2ea6c7d26efed219f2b983ad7e601eeb9f4704f))
- source Location Tracking not affecting ChildLoggers ([72b151a](https://github.com/sap/vscode-logging/commit/72b151a773ba2707cb131d59799389a7cfe93c85)), closes [#15](https://github.com/sap/vscode-logging/issues/15)

### Features

- support console as log target ([#109](https://github.com/sap/vscode-logging/issues/109)) ([ea16211](https://github.com/sap/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))
- **logger:** a memory leak when creating 9 or more ChildLogger's ([#76](https://github.com/sap/vscode-logging/issues/76)) ([482c708](https://github.com/sap/vscode-logging/commit/482c708e9b8643849f6a14253c51650ffac70416))
- aPI Fixes (dummy change to force minor version) ([0fb0fb6](https://github.com/sap/vscode-logging/commit/0fb0fb624def760bb1a1cf4a7b46b18133d85cf0))
- initial Commit ([ee780af](https://github.com/sap/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))

* Make OutputChannel optional. (#55) ([b7fa564](https://github.com/sap/vscode-logging/commit/b7fa56436693df9787f8ea720559beb3b0566612)), closes [#55](https://github.com/sap/vscode-logging/issues/55) [#55](https://github.com/sap/vscode-logging/issues/55)

### BREAKING CHANGES

- OutputChannel will not be created inside the logger as today. Alternatively, it
will be added as an optional parameter. The VS Code Extension will be able to create the
OutputChannel and send it to the logger as a parameter.

## [1.2.3](https://github.com/sap/vscode-logging/compare/@vscode-logging/[email protected]...@vscode-logging/[email protected]) (2021-04-13)

**Note:** Version bump only for package @vscode-logging/logger
Expand Down
4 changes: 2 additions & 2 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vscode-logging/logger",
"version": "1.2.3",
"version": "2.0.0",
"description": "Logger Library for VSCode Extensions",
"keywords": [
"vscode",
Expand All @@ -17,7 +17,7 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@vscode-logging/types": "^0.1.4",
"@vscode-logging/types": "^2.0.0",
"fast-safe-stringify": "2.1.1",
"fs-extra": "11.2.0",
"lodash": "4.17.21",
Expand Down
11 changes: 11 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Bug Fixes

- add .npmignore files to remove unneeded contents in published pkgs ([998b1f8](https://github.com/sap/vscode-logging/commit/998b1f8341352af2bba9a640f425c66c2d3a8a74))

### Features

- aPI Fixes (dummy change to force minor version) ([0fb0fb6](https://github.com/sap/vscode-logging/commit/0fb0fb624def760bb1a1cf4a7b46b18133d85cf0))
- initial Commit ([ee780af](https://github.com/sap/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))

## [0.1.4](https://github.com/sap/vscode-logging/compare/@vscode-logging/[email protected]...@vscode-logging/[email protected]) (2021-04-13)

**Note:** Version bump only for package @vscode-logging/types
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vscode-logging/types",
"version": "0.1.4",
"version": "2.0.0",
"description": "Common Type Signatures for @vscode-logging/logger",
"keywords": [
"vscode",
Expand Down
16 changes: 16 additions & 0 deletions packages/wrapper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2024-01-05)

### Bug Fixes

- upgrade lodash version due to CVE-2021-23337 ([c514c16](https://github.com/sap/vscode-logging/commit/c514c169ae5941cea9ebd5ae0dcb4eef8fc431d8))

### Features

- **wrapper:** remove dep to @types/vscode ([#167](https://github.com/sap/vscode-logging/issues/167)) ([b362e5c](https://github.com/sap/vscode-logging/commit/b362e5c3b11020ab09a5e705d7834fa53e8bd48e))
- logger wrapper package ([#163](https://github.com/sap/vscode-logging/issues/163)) ([fc6abc5](https://github.com/sap/vscode-logging/commit/fc6abc5ea43403c3039edb8589c68a0a339e5ebc))

### BREAKING CHANGES

- **wrapper:** `getConfigurations` and `onDidChangeConfiguration` properties
were removed from the `configureLogger` public API

## [1.0.2](https://github.com/sap/vscode-logging/compare/@vscode-logging/[email protected]...@vscode-logging/[email protected]) (2021-09-12)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/wrapper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vscode-logging/wrapper",
"version": "1.0.2",
"version": "2.0.0",
"description": "opinionated DI based wrapper for @vscode-logging/logger",
"keywords": [
"vscode",
Expand All @@ -17,8 +17,8 @@
"license": "Apache-2.0",
"typings": "./api.d.ts",
"dependencies": {
"@vscode-logging/logger": "^1.2.3",
"@vscode-logging/types": "^0.1.4"
"@vscode-logging/logger": "^2.0.0",
"@vscode-logging/types": "^2.0.0"
},
"devDependencies": {
"@types/lodash": "4.14.202",
Expand Down
16 changes: 8 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1e33184

Please sign in to comment.