Skip to content

Commit 1e33184

Browse files
committed
chore(release): release v2.0.0
1 parent a6b627f commit 1e33184

15 files changed

Lines changed: 154 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 2.0.0 (2024-01-05)
7+
8+
### Bug Fixes
9+
10+
- add .npmignore files to remove unneeded contents in published pkgs ([998b1f8](https://github.com/SAP/vscode-logging/commit/998b1f8341352af2bba9a640f425c66c2d3a8a74))
11+
- convert timestamp format according to ISO-8601 ([b4ab3e4](https://github.com/SAP/vscode-logging/commit/b4ab3e48829df42bd73c67de3f068385aabd1259))
12+
- 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)
13+
- 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))
14+
- update yarn.lock ([#144](https://github.com/SAP/vscode-logging/issues/144)) ([33ec5ac](https://github.com/SAP/vscode-logging/commit/33ec5acfda275b9717a5986012667b8e854c6c5e))
15+
- upgrade lodash version due to CVE-2021-23337 ([c514c16](https://github.com/SAP/vscode-logging/commit/c514c169ae5941cea9ebd5ae0dcb4eef8fc431d8))
16+
- **logger:** vscode-logging/types package should be a dependency ([e2ea6c7](https://github.com/SAP/vscode-logging/commit/e2ea6c7d26efed219f2b983ad7e601eeb9f4704f))
17+
18+
### Features
19+
20+
- **wrapper:** remove dep to @types/vscode ([#167](https://github.com/SAP/vscode-logging/issues/167)) ([b362e5c](https://github.com/SAP/vscode-logging/commit/b362e5c3b11020ab09a5e705d7834fa53e8bd48e))
21+
- logger wrapper package ([#163](https://github.com/SAP/vscode-logging/issues/163)) ([fc6abc5](https://github.com/SAP/vscode-logging/commit/fc6abc5ea43403c3039edb8589c68a0a339e5ebc))
22+
- support console as log target ([#109](https://github.com/SAP/vscode-logging/issues/109)) ([ea16211](https://github.com/SAP/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))
23+
- **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))
24+
- aPI Fixes (dummy change to force minor version) ([0fb0fb6](https://github.com/SAP/vscode-logging/commit/0fb0fb624def760bb1a1cf4a7b46b18133d85cf0))
25+
- initial Commit ([ee780af](https://github.com/SAP/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))
26+
27+
### Reverts
28+
29+
- Revert "chore: include release number in release commit" ([d9d9c68](https://github.com/SAP/vscode-logging/commit/d9d9c68471476be517a06b3dd8712d573d3f7fa6))
30+
31+
* 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)
32+
33+
### BREAKING CHANGES
34+
35+
- **wrapper:** `getConfigurations` and `onDidChangeConfiguration` properties
36+
were removed from the `configureLogger` public API
37+
- OutputChannel will not be created inside the logger as today. Alternatively, it
38+
will be added as an optional parameter. The VS Code Extension will be able to create the
39+
OutputChannel and send it to the logger as a parameter.

examples/extension-wrapper/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 2.0.0 (2024-01-05)
7+
8+
### Bug Fixes
9+
10+
- 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))
11+
12+
### Features
13+
14+
- **wrapper:** remove dep to @types/vscode ([#167](https://github.com/SAP/vscode-logging/issues/167)) ([b362e5c](https://github.com/SAP/vscode-logging/commit/b362e5c3b11020ab09a5e705d7834fa53e8bd48e))
15+
- logger wrapper package ([#163](https://github.com/SAP/vscode-logging/issues/163)) ([fc6abc5](https://github.com/SAP/vscode-logging/commit/fc6abc5ea43403c3039edb8589c68a0a339e5ebc))
16+
17+
### BREAKING CHANGES
18+
19+
- **wrapper:** `getConfigurations` and `onDidChangeConfiguration` properties
20+
were removed from the `configureLogger` public API
21+
622
## [1.0.2](https://github.com/SAP/vscode-logging/compare/vscode-logging-extension-wrapper-example@1.0.1...vscode-logging-extension-wrapper-example@1.0.2) (2021-09-12)
723

824
**Note:** Version bump only for package vscode-logging-extension-wrapper-example

examples/extension-wrapper/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"displayName": "logging-wrapper-example",
55
"description": "Example using @vscode-logging/logger and @vscode-logging/wrapper in a VSCode Extension",
6-
"version": "1.0.2",
6+
"version": "2.0.0",
77
"publisher": "SAP",
88
"engines": {
99
"vscode": "^1.52.0"
@@ -53,10 +53,10 @@
5353
}
5454
},
5555
"dependencies": {
56-
"@vscode-logging/wrapper": "^1.0.2"
56+
"@vscode-logging/wrapper": "^2.0.0"
5757
},
5858
"devDependencies": {
5959
"@types/vscode": "^1.52.0",
60-
"@vscode-logging/types": "^0.1.4"
60+
"@vscode-logging/types": "^2.0.0"
6161
}
6262
}

examples/extension/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 2.0.0 (2024-01-05)
7+
8+
### Bug Fixes
9+
10+
- 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))
11+
12+
### Features
13+
14+
- initial Commit ([ee780af](https://github.com/SAP/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))
15+
- support console as log target ([#109](https://github.com/SAP/vscode-logging/issues/109)) ([ea16211](https://github.com/SAP/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))
16+
17+
* 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)
18+
19+
### BREAKING CHANGES
20+
21+
- OutputChannel will not be created inside the logger as today. Alternatively, it
22+
will be added as an optional parameter. The VS Code Extension will be able to create the
23+
OutputChannel and send it to the logger as a parameter.
24+
625
## [1.1.3](https://github.com/SAP/vscode-logging/compare/vscode-logging-extension-example@1.1.2...vscode-logging-extension-example@1.1.3) (2021-04-13)
726

827
### Bug Fixes

examples/extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"displayName": "logging-example",
55
"description": "Example using @vscode-logging/logger in a VSCode Extension",
6-
"version": "1.1.3",
6+
"version": "2.0.0",
77
"publisher": "SAP",
88
"engines": {
99
"vscode": "^1.32.0"
@@ -49,8 +49,8 @@
4949
},
5050
"scripts": {},
5151
"dependencies": {
52-
"@vscode-logging/library-example": "^0.1.4",
53-
"@vscode-logging/logger": "^1.2.3"
52+
"@vscode-logging/library-example": "^2.0.0",
53+
"@vscode-logging/logger": "^2.0.0"
5454
},
5555
"devDependencies": {
5656
"@types/vscode": "^1.32.0"

examples/library/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 2.0.0 (2024-01-05)
7+
8+
### Features
9+
10+
- initial Commit ([ee780af](https://github.com/sap/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))
11+
612
## [0.1.4](https://github.com/sap/vscode-logging/compare/@vscode-logging/library-example@0.1.3...@vscode-logging/library-example@0.1.4) (2021-04-13)
713

814
**Note:** Version bump only for package @vscode-logging/library-example

examples/library/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@vscode-logging/library-example",
3-
"version": "0.1.4",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "Example node library using @vscode-logging/logger via Dependency Injection",
66
"main": "index.js",
77
"repository": "https://github.com/sap/vscode-logging/",
88
"license": "Apache-2.0",
99
"devDependencies": {
10-
"@vscode-logging/types": "^0.1.4"
10+
"@vscode-logging/types": "^2.0.0"
1111
}
1212
}

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"message": "chore(release): release %s"
1111
}
1212
},
13-
"version": "1.2.5"
13+
"version": "2.0.0"
1414
}

packages/logger/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# 2.0.0 (2024-01-05)
7+
8+
### Bug Fixes
9+
10+
- add .npmignore files to remove unneeded contents in published pkgs ([998b1f8](https://github.com/sap/vscode-logging/commit/998b1f8341352af2bba9a640f425c66c2d3a8a74))
11+
- convert timestamp format according to ISO-8601 ([b4ab3e4](https://github.com/sap/vscode-logging/commit/b4ab3e48829df42bd73c67de3f068385aabd1259))
12+
- **logger:** vscode-logging/types package should be a dependency ([e2ea6c7](https://github.com/sap/vscode-logging/commit/e2ea6c7d26efed219f2b983ad7e601eeb9f4704f))
13+
- 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)
14+
15+
### Features
16+
17+
- support console as log target ([#109](https://github.com/sap/vscode-logging/issues/109)) ([ea16211](https://github.com/sap/vscode-logging/commit/ea16211a5e2fbcdc86f4e96c8c60eaaf440d2431))
18+
- **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))
19+
- aPI Fixes (dummy change to force minor version) ([0fb0fb6](https://github.com/sap/vscode-logging/commit/0fb0fb624def760bb1a1cf4a7b46b18133d85cf0))
20+
- initial Commit ([ee780af](https://github.com/sap/vscode-logging/commit/ee780afa90dc17cfac91a28cb2921728c1cc4489))
21+
22+
* 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)
23+
24+
### BREAKING CHANGES
25+
26+
- OutputChannel will not be created inside the logger as today. Alternatively, it
27+
will be added as an optional parameter. The VS Code Extension will be able to create the
28+
OutputChannel and send it to the logger as a parameter.
29+
630
## [1.2.3](https://github.com/sap/vscode-logging/compare/@vscode-logging/logger@1.2.2...@vscode-logging/logger@1.2.3) (2021-04-13)
731

832
**Note:** Version bump only for package @vscode-logging/logger

packages/logger/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vscode-logging/logger",
3-
"version": "1.2.3",
3+
"version": "2.0.0",
44
"description": "Logger Library for VSCode Extensions",
55
"keywords": [
66
"vscode",
@@ -17,7 +17,7 @@
1717
"license": "Apache-2.0",
1818
"typings": "./api.d.ts",
1919
"dependencies": {
20-
"@vscode-logging/types": "^0.1.4",
20+
"@vscode-logging/types": "^2.0.0",
2121
"fast-safe-stringify": "2.1.1",
2222
"fs-extra": "11.2.0",
2323
"lodash": "4.17.21",

0 commit comments

Comments
 (0)