Skip to content

Commit

Permalink
v4.16.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjdhjd committed Oct 5, 2024
1 parent f558ef8 commit 86ab16b
Show file tree
Hide file tree
Showing 6 changed files with 468 additions and 302 deletions.
4 changes: 4 additions & 0 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. This project uses [semantic versioning](https://semver.org/).

## 4.16.0 (2024-10-05)
* New feature: ufp - a command line utility to query and execute some utility commands using the Protect API. You'll need to create either ~/.ufp.json or ufp.json in your current directory with the properties `controller`, `username`, `password` all defined in a valid JSON.
* Housekeeping.

## 4.15.1 (2024-09-29)
* Minor updates to the Protect JSON descriptions.
* Housekeeping.
Expand Down
6 changes: 3 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default ts.config(

{

files: [ "src/**.ts" ],
files: [ "src/**.ts", "src/util/**.ts" ],
rules: {

...hbPluginUtils.rules.ts
Expand All @@ -22,7 +22,7 @@ export default ts.config(

{

files: [ "ui/lib/**.mjs", "eslint.config.mjs" ],
files: [ "eslint.config.mjs" ],
rules: {

...hbPluginUtils.rules.js
Expand All @@ -31,7 +31,7 @@ export default ts.config(

{

files: [ "src/**.ts", "eslint.config.mjs" ],
files: [ "eslint.config.mjs", "src/**.ts", "src/util/**.ts" ],

ignores: [ "dist" ],

Expand Down
Loading

0 comments on commit 86ab16b

Please sign in to comment.