Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to dotnet 7 and Change log for July release #52

Merged
merged 3 commits into from
Jul 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## [2.0.120230710]
- Updating to latest B2k CLI version majorly for dotnet 7.0 upgrade. Please refer for release notes [here](https://github.com/Azure/Bridge-To-Kubernetes/blob/main/CHANGELOG.md#10202307061)
## [2.0.120230525]
- Updating to latest B2K CLI version - please refer for release notes [here](https://github.com/Azure/Bridge-To-Kubernetes/blob/main/CHANGELOG.md#10202305251)
- Fix the link appearing out of place in VS Code marketplace changes , PR link [here](https://github.com/Azure/vscode-bridge-to-kubernetes/pull/48)
Expand Down
155 changes: 13 additions & 142 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "mindaro",
"displayName": "Bridge to Kubernetes",
"description": "Rapid Kubernetes development for teams",
"version": "2.0.120230525",
"version": "2.0.120230716",
"icon": "images/bridge128.png",
"preview": false,
"publisher": "mindaro",
Expand Down Expand Up @@ -246,6 +246,6 @@
"url": "https://github.com/Azure/vscode-bridge-to-kubernetes"
},
"extensionMetadata": {
"expectedCLIVersion": "1.0.20230525.1"
"expectedCLIVersion": "1.0.20230706.1"
}
}
2 changes: 1 addition & 1 deletion src/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class Constants {
public static readonly KubectlDownloadDirectoryName = `kubectl`;
public static readonly DotNetDownloadDirectoryName = `dotnet`;
public static readonly KubectlMinVersion = `1.21.2`;
public static readonly DotNetMinVersion = `6.0.11`;
public static readonly DotNetMinVersion = `7.0.7`;

/* BinariesUtility Constants */
public static readonly CliVersionsUrlProd = `https://aka.ms/bridge-lks`;
Expand Down
Loading