Skip to content

Commit

Permalink
Fixed the "create user" modal. Fixed the pagination bar when pages
Browse files Browse the repository at this point in the history
…= 0. Added small css tweaks for light / dark theme transitions. Replaced `ngrok` with official `@ngrok/ngrok`. Updated Node LTS version for docker / package.
  • Loading branch information
neonexus committed Nov 5, 2023
1 parent fe52fe4 commit 0cbad83
Show file tree
Hide file tree
Showing 83 changed files with 649 additions and 15,685 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ config/local.js
test

**/README*
CHANGELOG.md
*.md
LICENSE
68 changes: 0 additions & 68 deletions .github/workflows/codeql.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,7 @@ app.zip

# Downloaded binary files
.bin

# Code coverage
test/coverage/*
!test/coverage/.gitkeep
5 changes: 1 addition & 4 deletions .npmrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,5 @@
# Hide NPM log output unless it is related to an error of some kind:
loglevel=error

# Make "npm audit" an opt-in thing for subsequent installs within this app:
# Run "npm audit" after installs
audit=true

# Don't install optional dependencies automatically (which is a weird default NPM...):
omit=optional
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ services: mysql
before_install:
- mysql -e 'CREATE DATABASE IF NOT EXISTS testing;'
- mysql -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mypass'"
after_success: npm run codecov
deploy:
skip_cleanup: true
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [v4.3.0](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v4.2.4...v4.3.0) (2023-11-04)
### Features

* Fixed the "create user" modal.
* Fixed the pagination bar when `pages` = 0.
* Added small css tweaks for light / dark theme transitions.
* Updated Node LTS version for docker / package.
* Removed `omit=optional` from `.npmrc`.
* Replaced code coverage files with [Codecov](https://codecov.io).
* Updated dependencies.

### Breaking Changes

* Replaced [`ngrok`](https://npmjs.org/package/ngrok) with official [`@ngrok/ngrok`](https://npmjs.org/package/@ngrok/ngrok) in [ngrok.js](ngrok.js).

## [v4.2.4](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v4.2.3...v4.2.4) (2023-10-30)
### Features

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-slim
FROM node:20-slim
MAINTAINER NeoNexus DeMortis

RUN mkdir /var/www && mkdir /var/www/myapp
Expand Down
Loading

0 comments on commit 0cbad83

Please sign in to comment.