oas 18.3.0 → 18.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +9 -11
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## <small>18.3.1 (2022-04-26)</small>
2
+
3
+ * chore(deps): bumping out of date deps to get rid of node 18 compat issues (#639) ([13703c8](https://github.com/readmeio/oas/commit/13703c8)), closes [#639](https://github.com/readmeio/oas/issues/639)
4
+
5
+
6
+
1
7
  ## <small>18.2.2 (2022-04-11)</small>
2
8
 
3
9
  * fix: stop rewriting operationIds when we don't need to (#635) ([996cd40](https://github.com/readmeio/oas/commit/996cd40)), closes [#635](https://github.com/readmeio/oas/issues/635)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oas",
3
- "version": "18.3.0",
3
+ "version": "18.3.1",
4
4
  "description": "Working with OpenAPI definitions is hard. This makes it easier.",
5
5
  "license": "MIT",
6
6
  "author": "ReadMe <support@readme.io> (https://readme.com)",
@@ -37,11 +37,10 @@
37
37
  "scripts": {
38
38
  "build": "tsc",
39
39
  "lint": "eslint . --ext .js,.ts",
40
- "lint:docs": "alex . .github/",
41
40
  "prebuild": "rm -rf dist/ @types/",
42
41
  "prepack": "npm run build",
43
42
  "prepare": "husky install",
44
- "pretest": "npm run lint && npm run lint:docs",
43
+ "pretest": "npm run lint",
45
44
  "prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
46
45
  "release": "npx conventional-changelog-cli -i CHANGELOG.md -s && git add CHANGELOG.md",
47
46
  "test": "tsc; jest --coverage",
@@ -60,25 +59,24 @@
60
59
  "jsonpointer": "^5.0.0",
61
60
  "memoizee": "^0.4.14",
62
61
  "minimist": "^1.2.0",
63
- "oas-normalize": "^5.2.0",
62
+ "oas-normalize": "^6.0.0",
64
63
  "openapi-types": "^10.0.0",
65
64
  "path-to-regexp": "^6.2.0",
66
- "swagger-inline": "^5.2.0"
65
+ "swagger-inline": "^6.0.0"
67
66
  },
68
67
  "devDependencies": {
69
68
  "@commitlint/cli": "^16.2.3",
70
69
  "@commitlint/config-conventional": "^16.0.0",
71
- "@readme/eslint-config": "^8.5.1",
72
- "@readme/oas-examples": "^5.0.0",
73
- "@readme/openapi-parser": "^2.0.4",
70
+ "@readme/eslint-config": "^8.7.2",
71
+ "@readme/oas-examples": "^5.1.1",
72
+ "@readme/openapi-parser": "^2.2.0",
74
73
  "@types/jest": "^27.0.2",
75
74
  "@types/json-schema-merge-allof": "^0.6.1",
76
75
  "@types/memoizee": "^0.4.6",
77
- "alex": "^10.0.0",
78
- "eslint": "^8.12.0",
76
+ "eslint": "^8.14.0",
79
77
  "husky": "^7.0.2",
80
78
  "jest": "^27.0.3",
81
- "prettier": "^2.6.1",
79
+ "prettier": "^2.6.2",
82
80
  "ts-jest": "^27.1.4",
83
81
  "typescript": "^4.6.3"
84
82
  },