Commit cab246ad authored by 🤖 GitLab Bot 🤖's avatar 🤖 GitLab Bot 🤖

Merge branch 'ce-to-ee-2018-12-10' into 'master'

CE upstream - 2018-12-10 23:21 UTC

See merge request gitlab-org/gitlab-ee!8780
parents 24b82282 4d4f8e29
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
- if current_user - if current_user
.block.todo.hide-expanded .block.todo.hide-expanded
= render "shared/issuable/sidebar_todo", todo: todo, issuable: issuable, is_collapsed: true = render "shared/issuable/sidebar_todo", todo: todo, issuable: issuable, is_collapsed: true
.block.assignee .block.assignee.qa-assignee-block
= render "shared/issuable/sidebar_assignees", issuable: issuable, can_edit_issuable: can_edit_issuable, signed_in: current_user.present? = render "shared/issuable/sidebar_assignees", issuable: issuable, can_edit_issuable: can_edit_issuable, signed_in: current_user.present?
= render_if_exists 'shared/issuable/sidebar_item_epic', issuable: issuable = render_if_exists 'shared/issuable/sidebar_item_epic', issuable: issuable
......
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
= dropdown_tag(user_dropdown_label(issuable.assignee_id, "Assignee"), options: { toggle_class: "js-dropdown-keep-input js-user-search js-issuable-form-dropdown js-assignee-search", title: "Select assignee", filter: true, dropdown_class: "dropdown-menu-user dropdown-menu-selectable dropdown-menu-assignee js-filter-submit", = dropdown_tag(user_dropdown_label(issuable.assignee_id, "Assignee"), options: { toggle_class: "js-dropdown-keep-input js-user-search js-issuable-form-dropdown js-assignee-search", title: "Select assignee", filter: true, dropdown_class: "dropdown-menu-user dropdown-menu-selectable dropdown-menu-assignee js-filter-submit",
placeholder: "Search assignee", data: { first_user: current_user.try(:username), null_user: true, current_user: true, project_id: issuable.project.try(:id), selected: issuable.assignee_id, field_name: "#{issuable.class.model_name.param_key}[assignee_id]", default_label: "Assignee"} }) placeholder: "Search assignee", data: { first_user: current_user.try(:username), null_user: true, current_user: true, project_id: issuable.project.try(:id), selected: issuable.assignee_id, field_name: "#{issuable.class.model_name.param_key}[assignee_id]", default_label: "Assignee"} })
= link_to 'Assign to me', '#', class: "assign-to-me-link #{'hide' if issuable.assignee_id == current_user.id}" = link_to 'Assign to me', '#', class: "assign-to-me-link qa-assign-to-me-link #{'hide' if issuable.assignee_id == current_user.id}"
...@@ -26,6 +26,10 @@ module QA ...@@ -26,6 +26,10 @@ module QA
element :issuable_label element :issuable_label
end end
view 'app/views/shared/issuable/form/_metadata_merge_request_assignee.html.haml' do
element :assign_to_me_link
end
def create_merge_request def create_merge_request
click_element :issuable_create_button click_element :issuable_create_button
end end
...@@ -50,6 +54,10 @@ module QA ...@@ -50,6 +54,10 @@ module QA
click_link label.title click_link label.title
end end
def assign_to_me
click_element :assign_to_me_link
end
end end
end end
end end
......
...@@ -54,6 +54,7 @@ module QA ...@@ -54,6 +54,7 @@ module QA
end end
view 'app/views/shared/issuable/_sidebar.html.haml' do view 'app/views/shared/issuable/_sidebar.html.haml' do
element :assignee_block
element :labels_block element :labels_block
end end
...@@ -102,6 +103,12 @@ module QA ...@@ -102,6 +103,12 @@ module QA
end end
end end
def has_assignee?(username)
page.within(element_selector_css(:assignee_block)) do
has_text?(username)
end
end
def has_label?(label) def has_label?(label)
page.within(element_selector_css(:labels_block)) do page.within(element_selector_css(:labels_block)) do
element = find('span', text: label) element = find('span', text: label)
......
...@@ -63,6 +63,7 @@ module QA ...@@ -63,6 +63,7 @@ module QA
page.fill_title(@title) page.fill_title(@title)
page.fill_description(@description) page.fill_description(@description)
page.choose_milestone(@milestone) if @milestone page.choose_milestone(@milestone) if @milestone
page.assign_to_me if @assignee == 'me'
labels.each do |label| labels.each do |label|
page.select_label(label) page.select_label(label)
end end
......
...@@ -4,6 +4,8 @@ module QA ...@@ -4,6 +4,8 @@ module QA
context 'Create' do context 'Create' do
describe 'Merge request creation' do describe 'Merge request creation' do
it 'user creates a new merge request' do it 'user creates a new merge request' do
gitlab_account_username = "@#{Runtime::User.username}"
Runtime::Browser.visit(:gitlab, Page::Main::Login) Runtime::Browser.visit(:gitlab, Page::Main::Login)
Page::Main::Login.act { sign_in_using_credentials } Page::Main::Login.act { sign_in_using_credentials }
...@@ -27,6 +29,7 @@ module QA ...@@ -27,6 +29,7 @@ module QA
merge_request.description = 'Great feature with milestone' merge_request.description = 'Great feature with milestone'
merge_request.project = current_project merge_request.project = current_project
merge_request.milestone = current_milestone merge_request.milestone = current_milestone
merge_request.assignee = 'me'
merge_request.labels.push(new_label) merge_request.labels.push(new_label)
end end
...@@ -34,6 +37,7 @@ module QA ...@@ -34,6 +37,7 @@ module QA
expect(merge_request).to have_content('This is a merge request with a milestone') expect(merge_request).to have_content('This is a merge request with a milestone')
expect(merge_request).to have_content('Great feature with milestone') expect(merge_request).to have_content('Great feature with milestone')
expect(merge_request).to have_content(/Opened [\w\s]+ ago/) expect(merge_request).to have_content(/Opened [\w\s]+ ago/)
expect(merge_request).to have_assignee(gitlab_account_username)
expect(merge_request).to have_label(new_label.title) expect(merge_request).to have_label(new_label.title)
end end
......
CMakeLists.txt.user
CMakeCache.txt CMakeCache.txt
CMakeFiles CMakeFiles
CMakeScripts CMakeScripts
......
# Ignore configuration files that may contain sensitive information. # gitignore template for Drupal 8 projects
sites/*/*settings*.php #
sites/example.sites.php # earlier versions of Drupal are tracked in `community/Python/`
# Ignore paths that contain generated content. # Ignore configuration files that may contain sensitive information
files/ /sites/*/*settings*.php
sites/*/files /sites/*/*services*.yml
sites/*/private
sites/*/translations
# Ignore default text files # Ignore paths that may contain user-generated content
robots.txt /sites/*/files
/CHANGELOG.txt /sites/*/public
/COPYRIGHT.txt /sites/*/private
/INSTALL*.txt /sites/*/files-public
/sites/*/files-private
# Ignore paths that may contain temporary files
/sites/*/translations
/sites/*/tmp
/sites/*/cache
# Ignore drupal core (if not versioning drupal sources)
/core
/modules/README.txt
/profiles/README.txt
/sites/README.txt
/sites/example.sites.php
/sites/example.settings.local.php
/sites/development.services.yml
/themes/README.txt
/vendor
/.csslintrc
/.editorconfig
/.eslintignore
/.eslintrc.json
/.gitattributes
/.htaccess
/autoload.php
/composer.json
/composer.lock
/example.gitignore
/index.php
/LICENSE.txt /LICENSE.txt
/MAINTAINERS.txt
/UPGRADE.txt
/README.txt /README.txt
sites/README.txt /robots.txt
sites/all/libraries/README.txt /update.php
sites/all/modules/README.txt /web.config
sites/all/themes/README.txt
# Ignore everything but the "sites" folder ( for non core developer )
.htaccess
web.config
authorize.php
cron.php
index.php
install.php
update.php
xmlrpc.php
/includes
/misc
/modules
/profiles
/scripts
/themes
...@@ -43,3 +43,7 @@ flycheck_*.el ...@@ -43,3 +43,7 @@ flycheck_*.el
# directory configuration # directory configuration
.dir-locals.el .dir-locals.el
# network security
/network-security.data
# Gitignore for Cadence Virtuoso
################################################################
# Log files
*.log
panic*.log.*
# OpenAccess database lock files
*.cdslck*
# Run directories for layout vs. schematic and design rule check
lvsRunDir/*
drcRunDir/*
# Abstract generation tool
abstract.log*
abstract.record*
...@@ -2,11 +2,17 @@ ...@@ -2,11 +2,17 @@
# #
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated ## User settings
xcuserdata/
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/ build/
DerivedData/ DerivedData/
*.moved-aside
## Various settings
*.pbxuser *.pbxuser
!default.pbxuser !default.pbxuser
*.mode1v3 *.mode1v3
...@@ -15,65 +21,3 @@ DerivedData/ ...@@ -15,65 +21,3 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/
## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint
## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/
# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
#
# Add this line if you want to avoid checking in source code from the Xcode workspace
# *.xcworkspace
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/
...@@ -70,7 +70,10 @@ typings/ ...@@ -70,7 +70,10 @@ typings/
.vuepress/dist .vuepress/dist
# Serverless directories # Serverless directories
.serverless .serverless/
# FuseBox cache # FuseBox cache
.fusebox/ .fusebox/
#DynamoDB Local files
.dynamodb/
...@@ -20,6 +20,7 @@ parts/ ...@@ -20,6 +20,7 @@ parts/
sdist/ sdist/
var/ var/
wheels/ wheels/
share/python-wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
......
# changes file # changes file
*.changes *.changes
*.chg
# system image # system image
*.image *.image
*.img7
*.img
# Pharo Smalltalk Debug log file # Pharo Smalltalk Debug log file
PharoDebug.log PharoDebug.log
...@@ -10,6 +13,12 @@ PharoDebug.log ...@@ -10,6 +13,12 @@ PharoDebug.log
# Squeak Smalltalk Debug log file # Squeak Smalltalk Debug log file
SqueakDebug.log SqueakDebug.log
# Dolphin Smalltalk source file
*.sml
# Dolphin Smalltalk error file
*.errors
# Monticello package cache # Monticello package cache
/package-cache /package-cache
......
...@@ -205,6 +205,10 @@ pythontex-files-*/ ...@@ -205,6 +205,10 @@ pythontex-files-*/
# todonotes # todonotes
*.tdo *.tdo
# vhistory
*.hst
*.ver
# easy-todo # easy-todo
*.lod *.lod
......
...@@ -35,3 +35,7 @@ sysinfo.txt ...@@ -35,3 +35,7 @@ sysinfo.txt
# Builds # Builds
*.apk *.apk
*.unitypackage *.unitypackage
# Crashlytics generated file
Assets/StreamingAssets/crashlytics-build.properties
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
[Rr]eleases/ [Rr]eleases/
x64/ x64/
x86/ x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/ bld/
[Bb]in/ [Bb]in/
[Oo]bj/ [Oo]bj/
...@@ -229,6 +231,8 @@ orleans.codegen.cs ...@@ -229,6 +231,8 @@ orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components # Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/ #bower_components/
# ASP.NET Core default setup: bower directory is configured as wwwroot/lib/ and bower restore is true
**/wwwroot/lib/
# RIA/Silverlight projects # RIA/Silverlight projects
Generated_Code/ Generated_Code/
......
...@@ -67,10 +67,15 @@ ...@@ -67,10 +67,15 @@
@babel/template,7.1.2,MIT @babel/template,7.1.2,MIT
@babel/traverse,7.1.0,MIT @babel/traverse,7.1.0,MIT
@babel/types,7.1.2,MIT @babel/types,7.1.2,MIT
@gitlab/svgs,1.35.0,MIT @gitlab/csslab,1.8.0,MIT
@gitlab/ui,1.11.0,MIT @gitlab/svgs,1.41.0,MIT
@gitlab/ui,1.15.0,MIT
@sindresorhus/is,0.7.0,MIT @sindresorhus/is,0.7.0,MIT
@types/async,2.0.50,MIT
@types/jquery,2.0.48,MIT @types/jquery,2.0.48,MIT
@types/node,10.12.9,MIT
@types/semver,5.5.0,MIT
@types/zen-observable,0.8.0,MIT
@vue/component-compiler-utils,2.2.0,MIT @vue/component-compiler-utils,2.2.0,MIT
@webassemblyjs/ast,1.7.6,MIT @webassemblyjs/ast,1.7.6,MIT
@webassemblyjs/floating-point-hex-parser,1.7.6,MIT @webassemblyjs/floating-point-hex-parser,1.7.6,MIT
...@@ -98,13 +103,14 @@ accepts,1.3.5,MIT ...@@ -98,13 +103,14 @@ accepts,1.3.5,MIT
ace-rails-ap,4.1.2,MIT ace-rails-ap,4.1.2,MIT
acorn,5.7.3,MIT acorn,5.7.3,MIT
acorn-dynamic-import,3.0.0,MIT acorn-dynamic-import,3.0.0,MIT
actionmailer,4.2.10,MIT actioncable,5.0.7,MIT
actionpack,4.2.10,MIT actionmailer,5.0.7,MIT
actionview,4.2.10,MIT actionpack,5.0.7,MIT
activejob,4.2.10,MIT actionview,5.0.7,MIT
activemodel,4.2.10,MIT activejob,5.0.7,MIT
activerecord,4.2.10,MIT activemodel,5.0.7,MIT
activesupport,4.2.10,MIT activerecord,5.0.7,MIT
activesupport,5.0.7,MIT
acts-as-taggable-on,5.0.0,MIT acts-as-taggable-on,5.0.0,MIT
addressable,2.5.2,Apache 2.0 addressable,2.5.2,Apache 2.0
aes_key_wrap,1.0.1,MIT aes_key_wrap,1.0.1,MIT
...@@ -119,24 +125,35 @@ ansi-regex,3.0.0,MIT ...@@ -119,24 +125,35 @@ ansi-regex,3.0.0,MIT
ansi-styles,2.2.1,MIT ansi-styles,2.2.1,MIT
ansi-styles,3.2.1,MIT ansi-styles,3.2.1,MIT
anymatch,2.0.0,ISC anymatch,2.0.0,ISC
apollo-boost,0.1.20,MIT
apollo-cache,1.1.20,MIT
apollo-cache-inmemory,1.3.9,MIT
apollo-client,2.4.5,MIT
apollo-link,1.2.3,MIT
apollo-link-dedup,1.0.10,MIT
apollo-link-error,1.1.1,MIT
apollo-link-http,1.5.5,MIT
apollo-link-http-common,0.2.5,MIT
apollo-link-state,0.4.2,MIT
apollo-utilities,1.0.25,MIT
aproba,1.2.0,ISC aproba,1.2.0,ISC
are-we-there-yet,1.1.4,ISC are-we-there-yet,1.1.4,ISC
arel,6.0.4,MIT arel,7.1.4,MIT
arr-diff,4.0.0,MIT arr-diff,4.0.0,MIT
arr-flatten,1.1.0,MIT arr-flatten,1.1.0,MIT
arr-union,3.1.0,MIT arr-union,3.1.0,MIT
array-flatten,1.1.1,MIT array-flatten,1.1.1,MIT
array-uniq,1.0.3,MIT array-uniq,1.0.3,MIT
array-unique,0.3.2,MIT array-unique,0.3.2,MIT
asana,0.6.0,MIT asana,0.8.1,MIT
asciidoctor,1.5.6.2,MIT asciidoctor,1.5.8,MIT
asciidoctor-plantuml,0.0.8,MIT asciidoctor-plantuml,0.0.8,MIT
asn1.js,4.10.1,MIT asn1.js,4.10.1,MIT
assert,1.4.1,MIT assert,1.4.1,MIT
assign-symbols,1.0.0,MIT assign-symbols,1.0.0,MIT
async-each,1.0.1,MIT async-each,1.0.1,MIT
async-limiter,1.0.0,MIT async-limiter,1.0.0,MIT
atob,2.0.3,(MIT OR Apache-2.0) atob,2.1.2,(MIT OR Apache-2.0)
atomic,1.1.99,Apache 2.0 atomic,1.1.99,Apache 2.0
attr_encrypted,3.1.0,MIT attr_encrypted,3.1.0,MIT
attr_required,1.0.0,MIT attr_required,1.0.0,MIT
...@@ -147,12 +164,13 @@ babel-code-frame,6.26.0,MIT ...@@ -147,12 +164,13 @@ babel-code-frame,6.26.0,MIT
babel-loader,8.0.4,MIT babel-loader,8.0.4,MIT
babel-polyfill,6.23.0,MIT babel-polyfill,6.23.0,MIT
babel-runtime,6.26.0,MIT babel-runtime,6.26.0,MIT
babel-standalone,6.26.0,MIT
babosa,1.0.2,MIT babosa,1.0.2,MIT
balanced-match,1.0.0,MIT balanced-match,1.0.0,MIT
base,0.11.2,MIT base,0.11.2,MIT
base32,0.3.2,MIT base32,0.3.2,MIT
base64-js,1.2.3,MIT base64-js,1.2.3,MIT
batch-loader,1.2.1,MIT batch-loader,1.2.2,MIT
bcrypt,3.1.12,MIT bcrypt,3.1.12,MIT
bcrypt_pbkdf,1.0.0,MIT bcrypt_pbkdf,1.0.0,MIT
bfj,6.1.1,MIT bfj,6.1.1,MIT
...@@ -163,7 +181,7 @@ bindata,2.4.3,ruby ...@@ -163,7 +181,7 @@ bindata,2.4.3,ruby
bluebird,3.5.1,MIT bluebird,3.5.1,MIT
bn.js,4.11.8,MIT bn.js,4.11.8,MIT
body-parser,1.18.2,MIT body-parser,1.18.2,MIT
bootstrap,4.1.1,MIT bootstrap,4.1.3,MIT
bootstrap-vue,2.0.0-rc.11,MIT bootstrap-vue,2.0.0-rc.11,MIT
bootstrap_form,2.7.0,MIT bootstrap_form,2.7.0,MIT
brace-expansion,1.1.11,MIT brace-expansion,1.1.11,MIT
...@@ -216,7 +234,7 @@ clipboard,1.7.1,MIT ...@@ -216,7 +234,7 @@ clipboard,1.7.1,MIT
cliui,4.0.0,ISC cliui,4.0.0,ISC
clone-response,1.0.2,MIT clone-response,1.0.2,MIT
code-point-at,1.1.0,MIT code-point-at,1.1.0,MIT
codesandbox-api,0.0.18,MIT codesandbox-api,0.0.20,MIT
codesandbox-import-util-types,1.2.11,LGPL codesandbox-import-util-types,1.2.11,LGPL
codesandbox-import-utils,1.2.11,LGPL codesandbox-import-utils,1.2.11,LGPL
coercible,1.0.0,MIT coercible,1.0.0,MIT
...@@ -224,14 +242,15 @@ collection-visit,1.0.0,MIT ...@@ -224,14 +242,15 @@ collection-visit,1.0.0,MIT
color-convert,1.9.3,MIT color-convert,1.9.3,MIT
color-name,1.1.3,MIT color-name,1.1.3,MIT
commander,2.13.0,MIT commander,2.13.0,MIT
commander,2.18.0,MIT commander,2.19.0,MIT
commondir,1.0.1,MIT commondir,1.0.1,MIT
commonmarker,0.17.13,MIT commonmarker,0.17.13,MIT
component-emitter,1.2.1,MIT component-emitter,1.2.1,MIT
compression-webpack-plugin,2.0.0,MIT compression-webpack-plugin,2.0.0,MIT
concat-map,0.0.1,MIT concat-map,0.0.1,MIT
concat-stream,1.6.2,MIT concat-stream,1.6.2,MIT
concurrent-ruby-ext,1.0.5,MIT concurrent-ruby-ext,1.1.3,MIT
config-chain,1.1.12,MIT
connection_pool,2.2.2,MIT connection_pool,2.2.2,MIT
console-browserify,1.1.0,MIT console-browserify,1.1.0,MIT
console-control-strings,1.1.0,ISC console-control-strings,1.1.0,ISC
...@@ -244,6 +263,7 @@ cookie,0.3.1,MIT ...@@ -244,6 +263,7 @@ cookie,0.3.1,MIT
cookie-signature,1.0.6,MIT cookie-signature,1.0.6,MIT
copy-concurrently,1.0.5,ISC copy-concurrently,1.0.5,ISC
copy-descriptor,0.1.1,MIT copy-descriptor,0.1.1,MIT
copy-to-clipboard,3.0.8,MIT
core-js,2.3.0,MIT core-js,2.3.0,MIT
core-js,2.5.7,MIT core-js,2.5.7,MIT
core-util-is,1.0.2,MIT core-util-is,1.0.2,MIT
...@@ -262,7 +282,6 @@ css-selector-tokenizer,0.7.0,MIT ...@@ -262,7 +282,6 @@ css-selector-tokenizer,0.7.0,MIT
css_parser,1.5.0,MIT css_parser,1.5.0,MIT
cssesc,0.1.0,MIT cssesc,0.1.0,MIT
cyclist,0.2.2,MIT* cyclist,0.2.2,MIT*
d3,4.12.2,New BSD
d3,4.13.0,New BSD d3,4.13.0,New BSD
d3-array,1.2.1,New BSD d3-array,1.2.1,New BSD
d3-axis,1.0.8,New BSD d3-axis,1.0.8,New BSD
...@@ -275,7 +294,6 @@ d3-drag,1.2.1,New BSD ...@@ -275,7 +294,6 @@ d3-drag,1.2.1,New BSD
d3-dsv,1.0.8,New BSD d3-dsv,1.0.8,New BSD
d3-ease,1.0.3,New BSD d3-ease,1.0.3,New BSD
d3-force,1.1.0,New BSD d3-force,1.1.0,New BSD
d3-format,1.2.1,New BSD
d3-format,1.2.2,New BSD d3-format,1.2.2,New BSD
d3-geo,1.9.1,New BSD d3-geo,1.9.1,New BSD
d3-hierarchy,1.1.5,New BSD d3-hierarchy,1.1.5,New BSD
...@@ -287,7 +305,6 @@ d3-queue,3.0.7,New BSD ...@@ -287,7 +305,6 @@ d3-queue,3.0.7,New BSD
d3-random,1.1.0,New BSD d3-random,1.1.0,New BSD
d3-request,1.0.6,New BSD d3-request,1.0.6,New BSD
d3-scale,1.0.7,New BSD d3-scale,1.0.7,New BSD
d3-selection,1.2.0,New BSD
d3-selection,1.3.0,New BSD d3-selection,1.3.0,New BSD
d3-shape,1.2.0,New BSD d3-shape,1.2.0,New BSD
d3-time,1.0.8,New BSD d3-time,1.0.8,New BSD
...@@ -302,7 +319,7 @@ date-now,0.1.4,MIT ...@@ -302,7 +319,7 @@ date-now,0.1.4,MIT
dateformat,3.0.3,MIT dateformat,3.0.3,MIT
de-indent,1.0.2,MIT de-indent,1.0.2,MIT
debug,2.6.9,MIT debug,2.6.9,MIT
debug,3.2.5,MIT debug,3.2.6,MIT
debugger-ruby_core_source,1.3.8,MIT debugger-ruby_core_source,1.3.8,MIT
decamelize,2.0.0,MIT decamelize,2.0.0,MIT
deckar01-task_list,2.0.0,MIT deckar01-task_list,2.0.0,MIT
...@@ -310,8 +327,7 @@ declarative,0.0.10,MIT ...@@ -310,8 +327,7 @@ declarative,0.0.10,MIT
declarative-option,0.1.0,MIT declarative-option,0.1.0,MIT
decode-uri-component,0.2.0,MIT decode-uri-component,0.2.0,MIT
decompress-response,3.3.0,MIT decompress-response,3.3.0,MIT
deep-extend,0.4.2,MIT deep-extend,0.6.0,MIT
default_value_for,3.0.2,MIT
define-properties,1.1.3,MIT define-properties,1.1.3,MIT
define-property,0.2.5,MIT define-property,0.2.5,MIT
define-property,1.0.0,MIT define-property,1.0.0,MIT
...@@ -330,6 +346,7 @@ devise-two-factor,3.0.0,MIT ...@@ -330,6 +346,7 @@ devise-two-factor,3.0.0,MIT
diff,3.5.0,New BSD diff,3.5.0,New BSD
diffie-hellman,5.0.2,MIT diffie-hellman,5.0.2,MIT
diffy,3.1.0,MIT diffy,3.1.0,MIT
discordrb-webhooks-blackst0ne,3.3.0,MIT
document-register-element,1.3.0,MIT document-register-element,1.3.0,MIT
dom-serializer,0.1.0,MIT dom-serializer,0.1.0,MIT
domain-browser,1.1.7,MIT domain-browser,1.1.7,MIT
...@@ -345,8 +362,10 @@ dropzone,4.2.0,MIT ...@@ -345,8 +362,10 @@ dropzone,4.2.0,MIT
duplexer,0.1.1,MIT duplexer,0.1.1,MIT
duplexer3,0.1.4,New BSD duplexer3,0.1.4,New BSD
duplexify,3.5.3,MIT duplexify,3.5.3,MIT
echarts,4.2.0-rc.2,Apache 2.0
ed25519,1.2.4,MIT ed25519,1.2.4,MIT
editions,1.3.4,MIT editions,1.3.4,MIT
editorconfig,0.15.2,MIT
ee-first,1.1.1,MIT ee-first,1.1.1,MIT
ejs,2.6.1,Apache 2.0 ejs,2.6.1,Apache 2.0
electron-to-chromium,1.3.73,ISC electron-to-chromium,1.3.73,ISC
...@@ -368,7 +387,7 @@ es-to-primitive,1.1.1,MIT ...@@ -368,7 +387,7 @@ es-to-primitive,1.1.1,MIT
es6-promise,3.0.2,MIT es6-promise,3.0.2,MIT
escape-html,1.0.3,MIT escape-html,1.0.3,MIT
escape-string-regexp,1.0.5,MIT escape-string-regexp,1.0.5,MIT
escape_utils,1.1.1,MIT escape_utils,1.2.1,MIT
escaper,2.5.3,MIT escaper,2.5.3,MIT
eslint-scope,4.0.0,Simplified BSD eslint-scope,4.0.0,Simplified BSD
esrecurse,4.2.1,Simplified BSD esrecurse,4.2.1,Simplified BSD
...@@ -447,9 +466,10 @@ get-value,2.0.6,MIT ...@@ -447,9 +466,10 @@ get-value,2.0.6,MIT
get_process_mem,0.2.0,MIT get_process_mem,0.2.0,MIT
gettext_i18n_rails,1.8.0,MIT gettext_i18n_rails,1.8.0,MIT
gettext_i18n_rails_js,1.3.0,MIT gettext_i18n_rails_js,1.3.0,MIT
gitaly-proto,0.123.0,MIT gitaly-proto,1.3.0,MIT
github-markup,1.7.0,MIT github-markup,1.7.0,MIT
gitlab-markup,1.6.4,MIT gitlab-default_value_for,3.1.1,MIT
gitlab-markup,1.6.5,MIT
gitlab-sidekiq-fetcher,0.3.0,LGPL gitlab-sidekiq-fetcher,0.3.0,LGPL
gitlab_omniauth-ldap,2.0.4,MIT gitlab_omniauth-ldap,2.0.4,MIT
glob,7.1.3,ISC glob,7.1.3,ISC
...@@ -464,7 +484,7 @@ google-protobuf,3.6.1,New BSD ...@@ -464,7 +484,7 @@ google-protobuf,3.6.1,New BSD
googleapis-common-protos-types,1.0.2,Apache 2.0 googleapis-common-protos-types,1.0.2,Apache 2.0
googleauth,0.6.6,Apache 2.0 googleauth,0.6.6,Apache 2.0
got,8.3.0,MIT got,8.3.0,MIT
gpgme,2.0.13,LGPL-2.1+ gpgme,2.0.18,LGPL-2.1+
graceful-fs,4.1.11,ISC graceful-fs,4.1.11,ISC
grape,1.1.0,MIT grape,1.1.0,MIT
grape-entity,0.7.1,MIT grape-entity,0.7.1,MIT
...@@ -473,6 +493,9 @@ grape_logging,1.7.0,MIT ...@@ -473,6 +493,9 @@ grape_logging,1.7.0,MIT
graphiql-rails,1.4.10,MIT graphiql-rails,1.4.10,MIT
graphlibrary,2.2.0,MIT graphlibrary,2.2.0,MIT
graphql,1.8.1,MIT graphql,1.8.1,MIT
graphql,14.0.2,MIT
graphql-anywhere,4.1.22,MIT
graphql-tag,2.10.0,MIT
grpc,1.15.0,Apache 2.0 grpc,1.15.0,Apache 2.0
gzip-size,5.0.0,MIT gzip-size,5.0.0,MIT
hamlit,2.8.8,MIT hamlit,2.8.8,MIT
...@@ -496,6 +519,7 @@ hashie,3.5.7,MIT ...@@ -496,6 +519,7 @@ hashie,3.5.7,MIT
hashie-forbidden_attributes,0.1.1,MIT hashie-forbidden_attributes,0.1.1,MIT
he,1.1.1,MIT he,1.1.1,MIT
health_check,2.6.0,MIT health_check,2.6.0,MIT
highlight.js,9.13.1,New BSD
hipchat,1.5.2,MIT hipchat,1.5.2,MIT
hmac-drbg,1.0.1,MIT hmac-drbg,1.0.1,MIT
hoopy,0.1.4,MIT hoopy,0.1.4,MIT
...@@ -503,16 +527,16 @@ html-pipeline,2.8.4,MIT ...@@ -503,16 +527,16 @@ html-pipeline,2.8.4,MIT
html2text,0.2.0,MIT html2text,0.2.0,MIT
htmlentities,4.3.4,MIT htmlentities,4.3.4,MIT
htmlparser2,3.9.2,MIT htmlparser2,3.9.2,MIT
http,2.2.2,MIT http,3.3.0,MIT
http-cache-semantics,3.8.1,Simplified BSD http-cache-semantics,3.8.1,Simplified BSD
http-cookie,1.0.3,MIT http-cookie,1.0.3,MIT
http-errors,1.6.2,MIT http-errors,1.6.2,MIT
http-form_data,1.0.3,MIT http-form_data,2.1.1,MIT
http_parser.rb,0.6.0,MIT http_parser.rb,0.6.0,MIT
httparty,0.13.7,MIT httparty,0.13.7,MIT
httpclient,2.8.3,ruby httpclient,2.8.3,ruby
https-browserify,1.0.0,MIT https-browserify,1.0.0,MIT
i18n,0.9.5,MIT i18n,1.1.1,MIT
icalendar,2.4.1,ruby icalendar,2.4.1,ruby
ice_nine,0.11.2,MIT ice_nine,0.11.2,MIT
iconv-lite,0.4.19,MIT iconv-lite,0.4.19,MIT
...@@ -523,6 +547,7 @@ ieee754,1.1.11,New BSD ...@@ -523,6 +547,7 @@ ieee754,1.1.11,New BSD
iferr,0.1.5,MIT iferr,0.1.5,MIT
ignore-walk,3.0.1,ISC ignore-walk,3.0.1,ISC
immediate,3.0.6,MIT immediate,3.0.6,MIT
immutable-tuple,0.4.9,MIT
import-local,1.0.0,MIT import-local,1.0.0,MIT
imports-loader,0.8.0,MIT imports-loader,0.8.0,MIT
imurmurhash,0.1.4,MIT imurmurhash,0.1.4,MIT
...@@ -578,12 +603,14 @@ isobject,2.1.0,MIT ...@@ -578,12 +603,14 @@ isobject,2.1.0,MIT
isobject,3.0.1,MIT isobject,3.0.1,MIT
istextorbinary,2.2.1,MIT istextorbinary,2.2.1,MIT
isurl,1.0.0,MIT isurl,1.0.0,MIT
iterall,1.2.2,MIT
jed,1.1.1,MIT jed,1.1.1,MIT
jira-ruby,1.4.1,MIT jira-ruby,1.4.1,MIT
jquery,3.3.1,MIT jquery,3.3.1,MIT
jquery-atwho-rails,1.3.2,MIT jquery-atwho-rails,1.3.2,MIT
jquery-ujs,1.2.2,MIT jquery-ujs,1.2.2,MIT
jquery.waitforimages,2.2.0,MIT jquery.waitforimages,2.2.0,MIT
js-beautify,1.8.8,MIT
js-cookie,2.1.3,MIT js-cookie,2.1.3,MIT
js-levenshtein,1.1.4,MIT js-levenshtein,1.1.4,MIT
js-tokens,3.0.2,MIT js-tokens,3.0.2,MIT
...@@ -611,7 +638,7 @@ kind-of,3.2.2,MIT ...@@ -611,7 +638,7 @@ kind-of,3.2.2,MIT
kind-of,4.0.0,MIT kind-of,4.0.0,MIT
kind-of,5.1.0,MIT kind-of,5.1.0,MIT
kind-of,6.0.2,MIT kind-of,6.0.2,MIT
kubeclient,3.1.0,MIT kubeclient,4.0.0,MIT
lazy-cache,2.0.2,MIT lazy-cache,2.0.2,MIT
lcid,2.0.0,MIT lcid,2.0.0,MIT
licensee,8.9.2,MIT licensee,8.9.2,MIT
...@@ -631,7 +658,7 @@ lodash.isequal,4.5.0,MIT ...@@ -631,7 +658,7 @@ lodash.isequal,4.5.0,MIT
lodash.mergewith,4.6.0,MIT lodash.mergewith,4.6.0,MIT
lodash.startcase,4.4.0,MIT lodash.startcase,4.4.0,MIT
lograge,0.10.0,MIT lograge,0.10.0,MIT
loofah,2.2.2,MIT loofah,2.2.3,MIT
loose-envify,1.4.0,MIT loose-envify,1.4.0,MIT
lowercase-keys,1.0.0,MIT lowercase-keys,1.0.0,MIT
lru-cache,4.1.3,ISC lru-cache,4.1.3,ISC
...@@ -653,17 +680,17 @@ memory-fs,0.4.1,MIT ...@@ -653,17 +680,17 @@ memory-fs,0.4.1,MIT
merge-descriptors,1.0.1,MIT merge-descriptors,1.0.1,MIT
merge-source-map,1.1.0,MIT merge-source-map,1.1.0,MIT
mermaid,8.0.0-rc.8,MIT mermaid,8.0.0-rc.8,MIT
method_source,0.9.0,MIT method_source,0.9.2,MIT
methods,1.1.2,MIT methods,1.1.2,MIT
micromatch,3.1.10,MIT micromatch,3.1.10,MIT
miller-rabin,4.0.1,MIT miller-rabin,4.0.1,MIT
mime,1.4.1,MIT mime,1.4.1,MIT
mime,2.3.1,MIT mime,2.3.1,MIT
mime-db,1.33.0,MIT mime-db,1.37.0,MIT
mime-types,2.1.18,MIT mime-types,2.1.21,MIT
mime-types,3.1,MIT mime-types,3.2.2,MIT
mime-types-data,3.2016.0521,MIT mime-types-data,3.2018.0812,MIT
mimemagic,0.3.0,MIT mimemagic,0.3.2,MIT
mimic-fn,1.1.0,MIT mimic-fn,1.1.0,MIT
mimic-response,1.0.0,MIT mimic-response,1.0.0,MIT
mini_magick,4.8.0,MIT mini_magick,4.8.0,MIT
...@@ -695,20 +722,22 @@ mustermann,1.0.3,MIT ...@@ -695,20 +722,22 @@ mustermann,1.0.3,MIT
mustermann-grape,1.0.0,MIT mustermann-grape,1.0.0,MIT
mute-stream,0.0.7,ISC mute-stream,0.0.7,ISC
mysql2,0.4.10,MIT mysql2,0.4.10,MIT
nakayoshi_fork,0.0.4,MIT
nan,2.10.0,MIT nan,2.10.0,MIT
nanomatch,1.2.9,MIT nanomatch,1.2.9,MIT
needle,2.2.1,MIT needle,2.2.4,MIT
negotiator,0.6.1,MIT negotiator,0.6.1,MIT
neo-async,2.5.0,MIT neo-async,2.5.0,MIT
net-ldap,0.16.0,MIT net-ldap,0.16.0,MIT
net-ssh,5.0.1,MIT net-ssh,5.0.1,MIT
netrc,0.11.0,MIT netrc,0.11.0,MIT
nice-try,1.0.4,MIT nice-try,1.0.4,MIT
nio4r,2.3.1,MIT
node-fetch,1.6.3,MIT node-fetch,1.6.3,MIT
node-libs-browser,2.1.0,MIT node-libs-browser,2.1.0,MIT
node-pre-gyp,0.10.0,New BSD node-pre-gyp,0.10.3,New BSD
node-releases,1.0.0-alpha.12,CC-BY-4.0 node-releases,1.0.0-alpha.12,CC-BY-4.0
nokogiri,1.8.4,MIT nokogiri,1.8.5,MIT
nokogumbo,1.5.0,Apache 2.0 nokogumbo,1.5.0,Apache 2.0
nopt,4.0.1,ISC nopt,4.0.1,ISC
normalize-path,2.1.1,MIT normalize-path,2.1.1,MIT
...@@ -752,6 +781,7 @@ onetime,2.0.1,MIT ...@@ -752,6 +781,7 @@ onetime,2.0.1,MIT
opencollective,1.0.3,MIT opencollective,1.0.3,MIT
opener,1.5.1,(WTFPL OR MIT) opener,1.5.1,(WTFPL OR MIT)
opn,4.0.2,MIT opn,4.0.2,MIT
optimism,0.6.8,MIT
org-ruby,0.9.12,MIT org-ruby,0.9.12,MIT
orm_adapter,0.5.0,MIT orm_adapter,0.5.0,MIT
os,1.0.0,MIT os,1.0.0,MIT
...@@ -818,6 +848,7 @@ process-nextick-args,1.0.7,MIT ...@@ -818,6 +848,7 @@ process-nextick-args,1.0.7,MIT
process-nextick-args,2.0.0,MIT process-nextick-args,2.0.0,MIT
prometheus-client-mmap,0.9.4,Apache 2.0 prometheus-client-mmap,0.9.4,Apache 2.0
promise-inflight,1.0.1,ISC promise-inflight,1.0.1,ISC
proto-list,1.2.4,ISC
proxy-addr,2.0.4,MIT proxy-addr,2.0.4,MIT
prr,1.0.1,MIT prr,1.0.1,MIT
pseudomap,1.0.2,ISC pseudomap,1.0.2,ISC
...@@ -835,20 +866,20 @@ qs,6.5.1,New BSD ...@@ -835,20 +866,20 @@ qs,6.5.1,New BSD
query-string,5.1.1,MIT query-string,5.1.1,MIT
querystring,0.2.0,MIT querystring,0.2.0,MIT
querystring-es3,0.2.1,MIT querystring-es3,0.2.1,MIT
rack,1.6.10,MIT rack,2.0.6,MIT
rack-accept,0.4.5,MIT rack-accept,0.4.5,MIT
rack-attack,4.4.1,MIT rack-attack,4.4.1,MIT
rack-cors,1.0.2,MIT rack-cors,1.0.2,MIT
rack-oauth2,1.2.3,MIT rack-oauth2,1.2.3,MIT
rack-protection,2.0.3,MIT rack-protection,2.0.4,MIT
rack-proxy,0.6.0,MIT rack-proxy,0.6.0,MIT
rack-test,0.6.3,MIT rack-test,0.6.3,MIT
rails,4.2.10,MIT rails,5.0.7,MIT
rails-deprecated_sanitizer,1.0.3,MIT rails-deprecated_sanitizer,1.0.3,MIT
rails-dom-testing,1.0.9,MIT rails-dom-testing,2.0.3,MIT
rails-html-sanitizer,1.0.4,MIT rails-html-sanitizer,1.0.4,MIT
rails-i18n,4.0.9,MIT rails-i18n,5.1.1,MIT
railties,4.2.10,MIT railties,5.0.7,MIT
rainbow,3.0.0,MIT rainbow,3.0.0,MIT
raindrops,0.18.0,LGPL-2.1+ raindrops,0.18.0,LGPL-2.1+
rake,12.3.1,MIT rake,12.3.1,MIT
...@@ -862,7 +893,7 @@ raw-loader,0.5.1,MIT ...@@ -862,7 +893,7 @@ raw-loader,0.5.1,MIT
rb-fsevent,0.10.2,MIT rb-fsevent,0.10.2,MIT
rb-inotify,0.9.10,MIT rb-inotify,0.9.10,MIT
rbtrace,0.4.10,MIT rbtrace,0.4.10,MIT
rc,1.2.5,(BSD-2-Clause OR MIT OR Apache-2.0) rc,1.2.8,(BSD-2-Clause OR MIT OR Apache-2.0)
rdoc,6.0.4,ruby rdoc,6.0.4,ruby
re2,1.1.1,New BSD re2,1.1.1,New BSD
readable-stream,2.0.6,MIT readable-stream,2.0.6,MIT
...@@ -877,7 +908,7 @@ redis-activesupport,5.0.4,MIT ...@@ -877,7 +908,7 @@ redis-activesupport,5.0.4,MIT
redis-namespace,1.6.0,MIT redis-namespace,1.6.0,MIT
redis-rack,2.0.4,MIT redis-rack,2.0.4,MIT
redis-rails,5.0.2,MIT redis-rails,5.0.2,MIT
redis-store,1.4.1,MIT redis-store,1.6.0,MIT
regenerate,1.4.0,MIT regenerate,1.4.0,MIT
regenerate-unicode-properties,7.0.0,MIT regenerate-unicode-properties,7.0.0,MIT
regenerator-runtime,0.10.5,MIT regenerator-runtime,0.10.5,MIT
...@@ -920,7 +951,7 @@ ruby-fogbugz,0.2.1,MIT ...@@ -920,7 +951,7 @@ ruby-fogbugz,0.2.1,MIT
ruby-prof,0.17.0,Simplified BSD ruby-prof,0.17.0,Simplified BSD
ruby-progressbar,1.9.0,MIT ruby-progressbar,1.9.0,MIT
ruby-saml,1.7.2,MIT ruby-saml,1.7.2,MIT
ruby_parser,3.9.0,MIT ruby_parser,3.11.0,MIT
rubyntlm,0.6.2,MIT rubyntlm,0.6.2,MIT
rubypants,0.2.0,BSD rubypants,0.2.0,BSD
rufus-scheduler,3.4.0,MIT rufus-scheduler,3.4.0,MIT
...@@ -949,9 +980,9 @@ seed-fu,2.3.7,MIT ...@@ -949,9 +980,9 @@ seed-fu,2.3.7,MIT
select,1.1.2,MIT select,1.1.2,MIT
select2,3.5.2-browserify,Apache* select2,3.5.2-browserify,Apache*
select2-rails,3.5.9.3,MIT select2-rails,3.5.9.3,MIT
semver,5.5.1,ISC semver,5.6.0,ISC
send,0.16.2,MIT send,0.16.2,MIT
sentry-raven,2.7.2,Apache 2.0 sentry-raven,2.7.4,Apache 2.0
serialize-javascript,1.4.0,New BSD serialize-javascript,1.4.0,New BSD
serve-static,1.13.2,MIT serve-static,1.13.2,MIT
set-blocking,2.0.0,ISC set-blocking,2.0.0,ISC
...@@ -963,18 +994,19 @@ setimmediate,1.0.5,MIT ...@@ -963,18 +994,19 @@ setimmediate,1.0.5,MIT
setprototypeof,1.0.3,ISC setprototypeof,1.0.3,ISC
setprototypeof,1.1.0,ISC setprototypeof,1.1.0,ISC
settingslogic,2.0.9,MIT settingslogic,2.0.9,MIT
sexp_processor,4.9.0,MIT sexp_processor,4.11.0,MIT
sha.js,2.4.10,MIT sha.js,2.4.10,MIT
sha1,1.1.1,New BSD sha1,1.1.1,New BSD
shebang-command,1.2.0,MIT shebang-command,1.2.0,MIT
shebang-regex,1.0.0,MIT shebang-regex,1.0.0,MIT
sidekiq,5.2.1,LGPL sidekiq,5.2.3,LGPL
sidekiq-cron,0.6.0,MIT sidekiq-cron,0.6.0,MIT
sigmund,1.0.1,ISC
signal-exit,3.0.2,ISC signal-exit,3.0.2,ISC
signet,0.11.0,Apache 2.0 signet,0.11.0,Apache 2.0
slack-notifier,1.5.1,MIT slack-notifier,1.5.1,MIT
slugify,1.3.1,MIT slugify,1.3.1,MIT
smooshpack,0.0.48,LGPL smooshpack,0.0.53,LGPL
snapdragon,0.8.1,MIT snapdragon,0.8.1,MIT
snapdragon-node,2.1.1,MIT snapdragon-node,2.1.1,MIT
snapdragon-util,3.0.1,MIT snapdragon-util,3.0.1,MIT
...@@ -1018,6 +1050,7 @@ style-loader,0.23.0,MIT ...@@ -1018,6 +1050,7 @@ style-loader,0.23.0,MIT
supports-color,2.0.0,MIT supports-color,2.0.0,MIT
supports-color,5.5.0,MIT supports-color,5.5.0,MIT
svg4everybody,2.1.9,CC0-1.0 svg4everybody,2.1.9,CC0-1.0
symbol-observable,1.2.0,MIT
sys-filesystem,1.1.6,Artistic 2.0 sys-filesystem,1.1.6,Artistic 2.0
tapable,1.1.0,MIT tapable,1.1.0,MIT
tar,4.4.4,ISC tar,4.4.4,ISC
...@@ -1029,6 +1062,7 @@ thread_safe,0.3.6,Apache 2.0 ...@@ -1029,6 +1062,7 @@ thread_safe,0.3.6,Apache 2.0
three,0.84.0,MIT three,0.84.0,MIT
three-orbit-controls,82.1.0,MIT three-orbit-controls,82.1.0,MIT
three-stl-loader,1.0.4,MIT three-stl-loader,1.0.4,MIT
throttle-debounce,2.0.1,MIT
through,2.3.8,MIT through,2.3.8,MIT
through2,2.0.3,MIT through2,2.0.3,MIT
tilt,2.0.8,MIT tilt,2.0.8,MIT
...@@ -1043,6 +1077,7 @@ to-fast-properties,2.0.0,MIT ...@@ -1043,6 +1077,7 @@ to-fast-properties,2.0.0,MIT
to-object-path,0.3.0,MIT to-object-path,0.3.0,MIT
to-regex,3.0.2,MIT to-regex,3.0.2,MIT
to-regex-range,2.1.1,MIT to-regex-range,2.1.1,MIT
toggle-selection,1.0.6,MIT
toml-rb,1.0.0,MIT toml-rb,1.0.0,MIT
trim-right,1.0.1,MIT trim-right,1.0.1,MIT
trollop,2.1.3,MIT trollop,2.1.3,MIT
...@@ -1079,6 +1114,7 @@ urix,0.1.0,MIT ...@@ -1079,6 +1114,7 @@ urix,0.1.0,MIT
url,0.11.0,MIT url,0.11.0,MIT
url-loader,1.1.1,MIT url-loader,1.1.1,MIT
url-parse-lax,3.0.0,MIT url-parse-lax,3.0.0,MIT
url-search-params-polyfill,5.0.0,MIT
url-to-options,1.0.1,MIT url-to-options,1.0.1,MIT
use,2.0.2,MIT use,2.0.2,MIT
util,0.10.3,MIT util,0.10.3,MIT
...@@ -1094,6 +1130,7 @@ visibilityjs,1.2.4,MIT ...@@ -1094,6 +1130,7 @@ visibilityjs,1.2.4,MIT
vm-browserify,0.0.4,MIT vm-browserify,0.0.4,MIT
vmstat,2.3.0,MIT vmstat,2.3.0,MIT
vue,2.5.17,MIT vue,2.5.17,MIT
vue-apollo,3.0.0-beta.25,ISC
vue-functional-data-merge,2.0.6,MIT vue-functional-data-merge,2.0.6,MIT
vue-hot-reload-api,2.3.0,MIT vue-hot-reload-api,2.3.0,MIT
vue-loader,15.4.2,MIT vue-loader,15.4.2,MIT
...@@ -1112,6 +1149,8 @@ webpack-cli,3.1.0,MIT ...@@ -1112,6 +1149,8 @@ webpack-cli,3.1.0,MIT
webpack-rails,0.9.11,MIT webpack-rails,0.9.11,MIT
webpack-sources,1.3.0,MIT webpack-sources,1.3.0,MIT
webpack-stats-plugin,0.2.1,MIT webpack-stats-plugin,0.2.1,MIT
websocket-driver,0.6.5,MIT
websocket-extensions,0.1.3,MIT
which,1.3.0,ISC which,1.3.0,ISC
which-module,2.0.0,ISC which-module,2.0.0,ISC
wide-align,1.1.2,ISC wide-align,1.1.2,ISC
...@@ -1131,3 +1170,6 @@ yallist,2.1.2,ISC ...@@ -1131,3 +1170,6 @@ yallist,2.1.2,ISC
yallist,3.0.2,ISC yallist,3.0.2,ISC
yargs,12.0.2,MIT yargs,12.0.2,MIT
yargs-parser,10.1.0,ISC yargs-parser,10.1.0,ISC
zen-observable,0.8.11,MIT
zen-observable-ts,0.8.10,MIT
zrender,4.0.5,New BSD
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment