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

feat: update backup uploader credential using s3 compatible keys #1741

Merged
merged 15 commits into from
Apr 2, 2025

Conversation

JeffreyDallas
Copy link
Contributor

@JeffreyDallas JeffreyDallas commented Mar 28, 2025

Description

This pull request changes the following:

  • update backup uploader credential using s3 compatible keys

Related Issues

Pull request (PR) checklist

  • This PR added tests (unit, integration, and/or end-to-end)
  • This PR updated documentation
  • This PR added no TODOs or commented out code
  • This PR has no breaking changes
  • Any technical debt has been documented as a separate issue and linked to this PR
  • Any package.json changes have been explained to and approved by a repository manager
  • All related issues have been linked to this PR
  • All changes in this PR are included in the description
  • When this PR merges the commits will be squashed and the title will be used as the commit message, the 'commit message guidelines' below have been followed

Testing

  • This PR added unit tests
  • This PR added integration/end-to-end tests
  • These changes required manual testing that is documented below
  • Anything not tested is documented

The following manual testing was done:

  • TBD

The following was not tested:

  • TBD
Commit message guidelines We use 'Conventional Commits' to ensure that our commit messages are easy to read, follow a consistent format, and for automated release note generation. Please follow the guidelines below when writing your commit messages:
  1. BREAKING CHANGE: a commit that has a footer BREAKING CHANGE:, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type. NOTE: currently breaking changes will only bump the MAJOR version.
  2. The title is prefixed with one of the following:
Prefix Description Semantic Version Update Captured in Release Notes
feat: a new feature MINOR Yes
fix: a bug fix PATCH Yes
perf: performance PATCH Yes
refactor: code change that isn't feature or fix none No
test: adding missing tests none No
docs: changes to documentation none Yes
build: changes to build process none No
ci: changes to CI configuration none No
style: formatting, missing semi-colons, etc none No
chore: updating grunt tasks etc; no production code change none No

Signed-off-by: Jeffrey Tang <[email protected]>
Signed-off-by: Jeffrey Tang <[email protected]>
…rclone-support-aws

Signed-off-by: Jeffrey Tang <[email protected]>

# Conflicts:
#	src/commands/network.ts
Signed-off-by: Jeffrey Tang <[email protected]>
@JeffreyDallas JeffreyDallas requested review from a team as code owners March 28, 2025 14:41
@JeffreyDallas JeffreyDallas self-assigned this Mar 28, 2025
@JeffreyDallas JeffreyDallas marked this pull request as draft March 28, 2025 14:41
Copy link
Contributor

github-actions bot commented Mar 28, 2025

Unit Test Results - Linux

24 tests  ±0   24 ✅ ±0   0s ⏱️ ±0s
13 suites ±0    0 💤 ±0 
 1 files   ±0    0 ❌ ±0 

Results for commit 9531c93. ± Comparison against base commit a996817.

♻️ This comment has been updated with latest results.

Copy link
Contributor

github-actions bot commented Mar 28, 2025

Unit Test Results - Windows

  1 files  ±0   70 suites  ±0   3s ⏱️ ±0s
289 tests  - 1  289 ✅  - 1  0 💤 ±0  0 ❌ ±0 
294 runs   - 1  294 ✅  - 1  0 💤 ±0  0 ❌ ±0 

Results for commit 9531c93. ± Comparison against base commit a996817.

This pull request removes 1 test.
Should parse argv to args with datamask correctly ‑ Helpers Should parse argv to args with datamask correctly

♻️ This comment has been updated with latest results.

Copy link
Contributor

github-actions bot commented Apr 1, 2025

E2E Test Report

 18 files  ±0  122 suites  ±0   1h 31m 16s ⏱️ +26s
325 tests ±0  325 ✅ ±0  0 💤 ±0  0 ❌ ±0 
344 runs  ±0  344 ✅ ±0  0 💤 ±0  0 ❌ ±0 

Results for commit 9531c93. ± Comparison against base commit a996817.

♻️ This comment has been updated with latest results.

Copy link

codacy-production bot commented Apr 1, 2025

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
-0.09% (target: -1.00%) 69.23%
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (a996817) 34770 29445 84.69%
Head commit (9531c93) 34818 (+48) 29453 (+8) 84.59% (-0.09%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#1741) 78 54 69.23%

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

Copy link

codecov bot commented Apr 1, 2025

Codecov Report

Attention: Patch coverage is 69.23077% with 24 lines in your changes missing coverage. Please review.

Project coverage is 83.55%. Comparing base (a996817) to head (9531c93).
Report is 2 commits behind head on main.

Files with missing lines Patch % Lines
src/commands/network.ts 27.27% 24 Missing ⚠️
Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #1741      +/-   ##
==========================================
- Coverage   83.64%   83.55%   -0.09%     
==========================================
  Files         243      243              
  Lines       34770    34818      +48     
  Branches     2297     2591     +294     
==========================================
+ Hits        29084    29093       +9     
+ Misses       5628     5600      -28     
- Partials       58      125      +67     
Files with missing lines Coverage Δ
src/commands/flags.ts 67.81% <100.00%> (+0.49%) ⬆️
version.ts 81.25% <100.00%> (ø)
src/commands/network.ts 80.01% <27.27%> (-0.39%) ⬇️

... and 54 files with indirect coverage changes

Impacted file tree graph

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Signed-off-by: Jeffrey Tang <[email protected]>
@JeffreyDallas JeffreyDallas marked this pull request as ready for review April 1, 2025 18:01
@instamenta instamenta added the PR: Needs Manager Approval A pull request that needs review from a manager. label Apr 1, 2025
@jeromy-cannon jeromy-cannon merged commit d50ab5b into main Apr 2, 2025
44 of 46 checks passed
@jeromy-cannon jeromy-cannon deleted the 01521-D-rclone-support-aws branch April 2, 2025 06:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PR: Needs Manager Approval A pull request that needs review from a manager.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

clone and enhance the DevOps's backup uploader
3 participants