https://www.ruby-lang.org/en/news/2018/03/28/ruby-2-4-4-released/ > This release includes some bug fixes and some security fixes. > > - CVE-2017-17742: HTTP response splitting in WEBrick > - CVE-2018-6914: Unintentional file and directory creation with directory traversal in tempfile and tmpdir > - CVE-2018-8777: DoS by large request in WEBrick > - CVE-2018-8778: Buffer under-read in String#unpack > - CVE-2018-8779: Unintentional socket creation by poisoned NUL byte in UNIXServer and UNIXSocket > - CVE-2018-8780: Unintentional directory traversal by poisoned NUL byte in Dir > - Multiple vulnerabilities in RubyGems
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
language: ruby
 | 
						|
cache:
 | 
						|
  bundler: true
 | 
						|
  yarn: true
 | 
						|
  directories:
 | 
						|
    - node_modules
 | 
						|
    - public/assets
 | 
						|
    - public/packs-test
 | 
						|
    - tmp/cache/babel-loader
 | 
						|
dist: trusty
 | 
						|
sudo: false
 | 
						|
branches:
 | 
						|
  only:
 | 
						|
    - master
 | 
						|
 | 
						|
notifications:
 | 
						|
  email: false
 | 
						|
 | 
						|
env:
 | 
						|
  global:
 | 
						|
    - LOCAL_DOMAIN=cb6e6126.ngrok.io
 | 
						|
    - LOCAL_HTTPS=true
 | 
						|
    - RAILS_ENV=test
 | 
						|
    - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
 | 
						|
    - PARALLEL_TEST_PROCESSORS=2
 | 
						|
 | 
						|
addons:
 | 
						|
  postgresql: 9.4
 | 
						|
  apt:
 | 
						|
    sources:
 | 
						|
      - trusty-media
 | 
						|
      - sourceline: deb https://dl.yarnpkg.com/debian/ stable main
 | 
						|
        key_url: https://dl.yarnpkg.com/debian/pubkey.gpg
 | 
						|
    packages:
 | 
						|
      - ffmpeg
 | 
						|
      - libicu-dev
 | 
						|
      - libprotobuf-dev
 | 
						|
      - protobuf-compiler
 | 
						|
      - yarn
 | 
						|
 | 
						|
rvm:
 | 
						|
  - 2.4.3
 | 
						|
  - 2.5.0
 | 
						|
 | 
						|
services:
 | 
						|
  - redis-server
 | 
						|
 | 
						|
install:
 | 
						|
  - nvm install
 | 
						|
  - bundle install --path=vendor/bundle --without development production --retry=3 --jobs=16
 | 
						|
  - yarn install
 | 
						|
 | 
						|
before_script:
 | 
						|
  - ./bin/rails parallel:create parallel:load_schema parallel:prepare assets:precompile
 | 
						|
 | 
						|
script:
 | 
						|
  - travis_retry bundle exec parallel_test spec/ --group-by filesize --type rspec
 | 
						|
  - yarn run test:jest
 | 
						|
  - bundle exec i18n-tasks check-normalized && bundle exec i18n-tasks unused
 |