summaryrefslogtreecommitdiffstats
path: root/upgrading/4.4.0.txt
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:34:21 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2016-10-17 15:34:21 +0200
commitfdd932ff8d5e5899cfeae9a8b29011fa2cf9d439 (patch)
tree07afb8664e18e4d4fb479525b16db6edf026b72b /upgrading/4.4.0.txt
parentb091fb77580d56dbdca6424f9065581945b8e815 (diff)
parentc3f464f50fb35ffb7825b90437bd912051a994ee (diff)
downloadaur-fdd932ff8d5e5899cfeae9a8b29011fa2cf9d439.tar.gz
aur-fdd932ff8d5e5899cfeae9a8b29011fa2cf9d439.tar.xz
Merge branch 'master' into maint
Diffstat (limited to 'upgrading/4.4.0.txt')
-rw-r--r--upgrading/4.4.0.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/upgrading/4.4.0.txt b/upgrading/4.4.0.txt
new file mode 100644
index 00000000..afe01bea
--- /dev/null
+++ b/upgrading/4.4.0.txt
@@ -0,0 +1,17 @@
+1. Resize the URL column of the Packages table:
+
+----
+ALTER TABLE Packages MODIFY URL VARCHAR(8000) NULL DEFAULT NULL;
+----
+
+2. Resize the Source column of the PackageSources table:
+
+----
+ALTER TABLE PackageSources
+ MODIFY Source VARCHAR(8000) NOT NULL DEFAULT "/dev/null";
+----
+
+3. The location of the Git interface scripts was changed. Make sure you update
+ your aurweb configuration, as well as the SSH daemon and AUR Git repository
+ configurations to point to the new wrapper scripts which are located in
+ /usr/local/bin/ by default.