@ahmttyydn/java-integration 1.0.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 (70) hide show
  1. package/CHANGELOG.md +762 -0
  2. package/README.md +37 -0
  3. package/package.json +46 -0
  4. package/pom.xml +242 -0
  5. package/scalar-core/pom.xml +92 -0
  6. package/scalar-core/src/main/java/com/scalar/maven/core/ScalarConstants.java +26 -0
  7. package/scalar-core/src/main/java/com/scalar/maven/core/ScalarHtmlRenderer.java +135 -0
  8. package/scalar-core/src/main/java/com/scalar/maven/core/ScalarProperties.java +596 -0
  9. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/ScalarAuthenticationOptions.java +235 -0
  10. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/AuthorizationCodeFlow.java +160 -0
  11. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/ClientCredentialsFlow.java +88 -0
  12. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/ImplicitFlow.java +64 -0
  13. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/OAuthFlow.java +185 -0
  14. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/PasswordFlow.java +134 -0
  15. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/flows/ScalarFlows.java +113 -0
  16. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/schemes/ScalarApiKeySecurityScheme.java +77 -0
  17. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/schemes/ScalarHttpSecurityScheme.java +115 -0
  18. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/schemes/ScalarOAuth2SecurityScheme.java +75 -0
  19. package/scalar-core/src/main/java/com/scalar/maven/core/authentication/schemes/ScalarSecurityScheme.java +45 -0
  20. package/scalar-core/src/main/java/com/scalar/maven/core/config/DefaultHttpClient.java +77 -0
  21. package/scalar-core/src/main/java/com/scalar/maven/core/config/ScalarAgentOptions.java +68 -0
  22. package/scalar-core/src/main/java/com/scalar/maven/core/config/ScalarServer.java +197 -0
  23. package/scalar-core/src/main/java/com/scalar/maven/core/config/ScalarSource.java +151 -0
  24. package/scalar-core/src/main/java/com/scalar/maven/core/enums/CredentialsLocation.java +52 -0
  25. package/scalar-core/src/main/java/com/scalar/maven/core/enums/DeveloperToolsVisibility.java +58 -0
  26. package/scalar-core/src/main/java/com/scalar/maven/core/enums/DocumentDownloadType.java +67 -0
  27. package/scalar-core/src/main/java/com/scalar/maven/core/enums/OperationSorter.java +52 -0
  28. package/scalar-core/src/main/java/com/scalar/maven/core/enums/OperationTitleSource.java +52 -0
  29. package/scalar-core/src/main/java/com/scalar/maven/core/enums/Pkce.java +57 -0
  30. package/scalar-core/src/main/java/com/scalar/maven/core/enums/PropertyOrder.java +53 -0
  31. package/scalar-core/src/main/java/com/scalar/maven/core/enums/ScalarClient.java +208 -0
  32. package/scalar-core/src/main/java/com/scalar/maven/core/enums/ScalarLayout.java +52 -0
  33. package/scalar-core/src/main/java/com/scalar/maven/core/enums/ScalarTarget.java +158 -0
  34. package/scalar-core/src/main/java/com/scalar/maven/core/enums/ScalarTheme.java +102 -0
  35. package/scalar-core/src/main/java/com/scalar/maven/core/enums/TagSorter.java +47 -0
  36. package/scalar-core/src/main/java/com/scalar/maven/core/enums/ThemeMode.java +52 -0
  37. package/scalar-core/src/main/java/com/scalar/maven/core/internal/ScalarConfiguration.java +425 -0
  38. package/scalar-core/src/main/java/com/scalar/maven/core/internal/ScalarConfigurationMapper.java +69 -0
  39. package/scalar-core/src/main/resources/META-INF/resources/webjars/scalar/index.html +22 -0
  40. package/scalar-core/src/test/java/com/scalar/maven/core/ScalarConfigurationTest.java +144 -0
  41. package/scalar-core/src/test/java/com/scalar/maven/core/ScalarHtmlRendererTest.java +104 -0
  42. package/scalar-core/src/test/java/com/scalar/maven/core/ScalarPropertiesTest.java +525 -0
  43. package/scalar-core/src/test/java/com/scalar/maven/core/config/DefaultHttpClientTest.java +61 -0
  44. package/scalar-core/src/test/java/com/scalar/maven/core/config/ScalarAgentOptionsTest.java +80 -0
  45. package/scalar-core/src/test/java/com/scalar/maven/core/config/ScalarServerTest.java +118 -0
  46. package/scalar-core/src/test/java/com/scalar/maven/core/config/ScalarSourceTest.java +105 -0
  47. package/scalar-playground-webflux/pom.xml +52 -0
  48. package/scalar-playground-webflux/src/main/java/com/scalar/maven/playground/CustomScalarWebFluxController.java +34 -0
  49. package/scalar-playground-webflux/src/main/java/com/scalar/maven/playground/PlaygroundApplication.java +27 -0
  50. package/scalar-playground-webflux/src/main/resources/application.properties +7 -0
  51. package/scalar-playground-webmvc/pom.xml +52 -0
  52. package/scalar-playground-webmvc/src/main/java/com/scalar/maven/playground/CustomScalarWebMvcController.java +34 -0
  53. package/scalar-playground-webmvc/src/main/java/com/scalar/maven/playground/PlaygroundApplication.java +27 -0
  54. package/scalar-playground-webmvc/src/main/resources/application.properties +7 -0
  55. package/scalar-webflux/pom.xml +110 -0
  56. package/scalar-webflux/src/main/java/com/scalar/maven/webflux/ScalarWebFluxActuatorEndpoint.java +103 -0
  57. package/scalar-webflux/src/main/java/com/scalar/maven/webflux/ScalarWebFluxAutoConfiguration.java +63 -0
  58. package/scalar-webflux/src/main/java/com/scalar/maven/webflux/ScalarWebFluxController.java +109 -0
  59. package/scalar-webflux/src/main/java/com/scalar/maven/webflux/SpringBootScalarProperties.java +43 -0
  60. package/scalar-webflux/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports +2 -0
  61. package/scalar-webflux/src/test/java/com/scalar/maven/webflux/ScalarWebFluxActuatorEndpointTest.java +136 -0
  62. package/scalar-webflux/src/test/java/com/scalar/maven/webflux/ScalarWebFluxControllerTest.java +162 -0
  63. package/scalar-webmvc/pom.xml +103 -0
  64. package/scalar-webmvc/src/main/java/com/scalar/maven/webmvc/ScalarWebMvcActuatorEndpoint.java +97 -0
  65. package/scalar-webmvc/src/main/java/com/scalar/maven/webmvc/ScalarWebMvcAutoConfiguration.java +63 -0
  66. package/scalar-webmvc/src/main/java/com/scalar/maven/webmvc/ScalarWebMvcController.java +103 -0
  67. package/scalar-webmvc/src/main/java/com/scalar/maven/webmvc/SpringBootScalarProperties.java +43 -0
  68. package/scalar-webmvc/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports +2 -0
  69. package/scalar-webmvc/src/test/java/com/scalar/maven/webmvc/ScalarWebMvcActuatorEndpointTest.java +128 -0
  70. package/scalar-webmvc/src/test/java/com/scalar/maven/webmvc/ScalarWebMvcControllerTest.java +154 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,762 @@
1
+ # @ahmttyydn/java-integration
2
+
3
+ ## 0.6.20
4
+
5
+ ## 0.6.19
6
+
7
+ ## 0.6.18
8
+
9
+ ## 0.6.17
10
+
11
+ ## 0.6.16
12
+
13
+ ## 0.6.15
14
+
15
+ ## 0.6.14
16
+
17
+ ## 0.6.13
18
+
19
+ ## 0.6.12
20
+
21
+ ## 0.6.11
22
+
23
+ ## 0.6.10
24
+
25
+ ### Patch Changes
26
+
27
+ #### Updated Dependencies
28
+
29
+ - **@ahmttyydn/api-reference@1.49.0**
30
+ - [#8443](https://github.com/scalar/scalar/pull/8443): fix hash-prefixed basePath routing
31
+ - [#8467](https://github.com/scalar/scalar/pull/8467): feat(api-reference): improve Ask AI button consistency and a11y
32
+ - [#8409](https://github.com/scalar/scalar/pull/8409): feat: lazy rendering
33
+ - [#8442](https://github.com/scalar/scalar/pull/8442): fix object schema descriptions in parameter rendering
34
+
35
+ ## 0.6.9
36
+
37
+ ### Patch Changes
38
+
39
+ #### Updated Dependencies
40
+
41
+ - **@ahmttyydn/api-reference@1.48.8**
42
+ - [#8425](https://github.com/scalar/scalar/pull/8425): fix auth default OAuth scope fallback
43
+ - [#8416](https://github.com/scalar/scalar/pull/8416): fix: direct css import breaks build in react, vitepress and others
44
+ - [#8417](https://github.com/scalar/scalar/pull/8417): fix: document not defined in SSR environments
45
+
46
+ ## 0.6.8
47
+
48
+ ### Patch Changes
49
+
50
+ #### Updated Dependencies
51
+
52
+ - **@ahmttyydn/api-reference@1.48.7**
53
+
54
+ ## 0.6.7
55
+
56
+ ### Patch Changes
57
+
58
+ #### Updated Dependencies
59
+
60
+ - **@ahmttyydn/api-reference@1.48.6**
61
+ - [#8414](https://github.com/scalar/scalar/pull/8414): fix(api-reference): limit height of example response descriptions
62
+
63
+ ## 0.6.6
64
+
65
+ ### Patch Changes
66
+
67
+ #### Updated Dependencies
68
+
69
+ - **@ahmttyydn/api-reference@1.48.5**
70
+ - [#8406](https://github.com/scalar/scalar/pull/8406): feat: x-order
71
+ - [#8097](https://github.com/scalar/scalar/pull/8097): fix: lazy load compositions
72
+ - [#8380](https://github.com/scalar/scalar/pull/8380): feat(api-reference): render `<a>` HTML tag for `documentDownloadType: direct`
73
+
74
+ ## 0.6.5
75
+
76
+ ### Patch Changes
77
+
78
+ #### Updated Dependencies
79
+
80
+ - **@ahmttyydn/api-reference@1.48.4**
81
+
82
+ ## 0.6.4
83
+
84
+ ### Patch Changes
85
+
86
+ #### Updated Dependencies
87
+
88
+ - **@ahmttyydn/api-reference@1.48.3**
89
+ - [#8257](https://github.com/scalar/scalar/pull/8257): fix: display the referenced name
90
+ - [#8253](https://github.com/scalar/scalar/pull/8253): feat(api-reference): support propertyNames enum for additionalProperties
91
+ - [#8385](https://github.com/scalar/scalar/pull/8385): fix: relative / invalid URLs being passed to open MCP registration flow
92
+ - [#8391](https://github.com/scalar/scalar/pull/8391): Create instant MCP in the dashboard in localhost
93
+
94
+ ## 0.6.3
95
+
96
+ ### Patch Changes
97
+
98
+ #### Updated Dependencies
99
+
100
+ - **@ahmttyydn/api-reference@1.48.2**
101
+ - [#8381](https://github.com/scalar/scalar/pull/8381): feat: add mcp config support
102
+ - [#8375](https://github.com/scalar/scalar/pull/8375): feat(api-reference): export lazy bus queue helper
103
+ - [#8370](https://github.com/scalar/scalar/pull/8370): fix: hide the authentication panel when test requests are disabled
104
+
105
+ ## 0.6.2
106
+
107
+ ### Patch Changes
108
+
109
+ #### Updated Dependencies
110
+
111
+ - **@ahmttyydn/api-reference@1.48.1**
112
+ - [#8288](https://github.com/scalar/scalar/pull/8288): fix: add consistent border to schema composition components
113
+ - [#8348](https://github.com/scalar/scalar/pull/8348): fix(api-reference): bump dev tools z index for themes
114
+ - [#8366](https://github.com/scalar/scalar/pull/8366): fix(components): clean up search components and add snapshots
115
+
116
+ ## 0.6.1
117
+
118
+ ### Patch Changes
119
+
120
+ #### Updated Dependencies
121
+
122
+ - **@ahmttyydn/api-reference@1.48.0**
123
+ - [#8266](https://github.com/scalar/scalar/pull/8266): support operation level authentication and servers
124
+
125
+ ## 0.6.0
126
+
127
+ ### Minor Changes
128
+
129
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
130
+
131
+ ### Patch Changes
132
+
133
+ #### Updated Dependencies
134
+
135
+ - **@ahmttyydn/api-reference@1.47.0**
136
+ - [#8340](https://github.com/scalar/scalar/pull/8340): fix: delay when clicking "show more" button
137
+ - [#8340](https://github.com/scalar/scalar/pull/8340): refactor(api-reference): update AgentScalarDrawer
138
+ - [#8340](https://github.com/scalar/scalar/pull/8340): chore: enable perf logs only for dev environment
139
+ - [#8322](https://github.com/scalar/scalar/pull/8322): chore: bump required node version to >=22 (LTS)
140
+
141
+ ## 0.5.63
142
+
143
+ ### Patch Changes
144
+
145
+ #### Updated Dependencies
146
+
147
+ - **@ahmttyydn/api-reference@1.46.4**
148
+ - [#8330](https://github.com/scalar/scalar/pull/8330): fix: use ref name only as a fallback
149
+
150
+ ## 0.5.62
151
+
152
+ ### Patch Changes
153
+
154
+ #### Updated Dependencies
155
+
156
+ - **@ahmttyydn/api-reference@1.46.3**
157
+ - [#8298](https://github.com/scalar/scalar/pull/8298): feat(api-reference): show explicit no-content response tabs for defined response keys
158
+ - [#8313](https://github.com/scalar/scalar/pull/8313): chore: resolve schemas on demand
159
+
160
+ ## 0.5.61
161
+
162
+ ### Patch Changes
163
+
164
+ #### Updated Dependencies
165
+
166
+ - **@ahmttyydn/api-reference@1.46.2**
167
+
168
+ ## 0.5.60
169
+
170
+ ### Patch Changes
171
+
172
+ - [#8284](https://github.com/scalar/scalar/pull/8284): feat(java): relative paths for assets in scalar-webmvc
173
+
174
+ #### Updated Dependencies
175
+
176
+ - **@ahmttyydn/api-reference@1.46.1**
177
+ - [#8294](https://github.com/scalar/scalar/pull/8294): default createAnySecurityScheme to false and fix index clamp issue
178
+
179
+ ## 0.5.59
180
+
181
+ ### Patch Changes
182
+
183
+ #### Updated Dependencies
184
+
185
+ - **@ahmttyydn/api-reference@1.46.0**
186
+ - [#8290](https://github.com/scalar/scalar/pull/8290): chore: update deps
187
+ - [#8283](https://github.com/scalar/scalar/pull/8283): fix: scrollToLazy can not find id when the browser is busy
188
+
189
+ ## 0.5.58
190
+
191
+ ### Patch Changes
192
+
193
+ #### Updated Dependencies
194
+
195
+ - **@ahmttyydn/api-reference@1.45.0**
196
+ - [#8255](https://github.com/scalar/scalar/pull/8255): fix: correctly handle circular references when deep resolving references
197
+ - [#8279](https://github.com/scalar/scalar/pull/8279): fix(api-references): css collision on ask ai input
198
+ - [#8234](https://github.com/scalar/scalar/pull/8234): support operation level authentication and servers
199
+
200
+ ## 0.5.57
201
+
202
+ ### Patch Changes
203
+
204
+ #### Updated Dependencies
205
+
206
+ - **@ahmttyydn/api-reference@1.44.27**
207
+ - [#8274](https://github.com/scalar/scalar/pull/8274): feat(agent): add config to hide search api
208
+ - [#8260](https://github.com/scalar/scalar/pull/8260): feat: update developer tools
209
+
210
+ ## 0.5.56
211
+
212
+ ### Patch Changes
213
+
214
+ #### Updated Dependencies
215
+
216
+ - **@ahmttyydn/api-reference@1.44.26**
217
+ - [#8248](https://github.com/scalar/scalar/pull/8248): fix: local storage migration script
218
+ - [#8248](https://github.com/scalar/scalar/pull/8248): feat: slugs for headings with nested content
219
+ - [#8248](https://github.com/scalar/scalar/pull/8248): chore: correctly display header in classic layout
220
+ - [#8248](https://github.com/scalar/scalar/pull/8248): feat: always show the schema type
221
+ - [#8248](https://github.com/scalar/scalar/pull/8248): feat: nest description headings in the sidebar
222
+ - [#8248](https://github.com/scalar/scalar/pull/8248): feat: add option to open first tag by default
223
+
224
+ ## 0.5.55
225
+
226
+ ### Patch Changes
227
+
228
+ #### Updated Dependencies
229
+
230
+ - **@ahmttyydn/api-reference@1.44.25**
231
+
232
+ ## 0.5.54
233
+
234
+ ### Patch Changes
235
+
236
+ #### Updated Dependencies
237
+
238
+ - **@ahmttyydn/api-reference@1.44.24**
239
+
240
+ ## 0.5.53
241
+
242
+ ### Patch Changes
243
+
244
+ #### Updated Dependencies
245
+
246
+ - **@ahmttyydn/api-reference@1.44.23**
247
+ - [#8212](https://github.com/scalar/scalar/pull/8212): chore: version bump
248
+
249
+ ## 0.5.52
250
+
251
+ ### Patch Changes
252
+
253
+ #### Updated Dependencies
254
+
255
+ - **@ahmttyydn/api-reference@1.44.22**
256
+ - [#8207](https://github.com/scalar/scalar/pull/8207): chore: version bump
257
+
258
+ ## 0.5.51
259
+
260
+ ### Patch Changes
261
+
262
+ #### Updated Dependencies
263
+
264
+ - **@ahmttyydn/api-reference@1.44.21**
265
+ - [#8164](https://github.com/scalar/scalar/pull/8164): fix: remove duplicate examples
266
+ - [#8186](https://github.com/scalar/scalar/pull/8186): feat(api-reference): export new helpers
267
+ - [#8174](https://github.com/scalar/scalar/pull/8174): feat: add `createAnySecurityScheme` config option to control generic auth scheme creation
268
+
269
+ ## 0.5.50
270
+
271
+ ### Patch Changes
272
+
273
+ #### Updated Dependencies
274
+
275
+ - **@ahmttyydn/api-reference@1.44.20**
276
+ - [#8159](https://github.com/scalar/scalar/pull/8159): fix: do not mutate document after ingress
277
+ - [#8178](https://github.com/scalar/scalar/pull/8178): chore: package bump due to ci failure
278
+
279
+ ## 0.5.49
280
+
281
+ ### Patch Changes
282
+
283
+ #### Updated Dependencies
284
+
285
+ - **@ahmttyydn/api-reference@1.44.19**
286
+ - [#8155](https://github.com/scalar/scalar/pull/8155): fix(api-reference): bugs with cards rendering
287
+
288
+ ## 0.5.48
289
+
290
+ ### Patch Changes
291
+
292
+ #### Updated Dependencies
293
+
294
+ - **@ahmttyydn/api-reference@1.44.18**
295
+ - [#8109](https://github.com/scalar/scalar/pull/8109): feat: keep the sidebar scrolled near the top
296
+ - [#8134](https://github.com/scalar/scalar/pull/8134): fix(components): change caret position to right
297
+ - [#8121](https://github.com/scalar/scalar/pull/8121): chore: moved client plugin types to oas-utils so they can be shared
298
+
299
+ ## 0.5.47
300
+
301
+ ### Patch Changes
302
+
303
+ - [#8104](https://github.com/scalar/scalar/pull/8104): feat: agent scalar configuration
304
+
305
+ #### Updated Dependencies
306
+
307
+ - **@ahmttyydn/api-reference@1.44.17**
308
+ - [#8094](https://github.com/scalar/scalar/pull/8094): feat: open client to the correct example name
309
+
310
+ ## 0.5.46
311
+
312
+ ### Patch Changes
313
+
314
+ #### Updated Dependencies
315
+
316
+ - **@ahmttyydn/api-reference@1.44.16**
317
+ - [#8081](https://github.com/scalar/scalar/pull/8081): feat(components): improve ScalarCodeBlock copy UI
318
+ - [#8098](https://github.com/scalar/scalar/pull/8098): fix(api-reference): revert stacking context for toolbar
319
+ - [#8086](https://github.com/scalar/scalar/pull/8086): fix(api-reference): inconsistent styles throughout api-reference
320
+
321
+ ## 0.5.45
322
+
323
+ ### Patch Changes
324
+
325
+ #### Updated Dependencies
326
+
327
+ - **@ahmttyydn/api-reference@1.44.15**
328
+
329
+ ## 0.5.44
330
+
331
+ ### Patch Changes
332
+
333
+ #### Updated Dependencies
334
+
335
+ - **@ahmttyydn/api-reference@1.44.14**
336
+ - [#8025](https://github.com/scalar/scalar/pull/8025): fix: use flex-start instead of start for better browser support
337
+ - [#8056](https://github.com/scalar/scalar/pull/8056): fix: hideModels not applying correctly
338
+
339
+ ## 0.5.43
340
+
341
+ ### Patch Changes
342
+
343
+ #### Updated Dependencies
344
+
345
+ - **@ahmttyydn/api-reference@1.44.13**
346
+
347
+ ## 0.5.42
348
+
349
+ ### Patch Changes
350
+
351
+ #### Updated Dependencies
352
+
353
+ - **@ahmttyydn/api-reference@1.44.12**
354
+ - [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
355
+
356
+ ## 0.5.41
357
+
358
+ ### Patch Changes
359
+
360
+ #### Updated Dependencies
361
+
362
+ - **@ahmttyydn/api-reference@1.44.11**
363
+
364
+ ## 0.5.40
365
+
366
+ ### Patch Changes
367
+
368
+ #### Updated Dependencies
369
+
370
+ - **@ahmttyydn/api-reference@1.44.10**
371
+ - [#8016](https://github.com/scalar/scalar/pull/8016): feat: move history and auth into their own store
372
+
373
+ ## 0.5.39
374
+
375
+ ### Patch Changes
376
+
377
+ #### Updated Dependencies
378
+
379
+ - **@ahmttyydn/api-reference@1.44.9**
380
+
381
+ ## 0.5.38
382
+
383
+ ### Patch Changes
384
+
385
+ #### Updated Dependencies
386
+
387
+ - **@ahmttyydn/api-reference@1.44.8**
388
+ - [#8018](https://github.com/scalar/scalar/pull/8018): fix(agent): clickout close events
389
+
390
+ ## 0.5.37
391
+
392
+ ### Patch Changes
393
+
394
+ #### Updated Dependencies
395
+
396
+ - **@ahmttyydn/api-reference@1.44.7**
397
+ - [#8017](https://github.com/scalar/scalar/pull/8017): fix: remove agent tooltip
398
+
399
+ ## 0.5.36
400
+
401
+ ### Patch Changes
402
+
403
+ #### Updated Dependencies
404
+
405
+ - **@ahmttyydn/api-reference@1.44.6**
406
+ - [#8010](https://github.com/scalar/scalar/pull/8010): fix: use proper computed property
407
+
408
+ ## 0.5.35
409
+
410
+ ### Patch Changes
411
+
412
+ #### Updated Dependencies
413
+
414
+ - **@ahmttyydn/api-reference@1.44.5**
415
+ - [#8007](https://github.com/scalar/scalar/pull/8007): fix: use correct composition data for oneOf property
416
+ - [#8006](https://github.com/scalar/scalar/pull/8006): fix(agent): safari fieldsizing fallback
417
+
418
+ ## 0.5.34
419
+
420
+ ### Patch Changes
421
+
422
+ #### Updated Dependencies
423
+
424
+ - **@ahmttyydn/api-reference@1.44.4**
425
+ - [#8000](https://github.com/scalar/scalar/pull/8000): fix(agent): change enabled flag to disabled
426
+ - [#7979](https://github.com/scalar/scalar/pull/7979): fix: prevent re-rendering of already-ready items in lazy-bus queue
427
+
428
+ Restores the readyQueue guard in addToPendingQueue to prevent items that are
429
+ already rendered from being re-added to the pending queue. This fixes a
430
+ performance regression introduced in #7497 where large API specs would
431
+ experience severe slowdowns due to items being reprocessed on every scroll
432
+ or interaction.
433
+
434
+ The fix maintains the callback functionality from #7497 by still allowing
435
+ items to be added to the priority queue (for callback triggering), but
436
+ processQueue now skips adding items that are already in readyQueue.
437
+
438
+ - [#8002](https://github.com/scalar/scalar/pull/8002): feat(agent): add inline agent chat
439
+ - [#7985](https://github.com/scalar/scalar/pull/7985): fix(api-reference): set fallback for mobile header sticky offset
440
+ - [#7784](https://github.com/scalar/scalar/pull/7784): fix: resolve oauth2 relative URLs against relative server URLs
441
+ - [#7995](https://github.com/scalar/scalar/pull/7995): feat: enable/disable agent scalar
442
+ - [#7977](https://github.com/scalar/scalar/pull/7977): fix(api-reference): apply sidebar width variable
443
+
444
+ ## 0.5.33
445
+
446
+ ### Patch Changes
447
+
448
+ #### Updated Dependencies
449
+
450
+ - **@ahmttyydn/api-reference@1.44.3**
451
+
452
+ ## 0.5.32
453
+
454
+ ### Patch Changes
455
+
456
+ #### Updated Dependencies
457
+
458
+ - **@ahmttyydn/api-reference@1.44.2**
459
+
460
+ ## 0.5.31
461
+
462
+ ### Patch Changes
463
+
464
+ #### Updated Dependencies
465
+
466
+ - **@ahmttyydn/api-reference@1.44.1**
467
+ - [#7961](https://github.com/scalar/scalar/pull/7961): fix(agent): make agent ui responsive
468
+ - [#7967](https://github.com/scalar/scalar/pull/7967): fix(agent): remove ui jump on uploading document
469
+
470
+ ## 0.5.30
471
+
472
+ ### Patch Changes
473
+
474
+ #### Updated Dependencies
475
+
476
+ - **@ahmttyydn/api-reference@1.44.0**
477
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
478
+ - [#7932](https://github.com/scalar/scalar/pull/7932): feat: use getExample in the references responses
479
+ - [#7931](https://github.com/scalar/scalar/pull/7931): fix(api-reference): account for custom header and sidebar
480
+
481
+ ## 0.5.29
482
+
483
+ ### Patch Changes
484
+
485
+ #### Updated Dependencies
486
+
487
+ - **@ahmttyydn/api-reference@1.43.17**
488
+
489
+ ## 0.5.28
490
+
491
+ ### Patch Changes
492
+
493
+ #### Updated Dependencies
494
+
495
+ - **@ahmttyydn/api-reference@1.43.16**
496
+ - [#7901](https://github.com/scalar/scalar/pull/7901): fix(api-reference): don't flex schema enum label
497
+
498
+ ## 0.5.27
499
+
500
+ ### Patch Changes
501
+
502
+ #### Updated Dependencies
503
+
504
+ - **@ahmttyydn/api-reference@1.43.15**
505
+ - [#7894](https://github.com/scalar/scalar/pull/7894): fix: the import and export of redirect to proxy
506
+
507
+ ## 0.5.26
508
+
509
+ ### Patch Changes
510
+
511
+ #### Updated Dependencies
512
+
513
+ - **@ahmttyydn/api-reference@1.43.14**
514
+
515
+ ## 0.5.25
516
+
517
+ ### Patch Changes
518
+
519
+ #### Updated Dependencies
520
+
521
+ - **@ahmttyydn/api-reference@1.43.13**
522
+
523
+ ## 0.5.24
524
+
525
+ ### Patch Changes
526
+
527
+ #### Updated Dependencies
528
+
529
+ - **@ahmttyydn/api-reference@1.43.12**
530
+ - [#7850](https://github.com/scalar/scalar/pull/7850): fix: remove unused workspace config
531
+ - [#7819](https://github.com/scalar/scalar/pull/7819): feat: hide responses without content
532
+
533
+ ## 0.5.23
534
+
535
+ ### Patch Changes
536
+
537
+ #### Updated Dependencies
538
+
539
+ - **@ahmttyydn/api-reference@1.43.11**
540
+
541
+ ## 0.5.22
542
+
543
+ ### Patch Changes
544
+
545
+ #### Updated Dependencies
546
+
547
+ - **@ahmttyydn/api-reference@1.43.10**
548
+ - [#7820](https://github.com/scalar/scalar/pull/7820): fix: correctly restore the auth from persistance
549
+ - [#7814](https://github.com/scalar/scalar/pull/7814): fix: additional properties generate invalid example
550
+
551
+ ## 0.5.21
552
+
553
+ ### Patch Changes
554
+
555
+ - [#7810](https://github.com/scalar/scalar/pull/7810): docs: update documentation domain
556
+
557
+ #### Updated Dependencies
558
+
559
+ - **@ahmttyydn/api-reference@1.43.9**
560
+ - [#7781](https://github.com/scalar/scalar/pull/7781): fix: remove unused dependencies
561
+ - `@floating-ui/vue`
562
+ - `@ahmttyydn/json-magic`
563
+ - `@ahmttyydn/object-utils`
564
+ - `@ahmttyydn/openapi-upgrader`
565
+ - `js-base64`
566
+ - `type-fest`
567
+ - `zod`
568
+
569
+ - [#7778](https://github.com/scalar/scalar/pull/7778): fix: do not persist auth when the option is off
570
+ - [#7802](https://github.com/scalar/scalar/pull/7802): fix: can not search in classic layout
571
+ - [#7810](https://github.com/scalar/scalar/pull/7810): docs: update documentation domain
572
+
573
+ ## 0.5.20
574
+
575
+ ### Patch Changes
576
+
577
+ #### Updated Dependencies
578
+
579
+ - **@ahmttyydn/api-reference@1.43.8**
580
+
581
+ ## 0.5.19
582
+
583
+ ### Patch Changes
584
+
585
+ #### Updated Dependencies
586
+
587
+ - **@ahmttyydn/api-reference@1.43.7**
588
+ - [#7751](https://github.com/scalar/scalar/pull/7751): fix: auth persistence
589
+
590
+ ## 0.5.18
591
+
592
+ ### Patch Changes
593
+
594
+ #### Updated Dependencies
595
+
596
+ - **@ahmttyydn/api-reference@1.43.6**
597
+ - [#7761](https://github.com/scalar/scalar/pull/7761): fix: update the hooks when the configuration changes
598
+
599
+ ## 0.5.17
600
+
601
+ ### Patch Changes
602
+
603
+ #### Updated Dependencies
604
+
605
+ - **@ahmttyydn/api-reference@1.43.5**
606
+ - [#7745](https://github.com/scalar/scalar/pull/7745): fix: add nested array support to references
607
+ - [#7752](https://github.com/scalar/scalar/pull/7752): Export Auth component
608
+ - [#7746](https://github.com/scalar/scalar/pull/7746): fix: allow trailing slashes in path
609
+ - [#7742](https://github.com/scalar/scalar/pull/7742): feat: export auth component + proxy fix
610
+
611
+ ## 0.5.16
612
+
613
+ ### Patch Changes
614
+
615
+ #### Updated Dependencies
616
+
617
+ - **@ahmttyydn/api-reference@1.43.4**
618
+ - [#7678](https://github.com/scalar/scalar/pull/7678): chore: add test for tagSorter
619
+ - [#7693](https://github.com/scalar/scalar/pull/7693): feat: markdown default line height
620
+ - [#7730](https://github.com/scalar/scalar/pull/7730): fix: ensure path params work on the client
621
+
622
+ ## 0.5.15
623
+
624
+ ### Patch Changes
625
+
626
+ #### Updated Dependencies
627
+
628
+ - **@ahmttyydn/api-reference@1.43.3**
629
+
630
+ ## 0.5.14
631
+
632
+ ### Patch Changes
633
+
634
+ #### Updated Dependencies
635
+
636
+ - **@ahmttyydn/api-reference@1.43.2**
637
+
638
+ ## 0.5.13
639
+
640
+ ### Patch Changes
641
+
642
+ #### Updated Dependencies
643
+
644
+ - **@ahmttyydn/api-reference@1.43.1**
645
+ - [#7673](https://github.com/scalar/scalar/pull/7673): fix: pass in reactive auth config to client
646
+
647
+ ## 0.5.12
648
+
649
+ ### Patch Changes
650
+
651
+ #### Updated Dependencies
652
+
653
+ - **@ahmttyydn/api-reference@1.43.0**
654
+ - [#7661](https://github.com/scalar/scalar/pull/7661): feat: api client v2 integration
655
+
656
+ ## 0.5.11
657
+
658
+ ### Patch Changes
659
+
660
+ #### Updated Dependencies
661
+
662
+ - **@ahmttyydn/api-reference@1.42.0**
663
+ - [#7605](https://github.com/scalar/scalar/pull/7605): feat: api client v2 integration
664
+
665
+ ## 0.5.10
666
+
667
+ ### Patch Changes
668
+
669
+ #### Updated Dependencies
670
+
671
+ - **@ahmttyydn/api-reference@1.41.1**
672
+
673
+ ## 0.5.9
674
+
675
+ ### Patch Changes
676
+
677
+ #### Updated Dependencies
678
+
679
+ - **@ahmttyydn/api-reference@1.41.0**
680
+ - [#7633](https://github.com/scalar/scalar/pull/7633): feat(api-reference): support rendering custom components for paths
681
+ - [#7583](https://github.com/scalar/scalar/pull/7583): feat: show empty schema message for object with no properties
682
+ - [#7597](https://github.com/scalar/scalar/pull/7597): fix: show more button appears even if tags don't have any children
683
+
684
+ ## 0.5.8
685
+
686
+ ### Patch Changes
687
+
688
+ #### Updated Dependencies
689
+
690
+ - **@ahmttyydn/api-reference@1.40.9**
691
+
692
+ ## 0.5.7
693
+
694
+ ### Patch Changes
695
+
696
+ #### Updated Dependencies
697
+
698
+ - **@ahmttyydn/api-reference@1.40.8**
699
+ - [#7577](https://github.com/scalar/scalar/pull/7577): fix(api-reference): add padding to card intro in callbacks
700
+ - [#7567](https://github.com/scalar/scalar/pull/7567): feat: add code samples to client v2
701
+
702
+ ## 0.5.6
703
+
704
+ ### Patch Changes
705
+
706
+ - [#7548](https://github.com/scalar/scalar/pull/7548): FINALLY fixed the maven publish job
707
+
708
+ #### Updated Dependencies
709
+
710
+ - **@ahmttyydn/api-reference@1.40.7**
711
+ - [#7575](https://github.com/scalar/scalar/pull/7575): feat: add support for object examples + hide body when empty
712
+ - [#7550](https://github.com/scalar/scalar/pull/7550): Fix content width in mobile layout
713
+
714
+ ## 0.5.5
715
+
716
+ ### Patch Changes
717
+
718
+ - [#7512](https://github.com/scalar/scalar/pull/7512) [`4e188bb`](https://github.com/scalar/scalar/commit/4e188bbeaeb1dbc9f2d0318ab92dddbf69f6400a) Thanks [@xC0dex](https://github.com/xC0dex)! - fix maven publish
719
+
720
+ - Updated dependencies []:
721
+ - @ahmttyydn/api-reference@1.40.6
722
+
723
+ ## 0.5.4
724
+
725
+ ### Patch Changes
726
+
727
+ - Updated dependencies []:
728
+ - @ahmttyydn/api-reference@1.40.5
729
+
730
+ ## 0.5.3
731
+
732
+ ### Patch Changes
733
+
734
+ - Updated dependencies [[`2b46ee2`](https://github.com/scalar/scalar/commit/2b46ee2773023ca348e8691e1123970ca58090e5)]:
735
+ - @ahmttyydn/api-reference@1.40.4
736
+
737
+ ## 0.5.2
738
+
739
+ ### Patch Changes
740
+
741
+ - Updated dependencies [[`72cd82f`](https://github.com/scalar/scalar/commit/72cd82fb8df63a9e5d0db1202978aebfefd0457a)]:
742
+ - @ahmttyydn/api-reference@1.40.3
743
+
744
+ ## 0.5.1
745
+
746
+ ### Patch Changes
747
+
748
+ - [#7480](https://github.com/scalar/scalar/pull/7480) [`5cb78d5`](https://github.com/scalar/scalar/commit/5cb78d535802e8107d970373eb4d78b0d367b8ce) Thanks [@xC0dex](https://github.com/xC0dex)! - fix CI publish
749
+
750
+ - Updated dependencies [[`08d137a`](https://github.com/scalar/scalar/commit/08d137a1d9172bd51a9a401fb0101ddf90d3b1a8), [`f446bbc`](https://github.com/scalar/scalar/commit/f446bbc0b8aec7fa7314603fd48471f06c1318d5), [`b77fa53`](https://github.com/scalar/scalar/commit/b77fa5356a1ad51766b6dd6b20e10c408924a8ff)]:
751
+ - @ahmttyydn/api-reference@1.40.2
752
+
753
+ ## 0.5.0
754
+
755
+ ### Minor Changes
756
+
757
+ - [#7376](https://github.com/scalar/scalar/pull/7376) [`0b85d74`](https://github.com/scalar/scalar/commit/0b85d7491be2eb7306917adf559983d9ab40d2db) Thanks [@xC0dex](https://github.com/xC0dex)! - feat: separate modules for Spring Boot. Please checkout our new documentation!
758
+
759
+ ### Patch Changes
760
+
761
+ - Updated dependencies [[`9342adc`](https://github.com/scalar/scalar/commit/9342adcd76e26a8e5eff75c1a2abee2c207b1487), [`62b5210`](https://github.com/scalar/scalar/commit/62b521092bafeb8e83e79222e13378c4a19defc8), [`425d8e1`](https://github.com/scalar/scalar/commit/425d8e1aaac26a6ec9a781431e1076ee4db3d027), [`294f9fc`](https://github.com/scalar/scalar/commit/294f9fc6cfd43cdab110deb1c851883509bc2b84)]:
762
+ - @ahmttyydn/api-reference@1.40.1