Skip to content

Commit

Permalink
16.4.0 deb final - round0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Portnoy committed Jun 15, 2020
1 parent cc400d1 commit 49c0e4f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
24 changes: 24 additions & 0 deletions deb/kaltura-base/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
kaltura-base (16.4.0-2) propus; urgency=medium

* Support GB units for usage in custom reports (https://github.com/kaltura/server/pull/9494)
* PLAT-10785: Handle attachment filename CRLF HTML chars (https://github.com/kaltura/server/pull/9493)
* PLAT-10897: `batchJob` - add `urgency` member (https://github.com/kaltura/server/pull/9487)
* REACH2-849: Added notification to be sent when caption is ready and all the conditions are fulfilled (https://github.com/kaltura/server/pull/9486)
* REACH2-678: Do not retrieve captions for `getPlaybackContext` when `displayOnPlayer` is false (https://github.com/kaltura/server/pull/9483)
* PLAT-10914: Support searching for terms in specific fields (https://github.com/kaltura/server/pull/9481)
* PLAT-10944: Export source once conversion is done (https://github.com/kaltura/server/pull/9480)
* PLAT-10914: Support excluding search group when using free text search (https://github.com/kaltura/server/pull/9477)
* Support S3 authentication using ARN role name (https://github.com/kaltura/server/pull/9476)
* `KalturaConvertJobData`: store CPU usage stats (https://github.com/kaltura/server/pull/9475)
* PLAT-10934: Add v7 player UI Conf to KMC wrapper (https://github.com/kaltura/server/pull/9470)
* REACH2-871: Change to the way bulk upload result is displayed in REACH (https://github.com/kaltura/server/pull/9467)
* PATH-837: Add `PLAYBACK_BASE_PERMISSION` permission to `interactivity.get()` (https://github.com/kaltura/server/pull/9466)
* FEC-9495: Add canary version to `embedPlaykit` action (https://github.com/kaltura/server/pull/9461)
* REACH2-867: Support adding `captionAssetId` to translation `EntryVendorTask` (https://github.com/kaltura/server/pull/9459)
* PLAT-10943: Periodic export - update `lastId` when there're no hits in … (https://github.com/kaltura/server/pull/9456)
* PLAT-10782: deployment/uiconf/deploy_v2.php fix (https://github.com/kaltura/server/pull/9455)
* PLAT-10916: Add `user.validateHashKay()` (https://github.com/kaltura/server/pull/9454)
* PLAT-10933: Generate direct URL to packager with auth header for internal use (https://github.com/kaltura/server/pull/9451)

-- Jess Portnoy <jess@b0f924504114> Mon, 15 Jun 2020 09:38:30 +0000

kaltura-base (16.4.0-1) propus; urgency=medium

* Switching to 16.4.0
Expand Down
1 change: 0 additions & 1 deletion deb/kaltura-base/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Depends:
php5-mysql|php-mysql|kaltura-php7-mysql,
php5-cli|php-cli|kaltura-php7-cli,
php5-curl|php-curl|kaltura-php7-curl,
php-mbstring,
php5-memcache|php-memcache|kaltura-php7-memcache
Description: Kaltura Open Source Video Platform
Kaltura is the world's first Open Source Online Video Platform, transforming the way people work, learn,
Expand Down
9 changes: 3 additions & 6 deletions deb/kaltura-elasticsearch/debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if [ "$1" = "configure" ]; then
set +e
echo "Waiting for the ElasticSearch daemon to start..."
ATTEMPT=0
while ! curl -f "http://$ES_HOST:$ES_PORT/_cluster/health?wait_for_status=yellow&timeout=10s" >> /dev/null 2>&1;do
while ! curl -f "http://$ES_HOST:$ES_PORT" >> /dev/null 2>&1;do
sleep 5
if [ $ATTEMPT -eq 22 ];then
echo "We've waited a minute and the ES daemon is still unreachable, we're giving up:("
Expand Down Expand Up @@ -109,13 +109,10 @@ if [ "$1" = "configure" ]; then
elasticServer = $ES_HOST
elasticPort = $ES_PORT
" >$APP_DIR/configurations/elastic/populate/`hostname`.ini
sed -i 's#^;ElasticSearch#ElasticSearch#g' $APP_DIR/configurations/plugins.ini
sed -i -e "s#@ELASTIC_PORT@#$ES_PORT#g" -e "s#@ELASTIC_HOST@#$ES_HOST#g" $APP_DIR/configurations/elastic.ini
php $APP_DIR/deployment/base/scripts/installPlugins.php
find $APP_DIR/cache/ -type f -exec rm {} \;
php $APP_DIR/generator/generate.php
find $BASE_DIR/app/cache/ -type d -exec chmod 775 {} \;
find $BASE_DIR/app/cache/ -type f -exec chmod 664 {} \;
find $APP_DIR/cache/ -type d -exec chmod 775 {} \;
find $APP_DIR/cache/ -type f -exec chmod 664 {} \;
chown -R kaltura.www-data $BASE_DIR/app/cache/

invoke-rc.d apache2 restart
Expand Down

0 comments on commit 49c0e4f

Please sign in to comment.