Skip to content

Commit

Permalink
Updated jsonpath-plus
Browse files Browse the repository at this point in the history
  • Loading branch information
epessina committed Oct 29, 2024
1 parent ccff069 commit 7e4bbda
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

### Versioning

- `jsonpath-plus` to version `10.1.0`

### Added

- Generating SBOM and signing docker images

## [3.3.1] - 2024-10-24

### Changed
Expand Down
54 changes: 48 additions & 6 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"fast-json-patch": "^3.1.1",
"glob": "^10.4.5",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^7.2.0",
"jsonpath-plus": "^10.1.0",
"lodash.clonedeepwith": "^4.5.0",
"lodash.get": "^4.4.2",
"mkdirp": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion scripts/debug-lc39.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const main = async (override?: string[]) => {
const promises = Array(paths.length).fill(0)
.map((_, idx) => new Promise((resolve, reject) => {
server.inject(paths[idx], (err: Error | null | undefined, response) => {
if (err) {
if (err || !response) {
reject(err)
} else if (response.statusCode > 299) {
console.error(
Expand Down

0 comments on commit 7e4bbda

Please sign in to comment.