Skip to content

Commit 277929a

Browse files
authored
Merge pull request #152 from rstudio/mbh-changelog
Update changelog in prep for 1.5.0 release
2 parents c508f98 + 27ad753 commit 277929a

File tree

6 files changed

+126
-134
lines changed

6 files changed

+126
-134
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@
1818
htmlcov
1919
/tests/testdata/**/rsconnect-python/
2020
/docs/docs/index.md
21+
/docs/docs/changelog.md

CHANGELOG.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
### Added
10+
### Changed
11+
### Deprecated
12+
### Removed
13+
### Fixed
14+
### Security
15+
16+
## [1.5.0] - 2020-TBD
17+
18+
### Added
19+
- support for deploying Streamlit and Bokeh applications
20+
- improved handling of HTTP timeouts
21+
- CI verification on macos with python3.8
22+
- trigger [rsconnect-jupyter](https://github.com/rstudio/rsconnect-jupyter) workflow on
23+
successful pushes to main branch
24+
25+
### Changed
26+
- default exclusion list to include common virtual environment directory names (`env`,
27+
`venv`, `.env`, and `.venv`)
28+
- environment internally represented as data class instead of dict
29+
- replace all internal "compatibility mode" references with "conda mode"
30+
- CI moved to GitHub Actions
31+
32+
### Removed
33+
- generation and publishing of `sdist` artifact
34+
35+
### Fixed
36+
- explicitly set the `--to-html` option to `nbconvert` when publishing a static notebook,
37+
as required by the latest version of `nbconvert`
38+
39+
40+
## [1.4.5] - 2020-04-10
41+
42+
### Changed
43+
- provide clearer feedback when errors happen while building bundles from a manifest
44+
- pin required versions of the `click` and `six` libraries that we use
45+
- help text touch up
46+
47+
### Fixed
48+
- output alignment under Python 2
49+
50+
51+
## [1.4.4] - 2020-04-02
52+
53+
### Changed
54+
- converted a traceback to a more appropriate message
55+
- updated `CookieJar` class to support marshalling/un-marshalling
56+
to/from a dictionary
57+
58+
### Fixed
59+
- an issue with cookie jar continuity across connections
60+
61+
62+
## [1.4.3] - 2020-04-01
63+
64+
### Changed
65+
- being more distinguishing between a server that's not running Connect and a credentials
66+
problem
67+
68+
69+
## [1.4.2] - 2020-03-27
70+
71+
### Added
72+
- more helpful feedback when a "requested object does not exist" error is returned by
73+
Connect
74+
75+
### Changed
76+
- be more distinguishing between a server that's not running Connect and a credentials
77+
problem
78+
79+
### Fixed
80+
- an issue where cookie header size could grow inappropriately (#107)
81+
- corrected the instructions to enable auto-completion
82+
83+
84+
## [1.4.1] - 2020-03-26
85+
86+
### Fixed
87+
- sticky sessions so we will track deploys correctly when RStudio Connect is in an
88+
HA/clustered environment
89+
90+
91+
## [1.4.0] - 2020-03-16
92+
93+
### Added
94+
- functions in `actions` that provide the same functionality as the CLI
95+
96+
### Changed
97+
- command line handling of options is more consistent across all commands
98+
- `test` command replaced with a more broadly functional `details` command
99+
- errors handled much more consistently and are more informative
100+
- CLI output is more clean
101+
- overall code has been refactored and improved for clarity, testability and stability
102+
- all CLI help has been improved for consistency, correctness and completeness
103+
- many documentation improvements in content and appearance
104+
105+
106+
## [1.3.0] - 2020-01-07
107+
108+
### Added
109+
- first release
110+
111+
112+
[Unreleased]: https://github.com/rstudio/rsconnect-python/compare/1.5.0...HEAD
113+
[1.5.0]: https://github.com/rstudio/rsconnect-python/compare/1.4.5...1.5.0
114+
[1.4.5]: https://github.com/rstudio/rsconnect-python/compare/1.4.4...1.4.5
115+
[1.4.4]: https://github.com/rstudio/rsconnect-python/compare/1.4.3...1.4.4
116+
[1.4.3]: https://github.com/rstudio/rsconnect-python/compare/1.4.2...1.4.3
117+
[1.4.2]: https://github.com/rstudio/rsconnect-python/compare/1.4.1...1.4.2
118+
[1.4.1]: https://github.com/rstudio/rsconnect-python/compare/1.4.0...1.4.1
119+
[1.4.0]: https://github.com/rstudio/rsconnect-python/compare/1.3.0...1.4.0
120+
[1.3.0]: https://github.com/rstudio/rsconnect-python/releases/tag/1.3.0

CONTRIBUTING

Lines changed: 0 additions & 47 deletions
This file was deleted.

NEWS.md

Lines changed: 0 additions & 85 deletions
This file was deleted.

docs/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ image:
2727
docker build -t $(MKDOCS_IMAGE) .
2828

2929
.PHONY: build
30-
build: docs/index.md
30+
build: docs/index.md docs/changelog.md
3131
$(BUILD_RUNNER) mkdocs build
32-
@rm docs/index.md
3332

3433
docs/index.md: $(CURDIR)/../README.md
3534
python3 patch_admonitions.py
35+
36+
docs/changelog.md: $(CURDIR)/../CHANGELOG.md
37+
cp -v $^ $@

docs/mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ plugins:
1919
nav:
2020
- index.md
2121
- API: mkapi/api/rsconnect
22+
- changelog.md
2223

2324
theme:
2425
name: material

0 commit comments

Comments
 (0)