Commit Graph

438828 Commits

Author SHA1 Message Date
Sameer Naik d9d87a2258 Merge branch 'readme-fix 2017-01-19 18:39:10 +05:30
Sameer Naik a92a137e53 fix references to the `` volume 2017-01-19 18:34:02 +05:30
Sameer Naik 34ffb54b2a fix references to the `` volume 2017-01-19 18:29:20 +05:30
Sameer Naik f1fa37e3ee fix references to the `` volume 2017-01-19 18:27:44 +05:30
Sameer Naik cfd8e5f022 fix references to the `` volume 2017-01-19 18:26:56 +05:30
Sameer Naik c9067c5e31 fix references to the `` volume 2017-01-19 18:26:02 +05:30
Sameer Naik eb07cc0d08 fix references to the `` volume 2017-01-19 18:25:10 +05:30
Sameer Naik c8b3828b24 fix references to the `` volume 2017-01-19 18:24:22 +05:30
Sameer Naik e592bd6cf8 fix references to the `` volume 2017-01-19 18:23:35 +05:30
Sameer Naik 23ff900d8d fix references to the `` volume 2017-01-19 18:22:43 +05:30
Sameer Naik 817b09fc10 fix references to the `` volume 2017-01-19 18:21:51 +05:30
Sameer Naik 3197363d44 fix references to the `` volume 2017-01-19 18:21:04 +05:30
Sameer Naik 3b736c2b01 fix references to the `` volume 2017-01-19 18:20:10 +05:30
Bitnami Bot 933aec13f4 10.1.21-r0 release
MariaDB 10.1.20 contains several enhancements and bug fixes. Notable changes:
 - Innodb updated to 5.6.35
   - A file format compatibility bug that was introduced in MariaDB 10.1.0 was fixed. Using page_compression or non-default innodb_page_size created files that were incompatible with MariaDB 10.0 or MySQL 5.6. MariaDB 10.1.21 will convert affected files from earlier MariaDB 10.1 releases to compatible format. This prevents a downgrade to earlier MariaDB 10.1 versions. See the commit for details.
 - Performance Schema updated to 5.6.35
 - Fixes for the following security vulnerabilities:
   - CVE-2016-6664
   - CVE-2017-3238
   - CVE-2017-3243
   - CVE-2017-3244
   - CVE-2017-3257
   - CVE-2017-3258
   - CVE-2017-3265
   - CVE-2017-3291
   - CVE-2017-3312
   - CVE-2017-3317
   - CVE-2017-3318
2017-01-19 12:27:01 +00:00
Sameer Naik 5d6030ad19 Merge branch 'mysql-support' 2017-01-19 13:50:59 +05:30
Sameer Naik 8f4d9f50c6 add support for express development with MySQL backend 2017-01-19 13:50:45 +05:30
Bitnami Bot 7b6ff7b69a 2.3.2-r0 release
Parse 2.3.2 contains notable changes since 2.2.24:
  - New features
    - Add parseFrameURL for masking user-facing pages (#3267), thanks to Lenart Rudel
  - Bug fixes
    - Fix Parse-Server to work with winston-daily-rotate-1.4.2 (#3335), thanks to Arthur Cinader
  - Improvements
    - Add support for regex string for password policy validatorPattern setting (#3331), thanks to Bhaskar Reddy Yasa
    - LiveQuery should match subobjects with dot notation (#3322), thanks to David Starke
    - Reduce time to process high number of installations for push (#3264), thanks to jeacott1
    - Fix trivial typo in error message (#3238), thanks to Arthur Cinader
2017-01-18 11:55:50 +00:00
Juan Ariza Toledano 9912caa184 Merge pull request #16 from bitnami/changeEnvVar
New Naming for Parse Environment Variables
2017-01-18 12:54:58 +01:00
Bitnami Bot 21b62a2143 9.0.0.M17-r0 release
Apache Tomcat 9.0.0.M17 contains several enhancements and bug fixes. Notable changes from 9.0.0.M15-0 include:
 - Catalina:
    - Extend the JreMemoryLeakPreventionListener to provide protection against ForkJoinPool.commonPool() related memory leaks.
    - Add HTTP status code 451 (RFC 7725) to the list of HTTP status codes recognised by the ErrorReportValve.
    - Update: Update the warnings that reference required options for running on Java 9 to use the latest syntax for those options.
    - Fix: Handle the case where the stored user credential uses a different key length than the length currently configured for the CredentialHandler. Based on a patch by Niklas Holm.
    - Fix: Fix thread safety issue with RMI cleanup code
  - Coyote:
    - Fix: Ensure UpgradeProcessor instances associated with closed connections are removed from the map of current connections to Processors.
    - Fix: Remove a workaround for a problem previously reported with WebSocket, TLS and APR that treated some error conditions as not errors.
    - Fix: Expand the search process for a server certificate when OpenSSL is used with a JSSE connector and an explicit alias has not been configured.
    - Extract the common Acceptor code from each Endpoint into a new Acceptor class that is used by all Endpoints.
    - Fix: Improve the selection algorithm for the default trust store type for a TLS Virtual Host. In particular, don't use PKCS12 as a default trust store type. Better document how the default trust store type is selected for a TLS virtual host.
    - Fix: Correctly handle HTTP/2 header values that contain characters with unicode code points in the range 128 to 255. Reject with a clear error message HTTP/2 header values that contain characters with unicode code points above 255.
    - Fix: Improve the logic that selects an address to use to unlock the Acceptor to take account of platforms what do not listen on all local addresses when configured with an address of 0.0.0.0 or ::.
    - Fix: Correct a regression in the refactoring to make wider use of ByteBuffer that caused an intermittent failure in the unit tests.
    - Fix: HTTP/2 shouldn't do URL decoding on the query string.
    - Fix: Fix an HTTP/2 compression error. Once a new size has been agreed for the dynamic HPACK table, the next header block must begin with a dynamic table update.
    - Fix: Set request start time for HTTP/2.
    - Fix: The default output buffer size for AJP connectors is now based on the configured AJP packet size rather than the minimum permitted AJP packet size.
  - Jasper:
    - Fix: 60497: Follow up fix using a better variable name for the tag reuse flag.
    - Fix: Revert use of try/finally for simple tags.
    - Update: Implement a simpler JSP file encoding detector that delegates XML prolog encoding detection to the JRE rather than using a custom XML parser.
    - Fix: Restore previous tag reuse behavior following the use of try/finally.
    - Fix: Improve the error handling for simple tags to ensure that the tag is released and destroyed once used.
  - WebSocket:
    - Fix: Correctly handle blocking WebSocket writes when the write times out just before the write is attempted.
    - Fix: Prevent potential processing loop on unexpected WebSocket connection closure
  - Web applications:
    - Fix: Prevent potential processing loop on unexpected WebSocket connection closure.
    - Fix: Improve the error handling for simple tags to ensure that the tag is released and destroyed once used.
    - Fix: Restore previous tag reuse behavior following the use of try/finally.
    - Implement a simpler JSP file encoding detector that delegates XML prolog encoding detection to the JRE rather than using a custom XML parser.
  - Tribes:
    - Fix: Reduce the warning logs for a message received from a different domain in order to avoid excessive log outputs.
  - Other:
    - Update: Update the NSIS Installer used to build the Windows installer to version 3.01.
    - Fix: Spelling corrections provided by Josh Soref.
    - Update: Update the ASF logos used in the Apache Tomcat installer for Windows to use the new versions.
2017-01-18 11:47:31 +00:00
Juan Ariza Toledano ddfbba0c12 New Naming for Parse Environment Variables 2017-01-18 11:46:04 +00:00
Juan Ariza Toledano 9c5f632e3f Merge pull request #29 from bitnami/changeEnvVar
New Naming for Parse Environment Variables
2017-01-18 12:42:48 +01:00
Juan Ariza Toledano d5c9ab99ad New Naming for Parse Environment Variables 2017-01-18 11:39:15 +00:00
Juan Ariza Toledano 6efc596b5c Merge pull request #48 from bitnami/addingMissingEnvVAr
Adding Missing Env Variable
2017-01-18 12:25:57 +01:00
Juan Ariza Toledano 1b74f99536 Adding Missing Env Variable 2017-01-18 11:23:29 +00:00
Juan Ariza Toledano e57e035093 Merge pull request #28 from bitnami/changeEnvVar
Entrypoint admits new and old Env Variables Names
2017-01-18 12:10:05 +01:00
Juan Ariza Toledano b647730fdc Entrypoint admits new and old Env Variables Names 2017-01-18 11:05:54 +00:00
Sameer Naik dcd65cd56a Merge branch 'revision-4.14.0-r17' 2017-01-18 15:22:15 +05:30
Bitnami Bot 8284b61fa4 1.4.34-r0 release
Memcached 1.4.34 contains several enhancements and bug fixes. Notable fixes are:
 - Fix: Add -o modern switches to -h
 - Fix: metadump: Fix preventing dumping of class 63
 - Fix: cache_memlimit bug for > 4G values
 - Fix: metadump: ensure buffer is flushed to client before finishing
 - Fix: Number of small fixes/additions to new logging
 - Fix: add logging endpoint for LRU crawler
 - Fix: evicted_active counter for LRU maintainer
 - Fix: stop pushing NULL byte into watcher stream
 - Fix: Scale item hash locks more with more worker threads (minor performance)
 - Fix: Further increase systemd service hardening
 - Fix: Missing necessary header for atomic_inc_64_nv() used in logger.c (solaris)
 - Fix: Fix print format for idle timeout thread
 - Fix: Improve binary sasl security fixes
 - Fix: ix clang compile error
 - Fix: Widen systemd caps to allow maxconns to increase
 - Fix: Add -X option to disable cachedump/metadump
 - Fix: Don't double free in lru_crawler on closed clients
 - Fix: Fix segfault if metadump client goes away
2017-01-18 09:34:42 +00:00
Sameer Naik d67c6e1d3e revision 4.14.0-r17 2017-01-18 15:02:53 +05:30
Sameer Naik a57fa11687 Merge branch 'bower-install' 2017-01-18 14:52:05 +05:30
Andrés Bono f7d5531519 Add SMTP_PROTOCOL to docker-compose example (#35) 2017-01-18 10:00:51 +01:00
Sameer Naik e236974fb4 install bower packages
- renamed `npm_install` function to `install_packages`
 - execute `bower install` if `bower.json` file exists
 - added `SKIP_BOWER_INSTALL` entrypoint control param
 - adds `bower install` to `Dockerfile.tpl`
2017-01-18 13:30:29 +05:30
Sameer Naik 30bfbdbddf Merge branch 'express-final' 2017-01-18 11:39:54 +05:30
Adnan Abdulhussein 59702d18c7 readme: add section on creating production image 2017-01-17 18:45:34 -08:00
Adnan Abdulhussein 92fafae29e dist: improve comments in generated Dockerfile 2017-01-17 17:41:05 -08:00
Bitnami Bot cd03587ef5 3.2.1-r0 release
Moodle 3.2.1 contains several changes. Notable changes from 3.1.3 include:
  - Address the vulnerabilities in recent PHPMailer 5.2.x
  - New "Boost" Bootstrap 4 theme, usability improvements of the navigation
  - Messaging UI improvements
  - User tours - walkthoughs/instructional overlays for first time user on page
  - Pluggable media players in Moodle; Video.JS player
  - Easier embedding videos in audios in Atto editor with poster, subtitles and other attributes
  - New chart API and library
2017-01-17 23:09:44 +00:00
Andrés Bono 2ac6410f54 Add cronjob to Moodle (#34) 2017-01-17 20:12:14 +01:00
Sameer Naik 45b1ecc576 bump image revision to 4.14.0-r16 2017-01-17 23:49:58 +05:30
Sameer Naik 0cd52ee94c adds .dockerignore 2017-01-17 23:49:58 +05:30
Sameer Naik 0a6b410660 adds Dockerfile to build immutable application image 2017-01-17 23:49:58 +05:30
Sameer Naik 69d831cf7d list entrypoint control params in compose files 2017-01-17 23:49:57 +05:30
Sameer Naik a2af0e205b moved `database_tier_exists` check inside `add_database_support` function 2017-01-17 23:49:57 +05:30
Sameer Naik 49c19815ba adds `SKIP_DB_MIGRATE` control parameter 2017-01-17 23:49:57 +05:30
Sameer Naik 6cfd1d02e5 adds `SKIP_NPM_INSTALL` control parameter 2017-01-17 23:49:57 +05:30
Sameer Naik d829dd89a8 adds `SKIP_SAMPLE_CODE` control parameter 2017-01-17 23:49:57 +05:30
Sameer Naik 5de3e878a4 adds `SKIP_DB_WAIT` control parameter 2017-01-17 23:49:57 +05:30
Sameer Naik 117b4397f8 adds `add_sample_code` function 2017-01-17 23:49:57 +05:30
Sameer Naik 6c824d1346 move `npm install` commands into `npm_install` function 2017-01-17 23:49:56 +05:30
Sameer Naik 3f0157bf4a remove default `/app` directory during build 2017-01-17 23:49:55 +05:30
Andrés Bono 71b718c13f Add cronjob configuration (#33) 2017-01-17 18:32:11 +01:00