Skip to content

Commit 24763b6

Browse files
authored
1.1.0 release. (#16)
Release TIBCO Developer hub v1.1.0
2 parents 57d41cb + 57d974c commit 24763b6

Some content is hidden

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

54 files changed

+32714
-26299
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
playwright.config.ts

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: 16
15+
node-version: 18
1616
- run: yarn install
1717
- name: validate config
1818
run: yarn backstage-cli config:check --lax

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,5 @@ environment.sh
139139
*.environment.sh
140140

141141
.idea
142+
# E2E test reports
143+
e2e-test-report/

build/platform/Dockerfile renamed to Dockerfile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1 - Create yarn install skeleton layer
2-
FROM --platform=$BUILDPLATFORM node:16-bullseye-slim AS packages
2+
FROM --platform=$BUILDPLATFORM node:18-bookworm-slim AS packages
33

44
WORKDIR /app
55
COPY package.json yarn.lock ./
@@ -12,7 +12,7 @@ COPY plugins plugins
1212
RUN find packages \! -name "package.json" -mindepth 2 -maxdepth 2 -exec rm -rf {} \+
1313

1414
# Stage 2 - Install dependencies and build packages
15-
FROM --platform=$BUILDPLATFORM node:16-bullseye-slim AS build
15+
FROM --platform=$BUILDPLATFORM node:18-bookworm-slim AS build
1616

1717
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
1818
--mount=type=cache,target=/var/lib/apt,sharing=locked \
@@ -42,7 +42,7 @@ RUN mkdir packages/backend/dist/skeleton packages/backend/dist/bundle \
4242
&& tar xzf packages/backend/dist/bundle.tar.gz -C packages/backend/dist/bundle
4343

4444
# Stage 3 - Build the actual backend image and install production dependencies
45-
FROM --platform=$TARGETPLATFORM node:16-bullseye-slim
45+
FROM --platform=$TARGETPLATFORM node:18-bookworm-slim
4646

4747
# Install sqlite3 dependencies. You can skip this if you don't use sqlite3 in the image,
4848
# in which case you should also move better-sqlite3 to "devDependencies" in package.json.
@@ -59,7 +59,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
5959
apt-get install -y --no-install-recommends python3 g++ build-essential python3-pip && \
6060
yarn config set python /usr/bin/python3
6161

62-
RUN pip3 install mkdocs-techdocs-core==1.1.7
62+
RUN pip3 install mkdocs-techdocs-core==1.1.7 --break-system-packages
6363

6464
# From here on we use the least-privileged `node` user to run the backend.
6565
USER node
@@ -81,8 +81,6 @@ COPY --from=build --chown=node:node /app/packages/backend/dist/bundle/ ./
8181
# Copy any other files that we need at runtime
8282
COPY --chown=node:node app-config.yaml app-config.production.yaml ./
8383

84-
COPY --chown=node:node tibco-examples ./tibco-examples
85-
8684
# Copy license file
8785
COPY --chown=node:node LICENSE.TXT /opt/tibco/license/
8886

File renamed without changes.

NOTICES

Lines changed: 6978 additions & 5415 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,19 @@ Start the frontend server
8787
yarn start
8888
```
8989

90+
### Steps to build
91+
92+
```sh
93+
docker build -t <customImageName:customImageTag> .
94+
```
95+
9096
## Helpful Documentation
9197

9298
[Docker configuration](./docker/README.md)\
9399
[Docs](./docs/app-config-extensions.md)\
94100
[Packages](./packages/README.md)\
95101
[Plugins](./plugins/README.md)\
96-
[Example Templates, Group and System](./tibco-examples/README.md)
102+
[Example Templates, Group and System](https://github.com/TIBCOSoftware/tibco-developer-hub/tree/main/tibco-examples/README.md)
97103

98104
## Licenses
99105

app-config.template-local.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ catalog:
2828
- type: file
2929
target: ../../tibco-examples/tibco-examples.yaml
3030
rules:
31-
- allow: [Group, Template, System, Domain, Location]
32-
31+
- allow:[ Component, API, Location, Template, User, Group, Domain, System, Resource ]
3332
auth:
3433
# see https://backstage.io/docs/auth/ to learn about auth providers
3534
environment: development

backstage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.16.0"
2+
"version": "1.21.1"
33
}

build/platform/charts/tibco-developer-hub/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 1.0.32
9+
version: 1.1.6
1010

11-
appVersion: "1.0.1"
11+
appVersion: "1.1.0"
1212

1313
dependencies:
1414
- name: common
@@ -19,4 +19,4 @@ dependencies:
1919
- condition: postgresql.enabled
2020
name: postgresql
2121
repository: ""
22-
version: 11.x.x
22+
version: 11.x.x

0 commit comments

Comments
 (0)