You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: update release section for auto-approval process (#138)
JetBrains enabled auto-approval for the plugin and this plugin needs to
follow some rules in order to NOT break the auto-approval process. This
PR documents the guidelines.
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -252,6 +252,13 @@ may trigger regeneration of SSH configurations.
252
252
## Releasing
253
253
254
254
1. Check that the changelog lists all the important changes.
255
-
2. Update the gradle.properties version.
255
+
2. Update the `gradle.properties` version.
256
256
3. Publish the resulting draft release after validating it.
257
257
4. Merge the resulting changelog PR.
258
+
5.**Compliance Reminder for auto-approval**
259
+
JetBrains enabled auto-approval for the plugin, so we need to ensure we continue to meet the following requirements:
260
+
- do **not** use Kotlin experimental APIs.
261
+
- do **not** add any lambdas, handlers, or class handles to Java runtime hooks.
262
+
- do **not** create threads manually (including via libraries). If you must, ensure they are properly cleaned up in the plugin's `CoderRemoteProvider#close()` method.
263
+
- do **not** bundle libraries that are already provided by Toolbox.
0 commit comments