Updating to zammad-2.5.0: Several challenges

Infos:

  • Used Zammad version: 2.4.0 -> 2.5.0
  • Used Zammad installation source: source
  • Operating system: linux - ubuntu 18.04
  • Browser + version: chrome 66

Expected behavior:

Actual behavior:

  • Updating doesn’t work

Special actions

  • Update to ruby-2.4.4: rvm install ruby-2.4.4
  • Delete all the files which are available in 2.4.0 but not in 2.5.0
./app/assets/javascripts/app/views/integration/ldap_user_attribute_row_read_only.jst.eco
./app/assets/javascripts/app/views/object_manager/edit.jst.eco
./config/database.yml.pkgr
./config/database.yml.test-mysql
./config/database.yml.test-postgresql
./config/initializers/html_email_style.rb
./contrib/cleanup.sh
./db/migrate/20180212000001_setting_add_ticket_auto_assignment.rb
./db/migrate/20180223000001_cleanup_user_preferences_notification_sound.rb
./lib/sequencer/unit/import/exchange/folder_contact/mapping.rb
./test/integration/auto_wizard_test.rb
./test/integration/calendar_subscriptions_tickets_test.rb
./test/integration/sipgate_controller_test.rb

I got the list of files by executing this script:

#!/bin/sh
# zammad-obsolete.sh
# Example: zammad-obsolete.sh zammad-2.4.0.tar.bz2 zammad-2.5.0.tar.bz2

OLD="$(mktemp)"
NEW="$(mktemp)"
bzip2 -cd "$1"|tar tf -|sort >"${OLD}"
bzip2 -cd "$2"|tar tf -|sort >"${NEW}"
diff "${OLD}" "${NEW}"\
|grep "^<"\
|cut -c3-
rm -f "${OLD}" "${NEW}"

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.