Skip to content

Commit

Permalink
Release 3.0.0-alpha.24
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Apr 12, 2022
1 parent 8511a43 commit 174b554
Show file tree
Hide file tree
Showing 17 changed files with 208 additions and 214 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ For huge public repositories you can adjust memory limit and even size of used t

```bash
# Launching a standalone JAR file
$ java -Xmx16M -jar reposilite-3.0.0-alpha.23.jar
$ java -Xmx16M -jar reposilite-3.0.0-alpha.24.jar

# Using a Docker
$ docker pull dzikoysk/reposilite:3.0.0-alpha.23
$ docker pull dzikoysk/reposilite:3.0.0-alpha.24
```

Visit official guide to read more about extra parameters and configuration details.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ allprojects {
}

subprojects {
version = "3.0.0-alpha.23"
version = "3.0.0-alpha.24"

apply(plugin = "java-library")
apply(plugin = "application")
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.9"
services:
reposilite:
image: reposilite:3.0.0-alpha.23
image: reposilite:3.0.0-alpha.24
build:
context: .
dockerfile: Dockerfile
Expand Down
7 changes: 1 addition & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,4 @@ mavenPassword=

# General
org.gradle.parallel=false
kotlin.code.style=official

# Kapt does not support Java 16
# ~ https://youtrack.jetbrains.com/issue/KT-45545

kapt.use.worker.api=false
kotlin.code.style=official
7 changes: 4 additions & 3 deletions reposilite-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
implementation("software.amazon.awssdk:s3:$awssdk")
testImplementation("com.amazonaws:aws-java-sdk-s3:1.12.196")

val exposed = "0.37.3"
val exposed = "0.38.1"
implementation("org.jetbrains.exposed:exposed-core:$exposed")
implementation("org.jetbrains.exposed:exposed-dao:$exposed")
implementation("org.jetbrains.exposed:exposed-jdbc:$exposed")
Expand Down Expand Up @@ -90,9 +90,10 @@ dependencies {
api("com.reposilite.javalin-rfcs:javalin-routing:$javalinRfcs")

@Suppress("GradlePackageUpdate")
//implementation("io.javalin:javalin:4.1.1")
//api("io.javalin:javalin:4.1.1")
// api("com.github.dzikoysk.javalin:javalin:97b4481c0a")
api("com.github.tipsy.javalin:javalin:d00c8512c9")
// api("com.github.tipsy.javalin:javalin:d00c8512c9")
api("io.javalin:javalin:4.5.0.RC0")

@Suppress("GradlePackageUpdate")
implementation("org.eclipse.jetty:jetty-server:9.4.46.v20220331")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import java.util.concurrent.ExecutorService
import java.util.concurrent.ScheduledExecutorService
import java.util.concurrent.atomic.AtomicBoolean

const val VERSION = "3.0.0-alpha.23"
const val VERSION = "3.0.0-alpha.24"

class Reposilite(
val journalist: ReposiliteJournalist,
Expand Down

Large diffs are not rendered by default.

This file was deleted.

Large diffs are not rendered by default.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@
<meta property="og:site_name" content="{{REPOSILITE.TITLE}}">
<meta property="og:type" content="website">
<meta property="og:description" content="{{REPOSILITE.DESCRIPTION}}">
<script type="module" crossorigin src="/{{REPOSILITE.VITE_BASE_PATH}}/assets/index.a13e2ff3.js"></script>
<link rel="modulepreload" href="/{{REPOSILITE.VITE_BASE_PATH}}/assets/vendor.ed721fb1.js">
<link rel="stylesheet" href="/{{REPOSILITE.VITE_BASE_PATH}}/assets/index.1f820778.css">
<script type="module" crossorigin src="/{{REPOSILITE.VITE_BASE_PATH}}/assets/index.cb0ffe57.js"></script>
<link rel="stylesheet" href="/{{REPOSILITE.VITE_BASE_PATH}}/assets/index.1139b966.css">
</head>
<body>
<div id="app"></div>
Expand Down
4 changes: 2 additions & 2 deletions reposilite-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion reposilite-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reposilite-frontend",
"version": "3.0.0-alpha.23",
"version": "3.0.0-alpha.24",
"scripts": {
"dev": "vite",
"eslint": "eslint src/**",
Expand Down
2 changes: 1 addition & 1 deletion reposilite-site/data/guides/developers/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Raw JSON scheme:
"info": {
"title": "Reposilite Repository",
"description": "Public Maven repository hosted through the Reposilite",
"version": "3.0.0-alpha.23"
"version": "3.0.0-alpha.24"
},
"paths": {
"/api/console/sock": {
Expand Down
2 changes: 1 addition & 1 deletion reposilite-site/data/guides/developers/plugin-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ application {
}

dependencies {
compileOnly("org.panda-lang:reposilite:3.0.0-alpha.23")
compileOnly("org.panda-lang:reposilite:3.0.0-alpha.24")
}

tasks.withType<ShadowJar> {
Expand Down
4 changes: 2 additions & 2 deletions reposilite-site/data/guides/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Reposilite defines two types of builds:
First of all, you have to pull the image:

```yaml
# released builds, e.g. 3.0.0-alpha.23
$ docker pull dzikoysk/reposilite:3.0.0-alpha.23
# released builds, e.g. 3.0.0-alpha.24
$ docker pull dzikoysk/reposilite:3.0.0-alpha.24

# nightly builds
$ docker pull dzikoysk/reposilite:nightly
Expand Down
2 changes: 1 addition & 1 deletion reposilite-site/data/plugins/javadoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ Javadoc file is extracted during the first request to `$working-directory/javado
To access javadocs, you have to visit `repo.domain.com/javadoc/<gav>`.
For instance, using Reposilite Javadocs:

* [panda-lang repository / reposilite-3.0.0-alpha.23 javadocs](https://repo.panda-lang.org/javadoc/releases/org/panda-lang/reposilite/3.0.0-alpha.23/)
* [panda-lang repository / reposilite-3.0.0-alpha.24 javadocs](https://repo.panda-lang.org/javadoc/releases/org/panda-lang/reposilite/3.0.0-alpha.24/)

0 comments on commit 174b554

Please sign in to comment.