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 master from dev #2862

Open
wants to merge 97 commits into
base: master
Choose a base branch
from
Open

Update master from dev #2862

wants to merge 97 commits into from

Conversation

pkishino
Copy link
Collaborator

Breaking change

<placeholder>

Proposed change

<placeholder>

Type of change

  • Bugfix (non-breaking change which fixes an issue)
  • New feature (which adds functionality to this container)
  • Breaking change (fix/feature causing existing functionality to break)

Additional information

  • This PR fixes or closes issue: fixes #
  • This PR is related to issue: relates to #
  • Link to documentation updated (if done separately): https://...

Checklist

  • The code change is tested and works locally.
  • There is no commented out code in this PR.

If user exposed functionality or configuration variables are added/changed:

  • Documentation added/updated

apsoyka and others added 30 commits April 19, 2023 11:22
* Added step to build a .deb file to install and reduce image size

* Fixed deb install incorrectly done
…2610)

* by checking for existence of default 127 address,healthcheck will never effectively run, as the non-default eth0 ip will never be matched

* the comparison was not trimming off the port, thus healthcheck was always going to fail or denote a change when there may have been none

* simplified the comparison (thanks @edgd1er )
* move vpn config download to /config

* fix git safe dir permissions

* cleanup vpn config clone

* re-add zip dl, set git to default
removed duplicate bracket
* separate transmission build to separate image and workflow

* set transmission-builder version

* use matrix for multi runner builds

* fix context
* consolidate and parallelize image build with matrix multi runner build

* fix image name
fixed typo
…sing PIA (#2657)

* Respect option `TRANSMISSION_RPC_URL`

remove debug echo

* default `TRANSMISSION_RPC_URL` is now grabbed from `default-settings.json`

* Stricter grep pattern

* Remove redundant grep

* Added comment

* Use `jq` instead of `sed` to determine the default of `TRANSMISSION_RPC_URL`

---------

Co-authored-by: Mark Honkoop <[email protected]>
* separate transmission build to separate image and workflow

* set transmission-builder version

* use matrix for multi runner builds

* fix context

* Fix file name

* fix image name
* consolidate and parallelize image build with matrix multi runner build

* fix image name

* update master (#2696)

* Add Transmissionic Web UI & New Documentation (#2589)

* Added step to build a .deb file to install and reduce image size (#2590)

* Added step to build a .deb file to install and reduce image size

* Fixed deb install incorrectly done

* Check for update-port script existing instead of being executable (#2593)

#2459

* Fixed TWC paths (#2600)

* add docker build caching to workflow (#2609)

* Privoxy eth0 fixes, healthcheck comparison tweak and start.sh update (#2610)

* by checking for existence of default 127 address,healthcheck will never effectively run, as the non-default eth0 ip will never be matched

* the comparison was not trimming off the port, thus healthcheck was always going to fail or denote a change when there may have been none

* simplified the comparison (thanks @edgd1er )

* Strip double quotes from umask check (#2601)

* Fix problem with enabled UFW with Random Ports (#2603)

Fixing #2255

* move vpn config download to /config (#2592)

* move vpn config download to /config

* fix git safe dir permissions

* cleanup vpn config clone

* re-add zip dl, set git to default

* use alpine:latest for TransmissionUIs build stage (#2573)

* Update fetch-external-configs.sh

removed duplicate bracket

* Update to transmission 4.0.4

* Update configure-openvpn.sh

* Switched the order of events, to remove the ipv6 before sed-ing the address (#2695)

* Create separate image for transmission build from source (#2691)

* separate transmission build to separate image and workflow

* set transmission-builder version

* use matrix for multi runner builds

* fix context

* parallel docker builds with matrix (#2694)

* consolidate and parallelize image build with matrix multi runner build

* fix image name

* Update Dockerfile

fixed typo

* `TRANSMISSION_RPC_URL` option causes a moved permanently error when using PIA (#2657)

* Respect option `TRANSMISSION_RPC_URL`

remove debug echo

* default `TRANSMISSION_RPC_URL` is now grabbed from `default-settings.json`

* Stricter grep pattern

* Remove redundant grep

* Added comment

* Use `jq` instead of `sed` to determine the default of `TRANSMISSION_RPC_URL`

---------

Co-authored-by: Mark Honkoop <[email protected]>

* Fix for PR #2691 (#2698)

* separate transmission build to separate image and workflow

* set transmission-builder version

* use matrix for multi runner builds

* fix context

* Fix file name

* fix image name

---------

Co-authored-by: Anastasiya Polina Soyka <[email protected]>
Co-authored-by: Geoff <[email protected]>
Co-authored-by: ksurl <[email protected]>
Co-authored-by: HeavyGee <[email protected]>
Co-authored-by: WitchRecipe <[email protected]>
Co-authored-by: Florian Kretschmer <[email protected]>
Co-authored-by: Aemulation <[email protected]>
Co-authored-by: Mark Honkoop <[email protected]>

* fix matrix to build all images

---------

Co-authored-by: Patrick Kishino <[email protected]>
Co-authored-by: Anastasiya Polina Soyka <[email protected]>
Co-authored-by: Geoff <[email protected]>
Co-authored-by: HeavyGee <[email protected]>
Co-authored-by: WitchRecipe <[email protected]>
Co-authored-by: Florian Kretschmer <[email protected]>
Co-authored-by: Aemulation <[email protected]>
Co-authored-by: Mark Honkoop <[email protected]>
* separate transmission build to separate image and workflow

* set transmission-builder version

* use matrix for multi runner builds

* fix context

* Fix file name

* fix image name

* fix transmission build version detection

* switch to combined platform builder

---------

Co-authored-by: Patrick Kishino <[email protected]>
* Mix of fixes to the heathcheck.sh from #2610 and start.sh from #2673.

* Made few more modifications to healthcheck.sh and start.sh. This change appears to be working.
Let's monitor this.

---------

Co-authored-by: Patrick Kishino <[email protected]>
Due to non-support of this in latest openvpn it is removed..
transmission-bot and others added 30 commits March 6, 2024 10:06
* Use a supported cipher in nordvpn configuration

AES-256-CBC cipher is no longer working for NordVPN. Use AES-256-GCM instead.

* Override the data ciphers list for nordvpn provider

Co-authored-by: ilike2burnthing <[email protected]>

---------

Co-authored-by: ilike2burnthing <[email protected]>
nslookup checks for IPv4 and IPv6 records in a single call by default. If either
returns an explicit lookup error, healthcheck.sh will report a failure. If the
upstream server is rejecting certain requests based on type, such as NordVPN
filtering IPv6, healthcheck.sh may never be able to report healthy. Resolve by
checking both a and aaaa records separately and only return a failure if both
fail.
…d workflow (#2843)

* transmission version: check with SHA & allow git push to trigger build workflow

* Create transmission-sha.txt

* update SHA for 4.0.6

* Create build-version.txt

* trigger Image Builds action on completion of Transmission Builds action

* Image Builds: ignore unnecessary paths

* transmission-version: revert to 4.0.5 for testing

* build-version: revert to 4.0.5 for testing

* transmission-sha: revert to 4.0.5 for testing
* Update transmission-version.txt

* Update build-version.txt

* Update transmission-sha.txt
* Update transmission-version.txt

* Update build-version.txt

* Update transmission-sha.txt

* Update docker-transmission-builds.yml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.