From bc2ffe57db85e88b242f28258c5a04d7bfe175b5 Mon Sep 17 00:00:00 2001 From: Bincheng Wu Date: Wed, 12 Oct 2022 13:58:19 -0400 Subject: [PATCH 1/4] Release 1.11.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a3b7a74..2e698964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.11.0] - 2022-10-12 + +### Added +- Add support for deployment on RStudio Cloud + +### Changed +- rsconnect-python will now issue warnings if it detects environmental variables that overlap with stored credentials + ## [1.10.0] - 2022-07-27 ### Added From 5dcda3e2eac8387e54f77a820a5bc37d68858be7 Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Tue, 5 Jul 2022 16:05:23 -0400 Subject: [PATCH 2/4] set permissions --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5d32b730..bcfbe946 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,6 +5,9 @@ on: tags: ['*'] pull_request: branches: [master] +permissions: + id-token: write + contents: write jobs: test: strategy: From 0796ae24dedb2e13df8d51f46511732d246282f9 Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Tue, 28 Jun 2022 11:42:33 -0400 Subject: [PATCH 3/4] switch docs from AWS id/secret to a role --- .github/workflows/main.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bcfbe946..950b257d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -128,8 +128,7 @@ jobs: - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: aws-actions/configure-aws-credentials@v1 with: - aws-access-key-id: ${{ secrets.DOCS_AWS_ID }} - aws-secret-access-key: ${{ secrets.DOCS_AWS_SECRET }} + role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} aws-region: us-east-1 - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') run: make promote-docs-in-s3 From 2b7447466ecf08a0386c7acdd9990f18c0483a05 Mon Sep 17 00:00:00 2001 From: Michael Marchetti Date: Tue, 28 Jun 2022 11:46:13 -0400 Subject: [PATCH 4/4] update secret name --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 950b257d..142d133b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -128,7 +128,7 @@ jobs: - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') uses: aws-actions/configure-aws-credentials@v1 with: - role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} + role-to-assume: ${{ secrets.DOCS_AWS_ROLE }} aws-region: us-east-1 - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') run: make promote-docs-in-s3