Skip to content

Commit

Permalink
update radicale (3.3.3.0 -> 3.4.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
aine-etke committed Jan 11, 2025
1 parent 2a32fa5 commit 1cab009
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
8 changes: 4 additions & 4 deletions VERSIONS.diff.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Stable Updates Published**

* Borgmatic: 1.9.4 -> 1.9.5
* [Maubot](https://mau.dev/maubot/maubot): [v0.5.0](https://mau.dev/maubot/maubot/-/tags/v0.5.0) -> [v0.5.1](https://mau.dev/maubot/maubot/-/tags/v0.5.1)
* [Peertube](https://github.com/Chocobozzz/PeerTube): [v7.0.0](https://github.com/Chocobozzz/PeerTube/releases/tag/v7.0.0) -> [v7.0.1](https://github.com/Chocobozzz/PeerTube/releases/tag/v7.0.1)
* [Radicale](https://github.com/tomsquest/docker-radicale): [3.3.2.0](https://github.com/tomsquest/docker-radicale/releases/tag/3.3.2.0) -> [3.3.3.0](https://github.com/tomsquest/docker-radicale/releases/tag/3.3.3.0)
* [Cactus Comments Client](https://gitlab.com/cactus-comments/cactus-client): [2.34.0](https://gitlab.com/cactus-comments/cactus-client/-/tags/2.34.0) -> [2.35.0](https://gitlab.com/cactus-comments/cactus-client/-/tags/2.35.0)
* Docker Compose: v2.29.2 -> v2.32.1
* [Radicale](https://github.com/tomsquest/docker-radicale): [3.3.3.0](https://github.com/tomsquest/docker-radicale/releases/tag/3.3.3.0) -> [3.4.0.0](https://github.com/tomsquest/docker-radicale/releases/tag/3.4.0.0)
* Static Files: 2.34.0 -> 2.35.0
8 changes: 4 additions & 4 deletions VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
* Borgmatic: 1.9.5
* Buscarron: v1.4.3
* Cactus Comments: 0.9.0
* Cactus Comments Client: 2.34.0
* Cactus Comments Client: 2.35.0
* Chatgpt: 3.1.4
* Cinny: v4.2.3
* Container Socket Proxy: 0.2.0
* Corporal: 3.1.2
* Coturn: 4.6.2-r11
* Dimension: latest
* Discord: v0.7.2
* Docker Compose: v2.29.2
* Docker Compose: v2.32.1
* Draupnir: v1.87.0
* Dynamic Dns: 3.11.2
* Element: v1.11.89
Expand Down Expand Up @@ -72,7 +72,7 @@
* Prometheus Nginxlog Exporter: v1.10.0
* Prometheus Node Exporter: v1.8.2
* Prometheus Postgres Exporter: v0.14.0
* Radicale: 3.3.3.0
* Radicale: 3.4.0.0
* Rageshake: 1.13.0
* Redis: 7.2.5
* Registration: v0.7.2
Expand All @@ -83,7 +83,7 @@
* Sms Bridge: 0.5.9
* Spam Checker Mjolnir Antispam Git: v1.6.4
* Spam Checker Synapse Simple Antispam Git: 5ab711971e3a4541a7a40310ff85e17f8262cc05
* Static Files: 2.34.0
* Static Files: 2.35.0
* Sygnal: v0.15.1
* Synapse: v1.121.1
* Synapse Admin: v0.10.3-etke35
Expand Down
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
version: v7.0.1-0
name: peertube
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-radicale.git
version: v3.3.3.0-0
version: v3.4.0.0-0
name: radicale
- src: git+https://github.com/mother-of-all-self-hosting/ansible-role-ssh.git
version: main
Expand Down
6 changes: 3 additions & 3 deletions roles/galaxy/docker/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Ansible Role: Docker

[![CI](https://github.com/geerlingguy/ansible-role-docker/workflows/CI/badge.svg?event=push)](https://github.com/geerlingguy/ansible-role-docker/actions?query=workflow%3ACI)
[![CI](https://github.com/geerlingguy/ansible-role-docker/actions/workflows/ci.yml/badge.svg)](https://github.com/geerlingguy/ansible-role-docker/actions/workflows/ci.yml)

An Ansible Role that installs [Docker](https://www.docker.com) on Linux.

Expand Down Expand Up @@ -61,7 +61,7 @@ Docker Compose Plugin installation options. These differ from the below in that

```yaml
docker_install_compose: false
docker_compose_version: "2.29.2"
docker_compose_version: "v2.32.1"
docker_compose_arch: "{{ ansible_architecture }}"
docker_compose_url: "https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-linux-{{ docker_compose_arch }}"
docker_compose_path: /usr/local/bin/docker-compose
Expand All @@ -84,7 +84,7 @@ The main Docker repo URL, common between Debian and RHEL systems.
```yaml
docker_apt_release_channel: stable
docker_apt_arch: "{{ 'arm64' if ansible_architecture == 'aarch64' else 'amd64' }}"
docker_apt_repository: "deb [arch={{ docker_apt_arch }}] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
docker_apt_repository: "deb [arch={{ docker_apt_arch }}{{' signed-by=/etc/apt/keyrings/docker.asc' if add_repository_key is not failed}}] {{ docker_repo_url }}/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_apt_release_channel }}"
docker_apt_ignore_key_error: True
docker_apt_gpg_key: "{{ docker_repo_url }}/{{ ansible_distribution | lower }}/gpg"
docker_apt_filename: "docker"
Expand Down
2 changes: 1 addition & 1 deletion roles/galaxy/docker/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ docker_compose_package_state: present

# Docker Compose options.
docker_install_compose: false
docker_compose_version: "v2.29.2"
docker_compose_version: "v2.32.1"
docker_compose_arch: "{{ ansible_architecture }}"
docker_compose_url: "https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-linux-{{ docker_compose_arch }}"
docker_compose_path: /usr/local/bin/docker-compose
Expand Down
6 changes: 3 additions & 3 deletions roles/galaxy/docker/meta/.galaxy_install_info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
install_date: 'Tue 26 Nov 2024 11:16:24 AM '
install_commit: a60f86efb1194b91a385b77fa2c7b20740168e31
version: 7.4.3
install_date: 'Sat 11 Jan 2025 04:21:04 PM '
install_commit: ffc1374a227fbb1a36415ad4df71b6450d323d8f
version: 7.4.4
2 changes: 1 addition & 1 deletion roles/galaxy/radicale/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ radicale_identifier: radicale
radicale_uid: ''
radicale_gid: ''

radicale_version: 3.3.3.0
radicale_version: 3.4.0.0

# The hostname at which radicale is served.
radicale_hostname: ''
Expand Down
6 changes: 3 additions & 3 deletions roles/galaxy/radicale/meta/.galaxy_install_info
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
install_date: 'Sat 04 Jan 2025 06:46:39 PM '
install_commit: e59bd5b6565ff62c20184299e235158d2925dd1a
version: v3.3.3.0-0
install_date: 'Sat 11 Jan 2025 04:21:04 PM '
install_commit: e76e9dc058f7a88c530de8ecdaa27c19096ea0ae
version: v3.4.0.0-0
2 changes: 1 addition & 1 deletion upstream
Submodule upstream updated 32 files
+1 −1 README.md
+10 −30 docs/configuring-playbook-bridge-appservice-kakaotalk.md
+1 −1 docs/configuring-playbook-bridge-appservice-webhooks.md
+16 −30 docs/configuring-playbook-bridge-beeper-linkedin.md
+21 −5 docs/configuring-playbook-bridge-go-skype-bridge.md
+12 −2 docs/configuring-playbook-bridge-mautrix-bridges.md
+15 −50 docs/configuring-playbook-bridge-mautrix-discord.md
+12 −57 docs/configuring-playbook-bridge-mautrix-facebook.md
+14 −21 docs/configuring-playbook-bridge-mautrix-gmessages.md
+17 −32 docs/configuring-playbook-bridge-mautrix-googlechat.md
+15 −29 docs/configuring-playbook-bridge-mautrix-hangouts.md
+7 −27 docs/configuring-playbook-bridge-mautrix-instagram.md
+10 −50 docs/configuring-playbook-bridge-mautrix-meta-instagram.md
+11 −53 docs/configuring-playbook-bridge-mautrix-meta-messenger.md
+10 −59 docs/configuring-playbook-bridge-mautrix-signal.md
+10 −34 docs/configuring-playbook-bridge-mautrix-slack.md
+35 −41 docs/configuring-playbook-bridge-mautrix-telegram.md
+14 −26 docs/configuring-playbook-bridge-mautrix-twitter.md
+13 −35 docs/configuring-playbook-bridge-mautrix-whatsapp.md
+8 −0 docs/configuring-playbook-bridge-mautrix-wsproxy.md
+54 −20 docs/configuring-playbook-client-element-web.md
+44 −12 docs/configuring-playbook-client-schildichat-web.md
+23 −4 docs/configuring-playbook-conduit.md
+32 −12 docs/configuring-playbook-dendrite.md
+1 −1 docs/configuring-playbook-synapse-admin.md
+1 −1 docs/configuring-playbook-synapse-s3-storage-provider.md
+40 −26 docs/configuring-playbook-synapse.md
+1 −1 docs/configuring-playbook-telemetry.md
+1 −1 i18n/requirements.txt
+1 −1 requirements.yml
+1 −1 roles/custom/matrix-cactus-comments-client/defaults/main.yml
+1 −1 roles/custom/matrix-static-files/defaults/main.yml

0 comments on commit 1cab009

Please sign in to comment.