Age | Commit message (Collapse) | Author |
|
|
|
|
|
* Rename `resolveKDocLinkDRI` to `resolveKDocLinkToDRI`
* Rename `resolveKDocTextLink` functions to be consistent
|
|
|
|
* Add test
* Do not find javadoc for non-JVM source set
* [K2] Add javadoc parser for external documentable Provider
|
|
|
|
|
|
|
|
* multiple custom renderers can be installed to support different languages independently
* only language and code properties are provided for extension
|
|
|
|
|
|
* Remove property modifiers if there are none
* Remove variance modifier rendering if it is absent
|
|
|
|
|
|
Fixes a mistake introduced in #3174
|
|
|
|
* Refactor and simplify artifact publishing
* Update Gradle to 8.4
* Refactor and simplify convention plugins and build scripts
Fixes #3132
---------
Co-authored-by: Adam <897017+aSemy@users.noreply.github.com>
Co-authored-by: Oleg Yukhnevich <whyoleg@gmail.com>
|
|
* Add Gradle integration test for `wasm-js` and `wasm-wasi` targets
* Fix review comments
* Update versions of dependencies
|
|
|
|
(#3235)
* Use URL from base plugin configuration
* Add integration test for the multi-module project that the homepage link exists everywhere
|
|
* Update compiler and KGP to 1.9.20
* Update integration tests
|
|
* Update Kotlin compiler to 1.9.20-RC2
The current changes are related to https://github.com/JetBrains/kotlin/commit/d797505f06d640b666829bbfb4b7d7c67f812026
* Update KGP to 1.9.20-RC2
* Replace common stdlib in unit tests
* Update Kotlin version in integration tests
* Fix `Multiplatform0GradleIntegrationTest`
* Turn WasmGradleIntegrationTest off for Kotlin 1.9.20-RC2
|
|
|
|
|
|
* Fix the test `handles correct number of elements`
* Mute the test `finds correct number of deprecated methods`
|
|
Analysis API (#3227)
* Implement InheritanceBuilder and for symbols
* Enable tests for as-java and javadoc plugins and fix some
* Update the version of Analysis API and enable test
* Use assert from kotlin.test
* Rename `descriptorInheritanceBuilder`
* Fix after rebasing
* Mute test `two classes from different packages`
|
|
* Reorganize project model for MPP
We map Dokka's source set directly to a source module of Analysis API inside one Analysis Standalone session.
Analysis API session is created in src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/symbols/plugin/KotlinAnalysis.kt (see fun createAnalysisSession)
Before the PR, one Dokka's source set corresponded to one Standalone API session with one source module that has source roots from dependent source sets.
* Add 'caffeine' dependency from Analysis API
* Fix sample provider
* Fix tests
* Enable tests and update the version of Analysis API.
The PR allows the enabling of some tests annotated with OnlyDescriptorsMPP.
Also, tests with OnlyDescriptorsMPP that have unresolved common symbols are fixed by the new version of Analysis API.
|
|
|
|
It was marked experimental in a new version of coroutines https://github.com/Kotlin/kotlinx.coroutines/commit/042720589c6f438f77d84254bd2dceb569f0184, after 5a6fab535b68916a28d922d5d7a294fa432b7d6b
|
|
|
|
One example was updated in #3046, but there are two similar ones on the page
|
|
|
|
|
|
|
|
|
|
|
|
The documentation for OkHttp has been moved to https://square.github.io/okhttp/5.x/okhttp/okhttp3/
As per https://github.com/square/okhttp/commit/05718b4d87b591820a178b3fb6a4325c83c55d7a, they are currently using HTML for docs and not markdown
|
|
|
|
|
|
Fixes #3035
|
|
* Migrate K2-Based dokka to use the new standalone mode API
see https://youtrack.jetbrains.com/issue/KT-60884
* Do not use copy-n-pasted code from Analysis API in K2-Based Dokka
see https://youtrack.jetbrains.com/issue/KT-60884
* Remove copy-n-pasted API from Analysis API in K2-Based Dokka
as it's now unused
see https://youtrack.jetbrains.com/issue/KT-60884
* Update version Analysis API to 1.9.30-dev-3330
---------
Co-authored-by: Ilya Kirillov <ilya.kirillov@jetbrains.com>
|
|
Otherwise, `Caused by: org.jetbrains.kotlin.utils.exceptions.KotlinIllegalArgumentExceptionWithAttachments: Unexpected class org.jetbrains.kotlin.analysis.project.structure.KtBuiltinsModule
at org.jetbrains.kotlin.analysis.low.level.api.fir.util.ExceptionUtilsKt.errorWithFirSpecificEntries(exceptionUtils.kt:50)`
|
|
|
|
|
|
Co-authored-by: vmishenev <vad-mishenev@yandex.ru>
|
|
Due to the recent changes in how Analysis API handles builtins, the update to the fresh version of Analysis API requires registering Kotlin stdlib in every testsuite.
|
|
#3143 wasn't based on latest master, so the checks were green, but then the compilation failed due to explicit API mode
|
|
#3034 broke the fix for #1599 by changing packages
|
|
* fix(KTL-1177): Resize Observer has indefinite loop
|
|
* [K2] Fix functional type and improve logging for unresolved link
For example
`typealias CompletionHandler = (cause: Throwable?) -> Unit`
has a functional type with no type arguments in K2. In K1 we have a usual generic type
|