Skip to content

Commit dad201b

Browse files
authored
Merge pull request #2425 from posit-dev/dotnomad/1.4.0
1.4.0 Release
2 parents 392e648 + fa10e3e commit dad201b

File tree

4 files changed

+76
-6
lines changed

4 files changed

+76
-6
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,41 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.0]
9+
10+
### Changed
11+
12+
- Changed the behavior when the configuration has `type = 'unknown'`. Now
13+
several actions can be performed such as including/excluding files via
14+
the sidebar and re-deploying to Posit Connect if the content type was deployed
15+
with the unknown type. (#2419)
16+
- Changed the `quarto` type to `quarto-static` to match Posit Connect. The
17+
type `quarto` has been deprecated, and it is recommended to use
18+
`quarto-static`. (#1208)
19+
20+
### Added
21+
22+
- Added support for deploying Quarto script files (#1208)
23+
- Improved the Secrets view in the sidebar to show when the secret is already
24+
set for the content on Posit Connect, when a value is going to be set on
25+
deploy, and when a value needs to be set (#2365)
26+
- Added the ability to hide all input cells or hide input cells with the
27+
`hide_input` metadata tag in Jupyter notebooks using a new section in
28+
configuration files (#2399)
29+
30+
### Fixed
31+
32+
- Fixed an issue with new deployments with the unknown type (due to inspection)
33+
causing errors and not creating all necessary files (#2419)
34+
- Fixed unknown inspection occassionally not including the selected entrypoint
35+
in the generated configuration's files list (#2419)
36+
- Fixed a behavior causing `renv.lock` related errors to show in the Posit
37+
Publisher output channel and a vague "Could not scan..." message being
38+
shown. Now the specific errors are displayed for easier resolution. (#2408)
39+
- Replaced an unhelpful error with a much more informative message when
40+
attempting to inspect a Python file and a Python executable can not be found
41+
to do the inspection (#2385)
42+
843
## [1.2.1]
944

1045
### Changed

docs/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Install.
1111

1212
Download and install the VS Code extension.
1313

14-
- For Arm MacOS: [publisher-1.2.1-darwin-arm64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.2.1/publisher-1.2.1-darwin-arm64.vsix)
15-
- For Intel MacOS: [publisher-1.2.1-darwin-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.2.1/publisher-1.2.1-darwin-amd64.vsix)
16-
- For Windows: [publisher-1.2.1-windows-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.2.1/publisher-1.2.1-windows-amd64.vsix)
17-
- For Arm Linux: [publisher-1.2.1-linux-arm64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.2.1/publisher-1.2.1-linux-arm64.vsix)
18-
- For Intel Linux: [publisher-1.2.1-linux-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.2.1/publisher-1.2.1-linux-amd64.vsix)
14+
- For Arm MacOS: [publisher-1.4.0-darwin-arm64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.4.0/publisher-1.4.0-darwin-arm64.vsix)
15+
- For Intel MacOS: [publisher-1.4.0-darwin-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.4.0/publisher-1.4.0-darwin-amd64.vsix)
16+
- For Windows: [publisher-1.4.0-windows-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.4.0/publisher-1.4.0-windows-amd64.vsix)
17+
- For Arm Linux: [publisher-1.4.0-linux-arm64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.4.0/publisher-1.4.0-linux-arm64.vsix)
18+
- For Intel Linux: [publisher-1.4.0-linux-amd64.vsix](https://cdn.posit.co/publisher/releases/tags/v1.4.0/publisher-1.4.0-linux-amd64.vsix)
1919

2020
To learn how to install a `.vsix` file, see the [Install from a
2121
VSIX](https://code.visualstudio.com/docs/editor/extension-marketplace#_install-from-a-vsix)

extensions/vscode/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,41 @@ file.
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [1.4.0]
10+
11+
### Changed
12+
13+
- Changed the behavior when the configuration has `type = 'unknown'`. Now
14+
several actions can be performed such as including/excluding files via
15+
the sidebar and re-deploying to Posit Connect if the content type was deployed
16+
with the unknown type. (#2419)
17+
- Changed the `quarto` type to `quarto-static` to match Posit Connect. The
18+
type `quarto` has been deprecated, and it is recommended to use
19+
`quarto-static`. (#1208)
20+
21+
### Added
22+
23+
- Added support for deploying Quarto script files (#1208)
24+
- Improved the Secrets view in the sidebar to show when the secret is already
25+
set for the content on Posit Connect, when a value is going to be set on
26+
deploy, and when a value needs to be set (#2365)
27+
- Added the ability to hide all input cells or hide input cells with the
28+
`hide_input` metadata tag in Jupyter notebooks using a new section in
29+
configuration files (#2399)
30+
31+
### Fixed
32+
33+
- Fixed an issue with new deployments with the unknown type (due to inspection)
34+
causing errors and not creating all necessary files (#2419)
35+
- Fixed unknown inspection occassionally not including the selected entrypoint
36+
in the generated configuration's files list (#2419)
37+
- Fixed a behavior causing `renv.lock` related errors to show in the Posit
38+
Publisher output channel and a vague "Could not scan..." message being
39+
shown. Now the specific errors are displayed for easier resolution. (#2408)
40+
- Replaced an unhelpful error with a much more informative message when
41+
attempting to inspect a Python file and a Python executable can not be found
42+
to do the inspection (#2385)
43+
944
## [1.2.1]
1045

1146
### Changed

install-publisher.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ esac
148148

149149
# version override, swap out latest with the latest and greatest
150150
if [[ $VERSION_TYPE == "release" && $VERSION == "latest" ]]; then
151-
VERSION="1.2.1"
151+
VERSION="1.4.0"
152152
fi
153153

154154
# Variables

0 commit comments

Comments
 (0)