Skip to content

Commit c6c8ee6

Browse files
github-actions[bot]github-actions
andauthored
Release 7.1.0 (#2782)
Co-authored-by: github-actions <github-actions@github.com>
1 parent 10fcd32 commit c6c8ee6

185 files changed

Lines changed: 203 additions & 205 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

annot/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
15-
-->
16-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
15+
--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
1816

1917
<modelVersion>4.0.0</modelVersion>
2018
<artifactId>service-proxy-annot</artifactId>
@@ -25,7 +23,7 @@
2523
<groupId>org.membrane-soa</groupId>
2624
<artifactId>service-proxy-parent</artifactId>
2725
<relativePath>../pom.xml</relativePath>
28-
<version>7.0.7-SNAPSHOT</version>
26+
<version>7.1.0</version>
2927
</parent>
3028

3129
<dependencies>

annot/src/main/java/com/predic8/membrane/annot/generator/HelpReference.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void writeHelp(Model m) {
5151
String path = System.getenv("MEMBRANE_GENERATE_DOC_DIR");
5252
if (path == null)
5353
return;
54-
path = path.replace("%VERSION%", "7.0");
54+
path = path.replace("%VERSION%", "7.1");
5555

5656
System.out.println("Generating Reference in location: " + path);
5757

core/.factorypath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?><factorypath>
2-
<factorypathentry enabled="true" id="M2_REPO/org/membrane-soa/service-proxy-annot/7.0.7-SNAPSHOT/service-proxy-annot-7.0.7-SNAPSHOT.jar" kind="VARJAR" runInBatchMode="false"/>
2+
<factorypathentry enabled="true" id="M2_REPO/org/membrane-soa/service-proxy-annot/7.1.0/service-proxy-annot-7.1.0.jar" kind="VARJAR" runInBatchMode="false"/>
33
</factorypath>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<groupId>org.membrane-soa</groupId>
2424
<artifactId>service-proxy-parent</artifactId>
2525
<relativePath>../pom.xml</relativePath>
26-
<version>7.0.7-SNAPSHOT</version>
26+
<version>7.1.0</version>
2727
</parent>
2828

2929
<properties>

core/src/main/java/com/predic8/membrane/core/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class Constants {
4040
public static final String VERSION;
4141

4242
static {
43-
String version = "7.0"; // fallback
43+
String version = "7.1"; // fallback
4444
try {
4545
Properties p = new Properties(); // Production
4646
p.load(Constants.class.getResourceAsStream("/META-INF/maven/org.membrane-soa/service-proxy-core/pom.properties"));

distribution/examples/api-testing/api-greasing/apis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=https://www.membrane-api.io/v7.0.6.json
1+
# yaml-language-server: $schema=https://www.membrane-api.io/v7.1.0.json
22
api:
33
port: 2000
44
flow:

distribution/examples/configuration/apis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=https://www.membrane-api.io/v7.0.6.json
1+
# yaml-language-server: $schema=https://www.membrane-api.io/v7.1.0.json
22

33
# This is an example config demonstrating the basic structure of a Membrane API Gateway configuration.
44
# It focuses on the main configuration sections where you can attach your plugins.
@@ -65,4 +65,4 @@ api:
6565
flow:
6666
- $ref: '#/components/demoComponent' # references the demo component
6767
target:
68-
url: internal://internalProxy # uses the internal proxy as the target
68+
url: internal://internalProxy # uses the internal proxy as the target

distribution/examples/deployment/docker/apis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=https://www.membrane-api.io/v7.0.6.json
1+
# yaml-language-server: $schema=https://www.membrane-api.io/v7.1.0.json
22
api:
33
port: 2000
44
openapi:

distribution/examples/extending-membrane/custom-interceptor/apis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# yaml-language-server: $schema=https://www.membrane-api.io/v7.0.6.json
1+
# yaml-language-server: $schema=https://www.membrane-api.io/v7.1.0.json
22

33
components:
44
myInterceptor:

distribution/examples/extending-membrane/custom-interceptor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>org.membrane-soa</groupId>
2727
<artifactId>service-proxy-core</artifactId>
28-
<version>7.0.7-SNAPSHOT</version>
28+
<version>7.1.0</version>
2929
</dependency>
3030

3131
</dependencies>

0 commit comments

Comments
 (0)