From dara.hayes at redhat.com Fri Jul 13 05:27:33 2018 From: dara.hayes at redhat.com (Dara Hayes) Date: Fri, 13 Jul 2018 10:27:33 +0100 Subject: [aerogear-dev] Heads up! NPM Tokens being Invalidated Message-ID: Just a quick heads up. NPM is going to invalidate a lot of tokens soon. They're advising that people go and revoke their tokens in advance and put new ones in place. They said they have a way to invalidate older tokens without touching newly created ones. https://twitter.com/npmstatus/status/1017457426084200448 I have revoked the token used by CircleCI to publish the aerogear-js-sdk and put a new one in place. -- Dara Hayes Associate software engineer TRIED. TESTED. TRUSTED. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180713/749ad909/attachment.html From dara.hayes at redhat.com Fri Jul 13 05:41:37 2018 From: dara.hayes at redhat.com (Dara Hayes) Date: Fri, 13 Jul 2018 10:41:37 +0100 Subject: [aerogear-dev] ups-config-operator v0.2.1 released Message-ID: Hi folks, Just a small note to say I've released v0.2.1 of the ups-config-operator. [1] (was 0.2.0). This tiny release has a fix for a bug that would cause the service to crash if any errors occurred while trying to retrieve a secret from k8s. I have also created a PR against the unifiedpush-apb to use this new image. It would be nice to get some approval. [2] 1: https://github.com/aerogear/ups-config-operator/releases/tag/0.2.1 2: https://github.com/aerogearcatalog/unifiedpush-apb/pull/78 Kind Regards -- Dara Hayes Associate software engineer TRIED. TESTED. TRUSTED. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180713/fccd7681/attachment.html From smhjamali at yahoo.com Sun Jul 15 06:33:58 2018 From: smhjamali at yahoo.com (Seyed Mohammad Hussein Jamali) Date: Sun, 15 Jul 2018 10:33:58 +0000 (UTC) Subject: [aerogear-dev] ehcach-core version References: <375017350.4584072.1531650838576.ref@mail.yahoo.com> Message-ID: <375017350.4584072.1531650838576@mail.yahoo.com> Hello all I've upgraded version of ehcache-core dependency of parent project because maven can't resolve its current version. I tried maven central, apache repository and jboss repository but maven couldn't resolve it. May I send a pull request?? I've added the following to pom.xml of parent project.? ? ? ? ? ? ? ? ? ? ? ? ? ? ? net.sf.ehcache? ? ? ? ? ? ? ? ehcache-core? ? ? ? ? ? ? ? 2.6.11? ? ? ? ? ? Regards,?Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180715/59ee68cb/attachment-0001.html From dara.hayes at redhat.com Wed Jul 18 04:56:08 2018 From: dara.hayes at redhat.com (Dara Hayes) Date: Wed, 18 Jul 2018 09:56:08 +0100 Subject: [aerogear-dev] A nice example of CircleCI in action Message-ID: Hey folks, Just quick email to show off a nice CI pipeline we have put in place in the data-sync-server repo using CircleCI. Thanks to Ali Ok we now have unit tests and integration tests against a Postgres database running in parallel. Once these jobs both pass, a docker build & push step is kicked off. This happens on every commit to master, and It also happens for releases. ? In roughly *1.5 minutes* we're running unit tests, integration tests against a real database and doing a docker build + pushes. This is a *Node.js Project* (think npm installs, etc). It may not interest everyone but I think this is mind blowing! For anyone interested here's the very simple config file that makes it all happen: https://github.com/aerogear/data-sync-server/blob/master/.circleci/config.yml Kind Regards, -- Dara Hayes Associate software engineer TRIED. TESTED. TRUSTED. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180718/b506e274/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2018-07-18 at 09.40.48.png Type: image/png Size: 133000 bytes Desc: not available Url : http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180718/b506e274/attachment-0001.png From pbraun at redhat.com Wed Jul 18 05:08:29 2018 From: pbraun at redhat.com (Peter Braun) Date: Wed, 18 Jul 2018 11:08:29 +0200 Subject: [aerogear-dev] A nice example of CircleCI in action In-Reply-To: References: Message-ID: Hey Dara, this is very cool! We run our tests against a Sqlite Database in In-Memory mode. Thanks to Sequelize no changes are required (other than a different connection string). Our builds take somewhat longer though thanks to Webpack. Regards, Peter > Am 18.07.2018 um 10:56 schrieb Dara Hayes : > > Hey folks, > > Just quick email to show off a nice CI pipeline we have put in place in the data-sync-server repo using CircleCI. > > Thanks to Ali Ok we now have unit tests and integration tests against a Postgres database running in parallel. Once these jobs both pass, a docker build & push step is kicked off. This happens on every commit to master, and It also happens for releases. > > > ? > > In roughly 1.5 minutes we're running unit tests, integration tests against a real database and doing a docker build + pushes. This is a Node.js Project (think npm installs, etc). It may not interest everyone but I think this is mind blowing! > > For anyone interested here's the very simple config file that makes it all happen: https://github.com/aerogear/data-sync-server/blob/master/.circleci/config.yml > > Kind Regards, > -- > DARA HAYES > ASSOCIATE SOFTWARE ENGINEER > TRIED. TESTED. TRUSTED. > > _______________________________________________ > aerogear-dev mailing list > aerogear-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/aerogear-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180718/f4eff670/attachment.html From jgallaso at redhat.com Thu Jul 19 03:31:59 2018 From: jgallaso at redhat.com (Jose Miguel Gallas Olmedo) Date: Thu, 19 Jul 2018 09:31:59 +0200 Subject: [aerogear-dev] A nice example of CircleCI in action In-Reply-To: References: Message-ID: Kudos Dara, very nice. ? JOSE MIGUEL GALLAS OLMEDO ASSOCIATE QE, mobile Red Hat M: +34618488633 On Wed, 18 Jul 2018 at 11:10, Peter Braun wrote: > Hey Dara, > > this is very cool! We run our tests against a Sqlite Database in In-Memory > mode. Thanks to Sequelize no changes are required (other than a different > connection string). Our builds take somewhat longer though thanks to > Webpack. > > > Regards, > Peter > > Am 18.07.2018 um 10:56 schrieb Dara Hayes : > > Hey folks, > > Just quick email to show off a nice CI pipeline we have put in place in > the data-sync-server repo > using CircleCI. > > Thanks to Ali Ok we now have unit tests and integration tests against a > Postgres database running in parallel. Once these jobs both pass, a docker > build & push step is kicked off. This happens on every commit to master, > and It also happens for releases. > > > ? > > In roughly *1.5 minutes* we're running unit tests, integration tests > against a real database and doing a docker build + pushes. This is a *Node.js > Project* (think npm installs, etc). It may not interest everyone but I > think this is mind blowing! > > For anyone interested here's the very simple config file that makes it all > happen: > https://github.com/aerogear/data-sync-server/blob/master/.circleci/config.yml > > Kind Regards, > -- > Dara Hayes > > Associate software engineer > TRIED. TESTED. TRUSTED. > > _______________________________________________ > aerogear-dev mailing list > aerogear-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/aerogear-dev > > > _______________________________________________ > aerogear-dev mailing list > aerogear-dev at lists.jboss.org > https://lists.jboss.org/mailman/listinfo/aerogear-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.jboss.org/pipermail/aerogear-dev/attachments/20180719/72edcd8d/attachment.html