Skip to content

Commit

Permalink
Release 4.0.1 (#36)
Browse files Browse the repository at this point in the history
## Release notes

* Add destroy request call in close event to support SSE closing
(#34)
* Pin sass-embedded to 1.62.0 to avoid "Cannot find module 'sass'" error
(#35)

### Release dependencies first

In case of dependent Phovea/TDP repositories follow [dependency
tree](https://wiki.datavisyn.io/phovea/fundamentals/development-process#dependency-hierarchy)
from the top:

 
### 🏁 Finish line

* [ ] Inform colleagues and customers about the release
* [ ] Celebrate the new release 🥳
  • Loading branch information
puehringer authored Jul 3, 2023
2 parents 84cbd10 + a8dab9e commit df9ffbf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 16,129 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ package-lock.json
!.yarn/releases
!.yarn/sdks
!.yarn/versions
yarn.lock
4 changes: 4 additions & 0 deletions config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ module.exports = (webpackEnv, argv) => {
target: 'http://localhost:9000',
secure: false,
ws: true,
// Explicitly forward close events for properly closing SSE (server-side events). See https://github.com/webpack/webpack-dev-server/issues/2769#issuecomment-1517290190
onProxyReq: (proxyReq, req, res) => {
res.on('close', () => proxyReq.destroy());
},
},
'/login': {
target: 'http://localhost:9000',
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "visyn_scripts",
"description": "",
"version": "4.0.0",
"version": "4.0.1",
"author": {
"name": "datavisyn GmbH",
"email": "[email protected]",
Expand Down Expand Up @@ -100,7 +100,7 @@
"resolve": "^1.22.1",
"resolve-url-loader": "^5.0.0",
"rimraf": "~4.4.0",
"sass-embedded": "^1.59.3",
"sass-embedded": "1.62.0",
"sass-loader": "^13.2.0",
"semver": "^7.3.8",
"semver-intersect": "^1.4.0",
Expand Down
Loading

0 comments on commit df9ffbf

Please sign in to comment.