You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by Luciano Resende <lu...@gmail.com> on 2016/07/07 21:57:12 UTC

Node dependency issues trying to build zeppelin-web

I am getting some issues on Travis CI while trying to build some PRs [1],
and these errors seem to be unrelated to my changes as they are complaining
about node dependency versions :

[ERROR] npm WARN deprecated minimatch@0.2.14: Please update to minimatch
3.0.2 or higher to avoid a RegExp DoS issue

[ERROR] npm WARN deprecated minimatch@2.0.10: Please update to minimatch
3.0.2 or higher to avoid a RegExp DoS issue

[ERROR] npm WARN deprecated graceful-fs@3.0.8: graceful-fs v3.0.0 and
before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0
as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.

[ERROR] npm WARN deprecated graceful-fs@2.0.3: graceful-fs v3.0.0 and
before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0
as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.

[ERROR] npm WARN deprecated minimatch@0.3.0: Please update to minimatch
3.0.2 or higher to avoid a RegExp DoS issue

[ERROR] npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and
before will fail on node releases >= v7.0. Please update to graceful-fs@^4.0.0
as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.

[ERROR] npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer
maintained. Upgrade to lodash@^4.0.0.

[ERROR] npm WARN deprecated CSSselect@0.7.0: the module is now available as
'css-select'

[ERROR] npm WARN optional dep failed, continuing fsevents@1.0.12

[ERROR] npm WARN deprecated CSSwhat@0.4.7: the module is now available as
'css-what'

[ERROR] npm WARN deprecated minimatch@1.0.0: Please update to minimatch
3.0.2 or higher to avoid a RegExp DoS issue


Are others seeing these issues ?

I am trying to see if I can perform some of these updates, but please let
me know if this is a know issue or if someone else already have a fix for
this.

[1] https://travis-ci.org/apache/zeppelin/jobs/143121653

Thanks


-- 
Luciano Resende
http://twitter.com/lresende1975
http://lresende.blogspot.com/

Re: Node dependency issues trying to build zeppelin-web

Posted by Luciano Resende <lu...@gmail.com>.
I have some of those updates in a local pr, but i need to finish the
support for scala 2.11 before I can spend more time trying to find all
these depende ies that might need to be updates

On Sunday, July 10, 2016, Alexander Bezzubov <bz...@apache.org> wrote:

> Hi Luciano,
>
> I think the problem you are reffering has been reported before and is
> logged under https://issues.apache.org/jira/browse/ZEPPELIN-1133
> It would be great indeed to get those dependencies versions upgraded.
>
> --
> Alex
>
> On Fri, Jul 8, 2016 at 1:32 PM, moon soo Lee <moon@apache.org
> <javascript:;>> wrote:
>
> > I believe the problem is fixed by
> > https://github.com/apache/zeppelin/pull/1149.
> > It's merged in master now. So you can try rebase/merge master to your PR
> > and see if problem disappears.
> >
> > Thanks,
> > moon
> >
> > On Thu, Jul 7, 2016 at 2:57 PM Luciano Resende <luckbr1975@gmail.com
> <javascript:;>>
> > wrote:
> >
> > > I am getting some issues on Travis CI while trying to build some PRs
> [1],
> > > and these errors seem to be unrelated to my changes as they are
> > complaining
> > > about node dependency versions :
> > >
> > > [ERROR] npm WARN deprecated minimatch@0.2.14: Please update to
> minimatch
> > > 3.0.2 or higher to avoid a RegExp DoS issue
> > >
> > > [ERROR] npm WARN deprecated minimatch@2.0.10: Please update to
> minimatch
> > > 3.0.2 or higher to avoid a RegExp DoS issue
> > >
> > > [ERROR] npm WARN deprecated graceful-fs@3.0.8: graceful-fs v3.0.0 and
> > > before will fail on node releases >= v7.0. Please update to
> graceful-fs@
> > > ^4.0.0
> > > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> > >
> > > [ERROR] npm WARN deprecated graceful-fs@2.0.3: graceful-fs v3.0.0 and
> > > before will fail on node releases >= v7.0. Please update to
> graceful-fs@
> > > ^4.0.0
> > > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> > >
> > > [ERROR] npm WARN deprecated minimatch@0.3.0: Please update to
> minimatch
> > > 3.0.2 or higher to avoid a RegExp DoS issue
> > >
> > > [ERROR] npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and
> > > before will fail on node releases >= v7.0. Please update to
> graceful-fs@
> > > ^4.0.0
> > > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> > >
> > > [ERROR] npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer
> > > maintained. Upgrade to lodash@^4.0.0.
> > >
> > > [ERROR] npm WARN deprecated CSSselect@0.7.0: the module is now
> available
> > > as
> > > 'css-select'
> > >
> > > [ERROR] npm WARN optional dep failed, continuing fsevents@1.0.12
> > >
> > > [ERROR] npm WARN deprecated CSSwhat@0.4.7: the module is now available
> > as
> > > 'css-what'
> > >
> > > [ERROR] npm WARN deprecated minimatch@1.0.0: Please update to
> minimatch
> > > 3.0.2 or higher to avoid a RegExp DoS issue
> > >
> > >
> > > Are others seeing these issues ?
> > >
> > > I am trying to see if I can perform some of these updates, but please
> let
> > > me know if this is a know issue or if someone else already have a fix
> for
> > > this.
> > >
> > > [1] https://travis-ci.org/apache/zeppelin/jobs/143121653
> > >
> > > Thanks
> > >
> > >
> > > --
> > > Luciano Resende
> > > http://twitter.com/lresende1975
> > > http://lresende.blogspot.com/
> > >
> >
>


-- 
Sent from my Mobile device

Re: Node dependency issues trying to build zeppelin-web

Posted by Alexander Bezzubov <bz...@apache.org>.
Hi Luciano,

I think the problem you are reffering has been reported before and is
logged under https://issues.apache.org/jira/browse/ZEPPELIN-1133
It would be great indeed to get those dependencies versions upgraded.

--
Alex

On Fri, Jul 8, 2016 at 1:32 PM, moon soo Lee <mo...@apache.org> wrote:

> I believe the problem is fixed by
> https://github.com/apache/zeppelin/pull/1149.
> It's merged in master now. So you can try rebase/merge master to your PR
> and see if problem disappears.
>
> Thanks,
> moon
>
> On Thu, Jul 7, 2016 at 2:57 PM Luciano Resende <lu...@gmail.com>
> wrote:
>
> > I am getting some issues on Travis CI while trying to build some PRs [1],
> > and these errors seem to be unrelated to my changes as they are
> complaining
> > about node dependency versions :
> >
> > [ERROR] npm WARN deprecated minimatch@0.2.14: Please update to minimatch
> > 3.0.2 or higher to avoid a RegExp DoS issue
> >
> > [ERROR] npm WARN deprecated minimatch@2.0.10: Please update to minimatch
> > 3.0.2 or higher to avoid a RegExp DoS issue
> >
> > [ERROR] npm WARN deprecated graceful-fs@3.0.8: graceful-fs v3.0.0 and
> > before will fail on node releases >= v7.0. Please update to graceful-fs@
> > ^4.0.0
> > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> >
> > [ERROR] npm WARN deprecated graceful-fs@2.0.3: graceful-fs v3.0.0 and
> > before will fail on node releases >= v7.0. Please update to graceful-fs@
> > ^4.0.0
> > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> >
> > [ERROR] npm WARN deprecated minimatch@0.3.0: Please update to minimatch
> > 3.0.2 or higher to avoid a RegExp DoS issue
> >
> > [ERROR] npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and
> > before will fail on node releases >= v7.0. Please update to graceful-fs@
> > ^4.0.0
> > as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
> >
> > [ERROR] npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer
> > maintained. Upgrade to lodash@^4.0.0.
> >
> > [ERROR] npm WARN deprecated CSSselect@0.7.0: the module is now available
> > as
> > 'css-select'
> >
> > [ERROR] npm WARN optional dep failed, continuing fsevents@1.0.12
> >
> > [ERROR] npm WARN deprecated CSSwhat@0.4.7: the module is now available
> as
> > 'css-what'
> >
> > [ERROR] npm WARN deprecated minimatch@1.0.0: Please update to minimatch
> > 3.0.2 or higher to avoid a RegExp DoS issue
> >
> >
> > Are others seeing these issues ?
> >
> > I am trying to see if I can perform some of these updates, but please let
> > me know if this is a know issue or if someone else already have a fix for
> > this.
> >
> > [1] https://travis-ci.org/apache/zeppelin/jobs/143121653
> >
> > Thanks
> >
> >
> > --
> > Luciano Resende
> > http://twitter.com/lresende1975
> > http://lresende.blogspot.com/
> >
>

Re: Node dependency issues trying to build zeppelin-web

Posted by moon soo Lee <mo...@apache.org>.
I believe the problem is fixed by
https://github.com/apache/zeppelin/pull/1149.
It's merged in master now. So you can try rebase/merge master to your PR
and see if problem disappears.

Thanks,
moon

On Thu, Jul 7, 2016 at 2:57 PM Luciano Resende <lu...@gmail.com> wrote:

> I am getting some issues on Travis CI while trying to build some PRs [1],
> and these errors seem to be unrelated to my changes as they are complaining
> about node dependency versions :
>
> [ERROR] npm WARN deprecated minimatch@0.2.14: Please update to minimatch
> 3.0.2 or higher to avoid a RegExp DoS issue
>
> [ERROR] npm WARN deprecated minimatch@2.0.10: Please update to minimatch
> 3.0.2 or higher to avoid a RegExp DoS issue
>
> [ERROR] npm WARN deprecated graceful-fs@3.0.8: graceful-fs v3.0.0 and
> before will fail on node releases >= v7.0. Please update to graceful-fs@
> ^4.0.0
> as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
>
> [ERROR] npm WARN deprecated graceful-fs@2.0.3: graceful-fs v3.0.0 and
> before will fail on node releases >= v7.0. Please update to graceful-fs@
> ^4.0.0
> as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
>
> [ERROR] npm WARN deprecated minimatch@0.3.0: Please update to minimatch
> 3.0.2 or higher to avoid a RegExp DoS issue
>
> [ERROR] npm WARN deprecated graceful-fs@1.2.3: graceful-fs v3.0.0 and
> before will fail on node releases >= v7.0. Please update to graceful-fs@
> ^4.0.0
> as soon as possible. Use 'npm ls graceful-fs' to find it in the tree.
>
> [ERROR] npm WARN deprecated lodash@1.0.2: lodash@<3.0.0 is no longer
> maintained. Upgrade to lodash@^4.0.0.
>
> [ERROR] npm WARN deprecated CSSselect@0.7.0: the module is now available
> as
> 'css-select'
>
> [ERROR] npm WARN optional dep failed, continuing fsevents@1.0.12
>
> [ERROR] npm WARN deprecated CSSwhat@0.4.7: the module is now available as
> 'css-what'
>
> [ERROR] npm WARN deprecated minimatch@1.0.0: Please update to minimatch
> 3.0.2 or higher to avoid a RegExp DoS issue
>
>
> Are others seeing these issues ?
>
> I am trying to see if I can perform some of these updates, but please let
> me know if this is a know issue or if someone else already have a fix for
> this.
>
> [1] https://travis-ci.org/apache/zeppelin/jobs/143121653
>
> Thanks
>
>
> --
> Luciano Resende
> http://twitter.com/lresende1975
> http://lresende.blogspot.com/
>