Skip to content

Commit

Permalink
Bump dependencies (#523)
Browse files Browse the repository at this point in the history
* Bump dependencies

* release 1.23.0

* Update fuzzer test
  • Loading branch information
thim81 authored Oct 28, 2023
1 parent 1478d4c commit f6174b1
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 105 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## [Unreleased]

## v1.23.0 - (2023-10-23)

- orderOfOperations - Adjusted ordering string matching to be exact when wildcard is not present (#490)
- ContentTests - Add pm variable support for oneOf assertions in content tests (#520)
- Postman Sync - Set no limit to the body size on collection update (#517)
- Fuzzing - Exclude properties with reserved names from fuzzing (#514)
- Bumped dependencies

## v1.22.0 - (2023-03-26)
Expand Down
163 changes: 80 additions & 83 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 @@ -82,7 +82,7 @@
"lodash": "^4.17.21",
"newman": "^5.3.2",
"node-emoji": "^1.11.0",
"openapi-format": "^1.13.1",
"openapi-format": "^1.14.1",
"openapi-to-postmanv2": "^4.9.0",
"openapi-types": "9.1.0",
"ora": "^5.4.1",
Expand Down
8 changes: 4 additions & 4 deletions src/application/Fuzzer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1243,9 +1243,9 @@ describe('Fuzzer', () => {
type: 'array',
items: {
type: 'object',
required: ['properties'],
required: ['nestedProperties'],
properties: {
properties: {
nestedProperties: {
type: 'number',
example: 1,
minimum: 1,
Expand All @@ -1271,9 +1271,9 @@ describe('Fuzzer', () => {
type: 'array',
items: {
type: 'object',
required: ['properties'],
required: ['nestedProperties'],
properties: {
properties: {
nestedProperties: {
type: 'number',
example: 1,
minimum: 1,
Expand Down
Loading

0 comments on commit f6174b1

Please sign in to comment.