diff --git a/roles/appsmith/defaults/main.yml b/roles/appsmith/defaults/main.yml index acacd60..2837f55 100644 --- a/roles/appsmith/defaults/main.yml +++ b/roles/appsmith/defaults/main.yml @@ -1,11 +1,11 @@ --- # Version to deploy -appsmith_version: 1.4.1 +appsmith_version: 1.4.2 # URL of the source archive appsmith_archive_url: https://github.com/appsmithorg/appsmith/archive/v{{ appsmith_version }}.tar.gz # sha1sum of the archive -appsmith_archive_sha1: e8dd05a5b2ee1e213ecfbd7a01c315f193eceb52 +appsmith_archive_sha1: 99baeef4b2a70cf3fffd3f7dde66dd6f198e6538 # Root directory where appsmith will be installed appsmith_root_dir: /opt/appsmith diff --git a/roles/framadate/defaults/main.yml b/roles/framadate/defaults/main.yml index cb541b2..4ede80f 100644 --- a/roles/framadate/defaults/main.yml +++ b/roles/framadate/defaults/main.yml @@ -7,7 +7,7 @@ framadate_id: 1 framadate_root_dir: /opt/framadate_{{ framadate_id }} # The version to deploy -framadate_version: '1.1.12' +framadate_version: '1.1.14' # Should ansible manage upgrades, or only initial installation framadate_manage_upgrade: True @@ -16,7 +16,7 @@ framadate_manage_upgrade: True framadate_zip_url: https://framagit.org/framasoft/framadate/framadate/-/archive/{{ framadate_version }}/framadate-{{ framadate_version }}.zip # The sha1 checksum of the archive -framadate_zip_sha1: d3d5c3bc8a6f1e05dfb0a201d9ddf0138abfb1da +framadate_zip_sha1: 6c09ab4c99a0cf1ff6249df44fd73a1a70530928 # The user account under which PHP is executed framadate_php_user: php-framadate_{{ framadate_id }} diff --git a/roles/n8n/defaults/main.yml b/roles/n8n/defaults/main.yml index ef14245..bb35fa1 100644 --- a/roles/n8n/defaults/main.yml +++ b/roles/n8n/defaults/main.yml @@ -1,7 +1,7 @@ --- # Version to deploy -n8n_version: 0.109.0 +n8n_version: 0.110.3 # Root directory where n8n will be installed n8n_root_dir: /opt/n8n # User account under which n8n will run diff --git a/roles/n8n/tasks/install.yml b/roles/n8n/tasks/install.yml index 7d84f60..7e0cf1f 100644 --- a/roles/n8n/tasks/install.yml +++ b/roles/n8n/tasks/install.yml @@ -11,6 +11,11 @@ - python3 tags: n8n +- name: Wipe node_module on upgrade + file: path={{ n8n_root_dir }}/app/node_modules state=absent + when: n8n_install_mode == 'upgrade' + tags: n8n + - name: Install n8n npm: name: n8n