Skip to content

Commit 39d255e

Browse files
authored
Merge branch 'main' into allow-plot-wizard-multi-y-selection
2 parents 71930c0 + 2d408ac commit 39d255e

File tree

7 files changed

+426
-418
lines changed

7 files changed

+426
-418
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.1.5] - 2023-10-10
6+
7+
### 🚀 New Features and Enhancements
8+
9+
- Add title option to plot wizard [#4786](https://github.com/iterative/vscode-dvc/pull/4786) by [@julieg18](https://github.com/julieg18)
10+
11+
### 🔨 Maintenance
12+
13+
- Add subscribe to YouTube message to README [#4794](https://github.com/iterative/vscode-dvc/pull/4794) by [@mattseddon](https://github.com/mattseddon)
14+
- Remove banner from README [#4795](https://github.com/iterative/vscode-dvc/pull/4795) by [@mattseddon](https://github.com/mattseddon)
15+
516
## [1.1.4] - 2023-10-09
617

718
### 🐛 Bug Fixes

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
![banner](https://raw.githubusercontent.com/iterative/vscode-dvc/main/extension/resources/banner.png)
2-
31
# DVC Extension for Visual Studio Code
42

53
![Version](https://img.shields.io/visual-studio-marketplace/v/iterative.dvc)
@@ -21,6 +19,9 @@ Code. This extension uses [DVC](https://dvc.org/), an open-source data
2119
versioning and ML experiment management tool. No additional services or
2220
databases are required.
2321

22+
🔔 Stay up-to-date with the latest product updates and tutorials by subscribing
23+
to the [DVC YouTube channel](https://www.youtube.com/@dvcorg8370/videos)!
24+
2425
![Extension Overview](https://raw.githubusercontent.com/iterative/vscode-dvc/main/extension/docs/overview.gif)
2526

2627
- **Experiment tracking**: Record training data, parameters, and metrics on top

extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"extensionDependencies": [
1010
"vscode.git"
1111
],
12-
"version": "1.1.4",
12+
"version": "1.1.5",
1313
"license": "Apache-2.0",
1414
"readme": "./README.md",
1515
"repository": {
@@ -1763,7 +1763,7 @@
17631763
"chai-as-promised": "7.1.1",
17641764
"clean-webpack-plugin": "4.0.0",
17651765
"copy-webpack-plugin": "11.0.0",
1766-
"fork-ts-checker-webpack-plugin": "8.0.0",
1766+
"fork-ts-checker-webpack-plugin": "9.0.0",
17671767
"jest": "29.7.0",
17681768
"jest-environment-node": "29.7.0",
17691769
"lint-staged": "14.0.1",

extension/resources/banner.png

-132 KB
Binary file not shown.

languageServer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@types/jest": "29.5.5",
3131
"clean-webpack-plugin": "4.0.0",
3232
"copy-webpack-plugin": "11.0.0",
33-
"fork-ts-checker-webpack-plugin": "8.0.0",
33+
"fork-ts-checker-webpack-plugin": "9.0.0",
3434
"ts-loader": "9.4.4",
3535
"lint-staged": "14.0.1",
3636
"jest": "29.7.0",

webview/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
"vega-util": "1.17.2"
4040
},
4141
"devDependencies": {
42-
"@storybook/addon-essentials": "7.4.5",
43-
"@storybook/addon-interactions": "7.4.5",
44-
"@storybook/addons": "7.4.5",
45-
"@storybook/builder-webpack5": "7.4.5",
42+
"@storybook/addon-essentials": "7.4.6",
43+
"@storybook/addon-interactions": "7.4.6",
44+
"@storybook/addons": "7.4.6",
45+
"@storybook/builder-webpack5": "7.4.6",
4646
"@storybook/manager-webpack5": "6.5.16",
4747
"@storybook/preset-scss": "1.0.3",
48-
"@storybook/react": "7.4.5",
49-
"@storybook/react-webpack5": "7.4.5",
48+
"@storybook/react": "7.4.6",
49+
"@storybook/react-webpack5": "7.4.6",
5050
"@storybook/testing-library": "0.2.2",
5151
"@svgr/core": "^8.0.0",
5252
"@svgr/plugin-jsx": "^8.0.1",
@@ -67,7 +67,7 @@
6767
"clean-webpack-plugin": "4.0.0",
6868
"css-loader": "6.8.1",
6969
"file-loader": "6.2.0",
70-
"fork-ts-checker-webpack-plugin": "8.0.0",
70+
"fork-ts-checker-webpack-plugin": "9.0.0",
7171
"identity-obj-proxy": "3.0.0",
7272
"jest": "29.7.0",
7373
"jest-canvas-mock": "2.5.2",
@@ -76,7 +76,7 @@
7676
"raw-loader": "4.0.2",
7777
"sass": "1.68.0",
7878
"sass-loader": "13.3.2",
79-
"storybook": "7.4.5",
79+
"storybook": "7.4.6",
8080
"storybook-addon-themes": "6.1.0",
8181
"style-loader": "3.3.3",
8282
"stylelint": "15.10.3",

0 commit comments

Comments
 (0)