Skip to content

Commit d7aa6b4

Browse files
authored
Merge branch 'master' into utf8mb4
2 parents 8408fb0 + 5e40910 commit d7aa6b4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ ENTRYPOINT [ "docker-entrypoint.sh" ]
9393
FROM hashtopolis-server-base as hashtopolis-server-dev
9494

9595
# Setting up development requirements, install xdebug
96-
RUN yes | pecl install xdebug && docker-php-ext-enable xdebug \
96+
RUN yes | pecl install xdebug-3.4.0beta1 && docker-php-ext-enable xdebug \
9797
&& echo "zend_extension=$(find /usr/local/lib/php/extensions/ -name xdebug.so)" > /usr/local/etc/php/conf.d/xdebug.ini \
9898
&& echo "xdebug.mode = debug" >> /usr/local/etc/php/conf.d/xdebug.ini \
9999
&& echo "xdebug.start_with_request = yes" >> /usr/local/etc/php/conf.d/xdebug.ini \

doc/changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# v0.14.3 -> v0.14.4
22

3+
34
## Enhancements
45

56
- Use utf8mb4 as default encoding in order to support the full unicode range
67

8+
## Bugfixes
9+
10+
- Fixed a bug where creating a new preprocessor would copy the configured limit command over the configured skip command
11+
712

813
# v0.14.2 -> v0.14.3
914

src/api/v2/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88

99
date_default_timezone_set("UTC");
10-
error_reporting(E_ALL);
10+
error_reporting(E_ALL ^ E_DEPRECATED);
1111
ini_set("display_errors", '1');
1212
/**
1313
* Treat warnings as error, very usefull during unit testing.

src/inc/utils/PreprocessorUtils.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static function addPreprocessor($name, $binaryName, $url, $keyspaceComman
5454
$limitCommand = null;
5555
}
5656

57-
$preprocessor = new Preprocessor(null, $name, $url, $binaryName, $keyspaceCommand, $limitCommand, $limitCommand);
57+
$preprocessor = new Preprocessor(null, $name, $url, $binaryName, $keyspaceCommand, $skipCommand, $limitCommand);
5858
Factory::getPreprocessorFactory()->save($preprocessor);
5959
}
6060

0 commit comments

Comments
 (0)