Skip to content

Commit

Permalink
Merge branch 'release/0.9.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
pmlopes committed Oct 7, 2019
2 parents 1cb849c + 8d8f979 commit 303b4fe
Show file tree
Hide file tree
Showing 75 changed files with 151 additions and 155 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.9.3] - 2019-10-07
- Fix Multi Thread regression on 0.9.2

## [0.9.2] - 2019-10-05
- Reduced PM size from 11MB to 4MB
- PM package doesn't depend on GraalVM to run
Expand Down
4 changes: 2 additions & 2 deletions codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse</groupId>
<artifactId>es4x-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>es4x-codegen</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
</properties>
Expand Down
4 changes: 2 additions & 2 deletions es4x/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse</groupId>
<artifactId>es4x-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>es4x</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
13 changes: 3 additions & 10 deletions es4x/src/main/java/io/reactiverse/es4x/impl/JSVerticleFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package io.reactiverse.es4x.impl;

import io.reactiverse.es4x.ECMAEngine;
import io.reactiverse.es4x.ESVerticleFactory;
import io.reactiverse.es4x.Runtime;
import io.vertx.core.*;
Expand All @@ -24,26 +23,20 @@

public final class JSVerticleFactory extends ESVerticleFactory {

private Value module;

@Override
public String prefix() {
return "js";
}

@Override
protected Runtime createRuntime(ECMAEngine engine) {
final Runtime runtime = super.createRuntime(engine);
protected Verticle createVerticle(Runtime runtime, String fsVerticleName) {

final Value module;
// we need to setup the script loader
module = runtime.eval(
Source.newBuilder("js", JSVerticleFactory.class.getResource("/io/reactiverse/es4x/jvm-npm.js")).buildLiteral()
);

return runtime;
}

@Override
protected Verticle createVerticle(Runtime runtime, String fsVerticleName) {
return new Verticle() {

private Vertx vertx;
Expand Down
4 changes: 2 additions & 2 deletions generator/io.reactiverse/elasticsearch-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<artifactId>elasticsearch-client</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<packaging>jar</packaging>

Expand Down
4 changes: 2 additions & 2 deletions generator/io.reactiverse/reactive-pg-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<artifactId>reactive-pg-client</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<packaging>jar</packaging>

Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-amqp-bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-amqp-bridge</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-common</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-htdigest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-htdigest</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-htpasswd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-htpasswd</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-jdbc</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-jwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-jwt</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-mongo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-mongo</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-oauth2</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-auth-shiro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-auth-shiro</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-bridge-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-bridge-common</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-cassandra-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-cassandra-client</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-circuit-breaker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-circuit-breaker</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-config-consul/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-config-consul</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-config-git/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-config-git</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-config-hocon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-config-hocon</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
4 changes: 2 additions & 2 deletions generator/io.vertx/vertx-config-kubernetes-configmap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<parent>
<groupId>io.reactiverse.es4x</groupId>
<artifactId>es4x-generator</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<relativePath>../..</relativePath>
</parent>

<modelVersion>4.0.0</modelVersion>

<artifactId>vertx-config-kubernetes-configmap</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>

<properties>
<maven.groupId>io.vertx</maven.groupId>
Expand Down
Loading

0 comments on commit 303b4fe

Please sign in to comment.