jentic-openapi-transformer-redocly 1.0.0a34__tar.gz → 1.0.0a35__tar.gz

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.
@@ -1,14 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jentic-openapi-transformer-redocly
3
- Version: 1.0.0a34
3
+ Version: 1.0.0a35
4
4
  Summary: Jentic OpenAPI Redocly Transformer Backend
5
5
  Author: Jentic
6
6
  Author-email: Jentic <hello@jentic.com>
7
7
  License-Expression: Apache-2.0
8
8
  License-File: LICENSE
9
9
  License-File: NOTICE
10
- Requires-Dist: jentic-openapi-common~=1.0.0a34
11
- Requires-Dist: jentic-openapi-transformer~=1.0.0a34
10
+ Requires-Dist: jentic-openapi-common~=1.0.0a35
11
+ Requires-Dist: jentic-openapi-transformer~=1.0.0a35
12
12
  Requires-Python: >=3.11
13
13
  Project-URL: Homepage, https://github.com/jentic/jentic-openapi-tools
14
14
  Description-Content-Type: text/markdown
@@ -41,7 +41,7 @@ pip install jentic-openapi-transformer-redocly
41
41
  The Redocly CLI will be automatically downloaded via npx on first use, or you can install it globally:
42
42
 
43
43
  ```bash
44
- npm install -g @redocly/cli@2.14.3
44
+ npm install -g @redocly/cli@2.15.1
45
45
  ```
46
46
 
47
47
  ## Quick Start
@@ -141,7 +141,7 @@ uv run --package jentic-openapi-transformer-redocly pytest packages/jentic-opena
141
141
  class RedoclyBundlerBackend(BaseBundlerBackend):
142
142
  def __init__(
143
143
  self,
144
- redocly_path: str = "npx --yes @redocly/cli@2.14.3",
144
+ redocly_path: str = "npx --yes @redocly/cli@2.15.1",
145
145
  timeout: float = 600.0,
146
146
  allowed_base_dir: str | Path | None = None,
147
147
  ) -> None
@@ -26,7 +26,7 @@ pip install jentic-openapi-transformer-redocly
26
26
  The Redocly CLI will be automatically downloaded via npx on first use, or you can install it globally:
27
27
 
28
28
  ```bash
29
- npm install -g @redocly/cli@2.14.3
29
+ npm install -g @redocly/cli@2.15.1
30
30
  ```
31
31
 
32
32
  ## Quick Start
@@ -126,7 +126,7 @@ uv run --package jentic-openapi-transformer-redocly pytest packages/jentic-opena
126
126
  class RedoclyBundlerBackend(BaseBundlerBackend):
127
127
  def __init__(
128
128
  self,
129
- redocly_path: str = "npx --yes @redocly/cli@2.14.3",
129
+ redocly_path: str = "npx --yes @redocly/cli@2.15.1",
130
130
  timeout: float = 600.0,
131
131
  allowed_base_dir: str | Path | None = None,
132
132
  ) -> None
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "jentic-openapi-transformer-redocly"
3
- version = "1.0.0-alpha.34"
3
+ version = "1.0.0-alpha.35"
4
4
  description = "Jentic OpenAPI Redocly Transformer Backend"
5
5
  readme = "README.md"
6
6
  authors = [{ name = "Jentic", email = "hello@jentic.com" }]
@@ -8,8 +8,8 @@ license = "Apache-2.0"
8
8
  license-files = ["LICENSE", "NOTICE"]
9
9
  requires-python = ">=3.11"
10
10
  dependencies = [
11
- "jentic-openapi-common~=1.0.0-alpha.34",
12
- "jentic-openapi-transformer~=1.0.0-alpha.34"
11
+ "jentic-openapi-common~=1.0.0-alpha.35",
12
+ "jentic-openapi-transformer~=1.0.0-alpha.35"
13
13
  ]
14
14
 
15
15
  [project.urls]
@@ -18,7 +18,7 @@ __all__ = ["RedoclyBundlerBackend"]
18
18
  class RedoclyBundlerBackend(BaseBundlerBackend):
19
19
  def __init__(
20
20
  self,
21
- redocly_path: str = "npx --yes @redocly/cli@2.14.3",
21
+ redocly_path: str = "npx --yes @redocly/cli@2.15.1",
22
22
  timeout: float = 600.0,
23
23
  allowed_base_dir: str | Path | None = None,
24
24
  ):
@@ -26,7 +26,7 @@ class RedoclyBundlerBackend(BaseBundlerBackend):
26
26
  Initialize the RedoclyBundler.
27
27
 
28
28
  Args:
29
- redocly_path: Path to the redocly CLI executable (default: "npx --yes @redocly/cli@2.14.3").
29
+ redocly_path: Path to the redocly CLI executable (default: "npx --yes @redocly/cli@2.15.1").
30
30
  Uses shell-safe parsing to handle quoted arguments properly.
31
31
  timeout: Maximum time in seconds to wait for Redocly CLI execution (default: 600.0)
32
32
  allowed_base_dir: Optional base directory for path security validation.