Skip to content

Commit

Permalink
Release 0.14.1
Browse files Browse the repository at this point in the history
Update server and webui
Remove ElasticSearch clear-on-start configuration property
Update Yarn to v4.0.0
Update website dependencies
  • Loading branch information
amvanbaren committed Nov 16, 2023
1 parent bd4972c commit 948e281
Show file tree
Hide file tree
Showing 7 changed files with 1,729 additions and 1,702 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ RUN corepack enable
RUN corepack prepare yarn@stable --activate

# bump to update website
ENV WEBSITE_VERSION 0.11.1
ENV WEBSITE_VERSION 0.11.2
COPY . /workdir

RUN /usr/bin/yarn --cwd website \
&& /usr/bin/yarn --cwd website compile \
&& /usr/bin/yarn --cwd website build

# Main image derived from openvsx-server
FROM ghcr.io/eclipse/openvsx-server:v0.14.0
FROM ghcr.io/eclipse/openvsx-server:v0.14.1

COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/
COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/
1 change: 0 additions & 1 deletion configuration/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ ovsx:
publishing:
require-license: true
elasticsearch:
clear-on-start: true
enabled: true
ssl: true
relevance:
Expand Down
874 changes: 0 additions & 874 deletions website/.yarn/releases/yarn-3.6.1.cjs

This file was deleted.

893 changes: 893 additions & 0 deletions website/.yarn/releases/yarn-4.0.0.cjs

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion website/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
compressionLevel: mixed

enableGlobalCache: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.6.1.cjs
yarnPath: .yarn/releases/yarn-4.0.0.cjs
7 changes: 5 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"repository": "https://github.com/eclipse/open-vsx.org",
"license": "EPL-2.0",
"dependencies": {
"openvsx-webui": "0.11.1"
"openvsx-webui": "0.11.2"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
Expand All @@ -32,5 +35,5 @@
"watch:dev": "webpack --config dev/webpack.config.js --mode=development --watch",
"start:dev": "node dev/server"
},
"packageManager": "yarn@3.6.1"
"packageManager": "yarn@4.0.0"
}
Loading

0 comments on commit 948e281

Please sign in to comment.