From 529bab07507ab3d07832181fd17bc213af4eb245 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Wed, 3 May 2023 12:27:47 +0300 Subject: [PATCH 01/24] Assist testing eclipse-openvsx-api Change ovsx.eclipse.base-url to https://api-staging.eclipse.org --- configuration/application.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/application.yml b/configuration/application.yml index 3b776a7c..b4bc938b 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,7 +130,7 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - base-url: https://api.eclipse.org/ + base-url: https://api-staging.eclipse.org publisher-agreement: version: 1 timezone: US/Eastern From 1dc4070aa04bedd34e7813c1bcfe368a408ca0ab Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 5 May 2023 10:07:10 +0300 Subject: [PATCH 02/24] Try build again --- configuration/application.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configuration/application.yml b/configuration/application.yml index b4bc938b..eba74584 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,7 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - base-url: https://api-staging.eclipse.org + # TODO change back to https://api.eclipse.org/ after testing. + base-url: https://api-staging.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From 7b86008d09ceaed7e8fa38fce5ad97df0e1e959a Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 19 May 2023 19:05:58 +0300 Subject: [PATCH 03/24] Change Eclipse openvsx API back to production --- configuration/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/application.yml b/configuration/application.yml index eba74584..05cfbc38 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api.eclipse.org/ after testing. - base-url: https://api-staging.eclipse.org/ + # TODO change back to https://api-staging.eclipse.org/ after testing. + base-url: https://api.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From 2ba594453fd5b5ea0cb4a7f24178eaef4e21f33d Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sat, 20 May 2023 13:04:52 +0300 Subject: [PATCH 04/24] Test query endpoint performance --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cba374a3..82ec64af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM ghcr.io/eclipse/openvsx-server:2252936 +FROM docker.io/amvanbaren/openvsx-server:cad1f648 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 096fd704cc3cf9d48f72272c28c2b8284ec03011 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sat, 20 May 2023 13:53:02 +0300 Subject: [PATCH 05/24] test 0377c731 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 82ec64af..8cf51f73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:cad1f648 +FROM docker.io/amvanbaren/openvsx-server:0377c731 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From ef366926b77fe0aca5f5fd45adf38cc8c8c11a5f Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sat, 20 May 2023 14:15:46 +0300 Subject: [PATCH 06/24] test 9522f66f --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8cf51f73..e304add3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:0377c731 +FROM docker.io/amvanbaren/openvsx-server:9522f66f COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 0fdf829180b56489c4f7aafde46cce36ab7a9a72 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sat, 20 May 2023 17:47:32 +0300 Subject: [PATCH 07/24] revert to current production image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e304add3..cba374a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:9522f66f +FROM ghcr.io/eclipse/openvsx-server:2252936 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 4155ff1b3daa53954d5b47b82dfca8016ee43881 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Tue, 23 May 2023 16:26:39 +0300 Subject: [PATCH 08/24] Change ovsx.eclipse.base-url back to staging endpoint --- configuration/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/application.yml b/configuration/application.yml index 05cfbc38..eba74584 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api-staging.eclipse.org/ after testing. - base-url: https://api.eclipse.org/ + # TODO change back to https://api.eclipse.org/ after testing. + base-url: https://api-staging.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From 1f906862c57dd7e4463360b39ea6ddc915e529b3 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Thu, 25 May 2023 10:40:25 +0300 Subject: [PATCH 09/24] revert eclipse base-url --- configuration/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/application.yml b/configuration/application.yml index eba74584..05cfbc38 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api.eclipse.org/ after testing. - base-url: https://api-staging.eclipse.org/ + # TODO change back to https://api-staging.eclipse.org/ after testing. + base-url: https://api.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From 2c0ff7a716982c0ed50dd93b4820b27a9d317325 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Thu, 25 May 2023 11:23:34 +0300 Subject: [PATCH 10/24] test f4d7b989 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cba374a3..25492bfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM ghcr.io/eclipse/openvsx-server:2252936 +FROM docker.io/amvanbaren/openvsx-server:f4d7b989 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 2c04b2c073b96b5d4dbc14b3cc49894cff126fb4 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 26 May 2023 13:26:42 +0300 Subject: [PATCH 11/24] test eea0eccf --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25492bfe..89466c9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:f4d7b989 +FROM docker.io/amvanbaren/openvsx-server:eea0eccf COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 373882917bcd89c59f6860e00089220ed661611c Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 26 May 2023 13:43:12 +0300 Subject: [PATCH 12/24] test dfebb2b7 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 89466c9c..44fafcfa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:eea0eccf +FROM docker.io/amvanbaren/openvsx-server:dfebb2b7 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 93b5b6fcc450aac1b2a1be8b5f52014c5389715a Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 26 May 2023 14:42:04 +0300 Subject: [PATCH 13/24] test 8d07b511 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44fafcfa..ba85353d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:dfebb2b7 +FROM docker.io/amvanbaren/openvsx-server:8d07b511 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 218d1c9b95294a0cb548456f96b279e9a082106a Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 26 May 2023 16:10:42 +0300 Subject: [PATCH 14/24] test b61be848 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba85353d..39d4933d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:8d07b511 +FROM docker.io/amvanbaren/openvsx-server:b61be848 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 698854d94c9272f5a67e33b902951ca6ef03702e Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 26 May 2023 17:12:15 +0300 Subject: [PATCH 15/24] test 48cd6a3a --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39d4933d..f11a2f86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:b61be848 +FROM docker.io/amvanbaren/openvsx-server:48cd6a3a COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 0845b7de4501e74d9b1ab7dc753eaed40a869bbe Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sun, 28 May 2023 15:41:36 +0300 Subject: [PATCH 16/24] run b61be848 again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f11a2f86..39d4933d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:48cd6a3a +FROM docker.io/amvanbaren/openvsx-server:b61be848 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From f0126c2e03735b79de2e6b2009616e5ac7c384f3 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Sun, 28 May 2023 16:08:40 +0300 Subject: [PATCH 17/24] test 196407dc --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 39d4933d..4106175b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:b61be848 +FROM docker.io/amvanbaren/openvsx-server:196407dc COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 86fb80aa760a91a1ee5370f852df56cf68872856 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Mon, 29 May 2023 12:48:00 +0300 Subject: [PATCH 18/24] test b03a8236 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4106175b..d947c674 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:196407dc +FROM docker.io/amvanbaren/openvsx-server:b03a8236 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 9ebad0bf80b347ceb9bb31b12d389267a1ad1bd7 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Mon, 29 May 2023 14:25:42 +0300 Subject: [PATCH 19/24] test cb611288 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d947c674..1bce3a7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:b03a8236 +FROM docker.io/amvanbaren/openvsx-server:cb611288 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ From 19af40946bda4673f68d9ea4d50b6a936da8fa1e Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Mon, 29 May 2023 17:00:41 +0300 Subject: [PATCH 20/24] back to production image enable eclipse staging endpoint --- Dockerfile | 2 +- configuration/application.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1bce3a7b..cba374a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM docker.io/amvanbaren/openvsx-server:cb611288 +FROM ghcr.io/eclipse/openvsx-server:2252936 COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ diff --git a/configuration/application.yml b/configuration/application.yml index 05cfbc38..eba74584 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api-staging.eclipse.org/ after testing. - base-url: https://api.eclipse.org/ + # TODO change back to https://api.eclipse.org/ after testing. + base-url: https://api-staging.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From d8a200e660ac05b87115979d50fb904f811df033 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Tue, 30 May 2023 00:05:02 +0300 Subject: [PATCH 21/24] release 0.12.0 --- Dockerfile | 4 ++-- configuration/application.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index cba374a3..de7cfef9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,14 +18,14 @@ RUN curl -sSL https://deb.nodesource.com/setup_14.x | bash - \ RUN npm install --global yarn@1.* # bump to update website -ENV WEBSITE_VERSION 0.9.5 +ENV WEBSITE_VERSION 0.9.6 COPY . /workdir RUN /usr/bin/yarn --cwd website \ && /usr/bin/yarn --cwd website build # Main image derived from openvsx-server -FROM ghcr.io/eclipse/openvsx-server:2252936 +FROM ghcr.io/eclipse/openvsx-server:e5ba16b COPY --from=builder --chown=openvsx:openvsx /workdir/website/static/ BOOT-INF/classes/static/ COPY --from=builder --chown=openvsx:openvsx /workdir/configuration/ config/ diff --git a/configuration/application.yml b/configuration/application.yml index eba74584..5be1c79c 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api.eclipse.org/ after testing. - base-url: https://api-staging.eclipse.org/ + # TODO change back to https://api-staging.eclipse.org/ after release. + base-url: https://api.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From a6c15df4d185be54dbd6698787d4d2a60ed0a65f Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Tue, 30 May 2023 14:02:21 +0300 Subject: [PATCH 22/24] update webui to 0.9.6 --- website/package.json | 2 +- website/yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package.json b/website/package.json index 4a89d51e..517fda7e 100644 --- a/website/package.json +++ b/website/package.json @@ -6,7 +6,7 @@ "repository": "https://github.com/eclipse/open-vsx.org", "license": "EPL-2.0", "dependencies": { - "openvsx-webui": "0.9.5" + "openvsx-webui": "0.9.6" }, "devDependencies": { "@types/markdown-it": "^12.2.3", diff --git a/website/yarn.lock b/website/yarn.lock index 5e270050..08aae3d7 100644 --- a/website/yarn.lock +++ b/website/yarn.lock @@ -1534,10 +1534,10 @@ opener@^1.5.2: resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598" integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== -openvsx-webui@0.9.5: - version "0.9.5" - resolved "https://registry.yarnpkg.com/openvsx-webui/-/openvsx-webui-0.9.5.tgz#4f3c5a8ba9365b1f1059931f118bb7dc984d2160" - integrity sha512-HEZMXtYF3IIaUb0B5uWUrN+UvAyycSjT+rhPQIxgL4Tv78g1DFxmjwRuWjwXtSBa4lTrzDQo8J04oabndI1m6g== +openvsx-webui@0.9.6: + version "0.9.6" + resolved "https://registry.yarnpkg.com/openvsx-webui/-/openvsx-webui-0.9.6.tgz#eae7cee1f931f83df6e5a6708368dc8e3ff25268" + integrity sha512-idIEBGVU+KOl8s8g+rSokZ5QQOAkFcLzP/PMw5HlHGvtuC6Lax2dXCd6LXYiKUZ20BZjotkuW9zJ3loYbMHarw== dependencies: "@material-ui/core" "~4.9.14" "@material-ui/icons" "~4.9.1" From 32651ee8e331c54801dad86b135b2ed1f6736fc8 Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Fri, 2 Jun 2023 20:39:59 +0300 Subject: [PATCH 23/24] change to staging api --- configuration/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/application.yml b/configuration/application.yml index 5be1c79c..e6bbac58 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api-staging.eclipse.org/ after release. - base-url: https://api.eclipse.org/ + # TODO change back to https://api.eclipse.org/ before release. + base-url: https://api-staging.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern From f540d45d55818b7c7d2fb2d06d0c6ce923bedadd Mon Sep 17 00:00:00 2001 From: amvanbaren Date: Mon, 5 Jun 2023 10:40:01 +0300 Subject: [PATCH 24/24] Use api.eclipse.org for release 0.12.0 --- configuration/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/application.yml b/configuration/application.yml index e6bbac58..0b6fb879 100644 --- a/configuration/application.yml +++ b/configuration/application.yml @@ -130,8 +130,8 @@ ovsx: webui: frontendRoutes: "/extension/**,/namespace/**,/user-settings/**,/admin-dashboard/**,/about,/publisher-agreement-*,/terms-of-use" eclipse: - # TODO change back to https://api.eclipse.org/ before release. - base-url: https://api-staging.eclipse.org/ + # TODO change back to https://api-staging.eclipse.org/ for testing. + base-url: https://api.eclipse.org/ publisher-agreement: version: 1 timezone: US/Eastern