matrix-docker-ansible-deploy/roles/matrix-synapse
Slavi Pantaleev 677a2fc503 Fix compatibility with ansible=6 / ansible-core=2.13
Details here: https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_6.html#id36

Basically:

```yaml
- name: Prior to 2.13
  debug:
    msg: '[1] + {{ [2] }}'

- name: 2.13 and forward
  debug:
    msg: '{{ [1] + [2] }}'
```

Interestingly, we had been using the new/safe syntax in lofs of places.

We were using the broken one in many others though. Hopefully all
instances were fixed by this patch.
2022-05-18 15:43:39 +03:00
..
defaults Update Synapse v1.59.0 -> v.1.59.1 2022-05-18 11:37:34 +00:00
files Fix "endpoint seems conditional" determination in workers-doc-to-yaml.awk" 2022-05-06 09:08:45 +02:00
tasks Fix compatibility with ansible=6 / ansible-core=2.13 2022-05-18 15:43:39 +03:00
templates Upgrade Synapse (1.58.1 -> 1.59.0) 2022-05-17 13:08:17 +03:00
vars Do not proxy some endpoints to the generic Synapse worker 2022-05-07 09:39:19 +02:00