Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v5 #292

Merged
merged 1 commit into from
Jul 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [14, 16, 18, 20]
node: [16, 18, 20]

steps:
- name: Clone repository
Expand Down
9 changes: 7 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v5.0.0:
date: 2024-07-05
changes:
- Replaced node-http2 with http2-wrapper, potental breaking changes.
- Bump to deps, serve-static, async and internal grunt
v4.0.0:
date: 2023-07-13
changes:
Expand Down Expand Up @@ -109,8 +114,8 @@ v0.4.0:
- Ability to set multiple bases.
- Event emitted when server starts listening.
- Support for HTTPS.
- '`debug` option added to display debug logging like the `--debug` flag.'
- '`livereload` option added to inject a livereload snippet into the page.'
- "`debug` option added to display debug logging like the `--debug` flag."
- "`livereload` option added to inject a livereload snippet into the page."
v0.3.0:
date: 2013-04-10
changes:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,7 @@ grunt.registerTask('jasmine-server', 'start web server for jasmine tests in brow

## Release History

* 2024-07-05   v5.0.0   Replaced node-http2 with http2-wrapper, potental breaking changes. Bump to deps, serve-static, async and internal grunt
* 2023-07-13   v4.0.0   Requires node 16+. Updated dependencies.
* 2020-07-16   v3.0.0   Requires node 10+. Updated dependencies.
* 2019-09-03   v2.1.0   Update package lock. Allow all configuration options of livereload to be passed through.
Expand Down
38 changes: 22 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@
"test": "grunt test"
},
"dependencies": {
"async": "^3.2.0",
"async": "^3.2.5",
"connect": "^3.7.0",
"connect-livereload": "^0.6.1",
"http2-wrapper": "^2.2.1",
"morgan": "^1.10.0",
"open": "^8.0.0",
"portscanner": "^2.2.0",
"serve-index": "^1.9.1",
"serve-static": "^1.14.1"
"serve-static": "^1.15.0"
},
"devDependencies": {
"grunt": "^1.6.1",
"grunt-contrib-internal": "^8.0.0",
"grunt-contrib-internal": "^9.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0"
},
Expand Down
Loading