Skip to content

Commit 4e34258

Browse files
authored
Merge branch 'master' into fix/use-message-name-for-anonymous-schema
2 parents da76bab + 372be4d commit 4e34258

File tree

22 files changed

+599
-385
lines changed

22 files changed

+599
-385
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,6 +1211,15 @@
12111211
"code",
12121212
"test"
12131213
]
1214+
},
1215+
{
1216+
"login": "Varadraj75",
1217+
"name": "Varad Raj Agrawal",
1218+
"avatar_url": "https://avatars.githubusercontent.com/u/67114314?v=4",
1219+
"profile": "https://github.com/Varadraj75",
1220+
"contributions": [
1221+
"code"
1222+
]
12141223
}
12151224
],
12161225
"contributorsPerLine": 7,

.github/workflows/scripts/mailchimp/package-lock.json

Lines changed: 328 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openjdk:16.0.1-jdk-slim-buster
1+
FROM eclipse-temurin:17-jdk-jammy
22

33
# Install updates
44
RUN apt-get update -yq \
@@ -17,16 +17,14 @@ ENV PATH="${PATH}:/usr/local/go/bin"
1717

1818
# Install dotnet SDK
1919
RUN apt install apt-transport-https dirmngr gnupg ca-certificates -yq \
20-
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF \
21-
&& echo "deb https://download.mono-project.com/repo/debian stable-buster main" | tee /etc/apt/sources.list.d/mono-official-stable.list \
2220
&& apt update -yq \
2321
&& apt install mono-devel -yq
2422

2523
# Install rust
2624
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
2725

2826
# Install Python
29-
RUN apt-get install -yq python
27+
RUN apt-get install -yq python3 python-is-python3
3028

3129
# Install Kotlin
3230
RUN apt install -yq wget unzip \
@@ -37,10 +35,8 @@ RUN apt install -yq wget unzip \
3735
ENV PATH $PATH:/usr/lib/kotlinc/bin
3836

3937
# Install PHP
40-
RUN wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg \
41-
&& echo "deb https://packages.sury.org/php/ buster main" > /etc/apt/sources.list.d/php.list \
42-
&& apt-get update -yq \
43-
&& apt-get install -y php8.2
38+
RUN apt-get update -yq \
39+
&& apt-get install -yq php php-cli php-common php-xml php-mbstring php-curl
4440

4541
# Setup library
46-
RUN apt-get install -yq chromium
42+
RUN apt-get install -yq chromium-browser

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![Discussions](https://img.shields.io/github/discussions/asyncapi/modelina)](https://github.com/asyncapi/modelina/discussions)
99
[![Website](https://img.shields.io/website?label=website&url=https%3A%2F%2Fwww.modelina.org)](https://www.modelina.org)
1010
[![Playground](https://img.shields.io/website?label=playground&url=https%3A%2F%2Fwww.modelina.org%2Fplayground)](https://www.modelina.org/playground) <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
11-
[![All Contributors](https://img.shields.io/badge/all_contributors-112-orange.svg?style=flat-square)](#contributors-)
11+
[![All Contributors](https://img.shields.io/badge/all_contributors-113-orange.svg?style=flat-square)](#contributors-)
1212
<!-- ALL-CONTRIBUTORS-BADGE:END -->
1313

1414

@@ -472,6 +472,9 @@ Thanks go out to these wonderful people ([emoji key](https://allcontributors.org
472472
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jadinm"><img src="https://avatars.githubusercontent.com/u/4190063?v=4?s=100" width="100px;" alt="Mathieu Jadin"/><br /><sub><b>Mathieu Jadin</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=jadinm" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=jadinm" title="Tests">⚠️</a></td>
473473
<td align="center" valign="top" width="14.28%"><a href="https://github.com/AarishMansur"><img src="https://avatars.githubusercontent.com/u/170957949?v=4?s=100" width="100px;" alt="Aarish mansur"/><br /><sub><b>Aarish mansur</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=AarishMansur" title="Code">💻</a> <a href="https://github.com/asyncapi/modelina/commits?author=AarishMansur" title="Tests">⚠️</a></td>
474474
</tr>
475+
<tr>
476+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Varadraj75"><img src="https://avatars.githubusercontent.com/u/67114314?v=4?s=100" width="100px;" alt="Varad Raj Agrawal"/><br /><sub><b>Varad Raj Agrawal</b></sub></a><br /><a href="https://github.com/asyncapi/modelina/commits?author=Varadraj75" title="Code">💻</a></td>
477+
</tr>
475478
</tbody>
476479
</table>
477480

0 commit comments

Comments
 (0)