Skip to content

Commit

Permalink
Merge branch 'master' into feature/postgres-bigserial
Browse files Browse the repository at this point in the history
  • Loading branch information
eputtone authored Oct 1, 2024
2 parents db1e766 + 48fdd9f commit b124a98
Show file tree
Hide file tree
Showing 46 changed files with 14,248 additions and 35,105 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
matrix:
java: [ '17', '21' ]
db: [ 'h2', 'mariadb', 'postgresql', 'mysql', 'sqlserver', 'db2', 'oracle' ]
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
env:
SPRING_PROFILES_ACTIVE: nflow.db.${{ matrix.db }}
DB_VERSION: ${{ matrix.java == 17 && 'old' || 'latest' }}
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
## 9.0.1-SNAPSHOT (future release)

**Highlights**
- `nflow-explorer`
- POTENTIALLY BREAKING CHANGE: uses hash (`#`) instead of hashbang (`#!`) as web path prefix ([react-router no longer supports `hashType`](https://github.com/remix-run/react-router/pull/11310))
- Improved responsiveness on smaller displays

**Details**

- `nflow-explorer`
- Setup [demo deployment](https://nflow.io/nflow/ui/explorer/index.html)
- Support Azure AD authentication in Explorer (see nflow-explorer/src/config.js for configuration options)
- Improve REST API error response handling
- Sort state variables by name
- Use ReactJS 18.x, material UI 5.x
- Replace Create React App -build by Vite
- `nflow-engine`
- Update postgres db schema table id's to bigserial instead of serial
- Dependency updates
- Jetty 11.0.20
Expand Down
4 changes: 4 additions & 0 deletions nflow-explorer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ The User Interface for [nFlow](https://github.com/NitorCreations/nflow).
<img src="https://raw.githubusercontent.com/NitorCreations/nflow/master/nflow-explorer/screenshots/nflow-explorer-workflow-instance-variables.png" width="345" height="240">
<img src="https://raw.githubusercontent.com/NitorCreations/nflow/master/nflow-explorer/screenshots/nflow-explorer-workflow-instance-manage.png" width="345" height="240">

## Demo

<https://nflow.io/nflow/ui/explorer/index.html>

## Development

Installation
Expand Down
1 change: 1 addition & 0 deletions nflow-explorer/__mocks__/fileMock.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = 'test-file-stub'
1 change: 1 addition & 0 deletions nflow-explorer/__mocks__/styleMock.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {}
22 changes: 22 additions & 0 deletions nflow-explorer/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="/nflow_logo_borders_192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="/manifest.json" />
<title>nFlow Explorer</title>
</head>
<body>
<script src="config.js"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
Loading

0 comments on commit b124a98

Please sign in to comment.