This project is mirrored from https://gitee.com/mirrors/intellij-community.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
  1. 07 Jul, 2023 1 commit
  2. 04 Jul, 2023 3 commits
    • Sergei Vorobyov's avatar
      IDEA-319522 fix: ignore all user code and data exceptions · 598adfbf
      Sergei Vorobyov authored
      Currently, the IDEA doesn't support evaluation of Gradle property providers which require task execution.
      
      (cherry picked from commit e552a71810615ec87750c6354f592eb1570ff750)
      
      IJ-CR-110076
      
      GitOrigin-RevId: 1bea1cc1e08ff3aebc8467af3210036fb615b733
      598adfbf
    • Nikita.Skvortsov's avatar
      [gradle] add explicit list of allowed types jar task inputs IDEA-318657 · 99c814b3
      Nikita.Skvortsov authored
       Limit checks of jar task inputs. Resolving arbitrary input using Project#files API may throw exceptions. Listed types are safe to resolve
      
      (cherry picked from commit c0a5e7a5c7e82b961071e43b0b386ee1d915c046)
      (cherry picked from commit b7d40f3c460961c3abca012e4c9a295f784fdfb1)
      
      IJ-CR-110076
      
      GitOrigin-RevId: 53998355d772cddb555128af3a5b0a00c84223d5
      99c814b3
    • Nikolay Chashnikov's avatar
      [platform] "Copy Reference" action for non-java modules should copy the path... · d6dc11ad
      Nikolay Chashnikov authored
      [platform] "Copy Reference" action for non-java modules should copy the path from the content root (IDEA-316752)
      
      WorkspaceFileIndex::getContentFileSetRoot will return the path to the nearest parent content or source root, this is not that people expect for non-java modules. BaseProjectDirectories::getBaseDirectoryFor called below will return the parent (top-level) content root. Files in Java modules are handled by JavaVirtualFileQualifiedNameProvider, so nothing will change for them.
      
      Cherry-picked from 916ce28ba7bf85b44cf19bb8734dcd0e0494fea5, IJ-CR-110021.
      
      GitOrigin-RevId: 43341730cb42e63f09ba88f70cf6638d9f3bb14f
      d6dc11ad
  3. 30 Jun, 2023 5 commits
    • Roman Shevchenko's avatar
      [platform] directory lock: deleting stale redirected port file (IDEA-323836) · b5678b07
      Roman Shevchenko authored
      (cherry-picked from commit 3863d63e571b30447eacd2ae1e1f1198782bdfd0)
      
      IJ-CR-109615
      
      GitOrigin-RevId: 43d7ea1a827c4858cd0711ff27233d83774e7c62
      b5678b07
    • Mikhail Golubev's avatar
      PY-60959 Restart code analysis after an SDK update even if introspection has failed · 36b4bde4
      Mikhail Golubev authored
      The reasoning is that if an interpreter can't be successfully updated, it's better
      to fail fast, clearly indicating the current state of resolve, rather that confuse
      a user by invisible errors. It might go the other way around, e.g. the update has
      been mostly completed before an error occurred, but we still show unresolved references
      in the editor, even though all the remote sources and skeletons are already available
      for code insight.
      
      In this particular case, a runtime SftpChannelException, caused by an attempt to copy
      a file with an illegal name, made highlighting go stale and still report unresolved
      imports until the IDE was restarted.
      
      IJ-MR-109009
      
      (cherry picked from commit ee218dd575205de054e7d093ac6635d168449120)
      
      GitOrigin-RevId: 654d8565107ec697671ae2459cf52c9c42c3683f
      36b4bde4
    • Mikhail Golubev's avatar
      [python] Specify Python 2-compatible virtualenv for tox to test Python helpers · 7bb964ea
      Mikhail Golubev authored
      IJ-MR-109009
      
      (cherry picked from commit 916ac31182d93a8e8f5b960f6e2192121aaff45e)
      
      GitOrigin-RevId: a8f7b1e95a9101b3983f6d48e7b63697a39bf7ce
      7bb964ea
    • Mikhail Golubev's avatar
      PY-60959 During skeleton generation skip module attributes with illegal names · cb819ab6
      Mikhail Golubev authored
      Otherwise, we end up generating syntactically invalid skeletons or, if
      a large module gets transformed into a package where each class stub is
      declared in its own file with the same name, some of the class names might
      be illegal even for the target file system.
      
      In this particular issue, the "shyft" package declared a class named
      "ComputeNodeInfoVectorA strongly typed list of ComputeNodeInfo as returned
      from the dstm server\012", which couldn't be copied to a Windows host from
      a Linux remote.
      
      IJ-MR-109009
      
      (cherry picked from commit 0eed4ee5bb8fab85104297107a7f26150e390824)
      
      GitOrigin-RevId: 2b0cc87db012f8b6d5b82882bdedace15115db4e
      cb819ab6
    • Dmitry Batkovich's avatar
      dispose vfs & indexes as soon as possible when termination signal received... · 64bc06aa
      Dmitry Batkovich authored
      dispose vfs & indexes as soon as possible when termination signal received because OS may not wait until completed app shutdown and kill it
      
      (cherry picked from commit d539fa7d1db5c8762ac317b93ea82e204f24c78d)
      
      IJ-CR-109768
      
      GitOrigin-RevId: 47bb0874a63f3dc6ed41dde9887e8316100c5d0d
      64bc06aa
  4. 29 Jun, 2023 2 commits
    • Victor Kropp's avatar
      TBX-8461: check a new option set by the Toolbox App 2.0 to indicate that it manages the IDE · 29e9d3e2
      Victor Kropp authored
      The difference now is that there is path to the executable, and IDE verifies that Toolbox is still present there.
      
      (cherry picked from commit 45fa8b2e7ae17f3d3386865e8f56438f21fc4af3)
      
      IJ-CR-109521
      
      GitOrigin-RevId: d69c734ffe89dd98adad31dd435569a669df5340
      29e9d3e2
    • Tagir Valeev's avatar
      [java-analysis] Remove jakarta.validation annotation · 61e2c884
      Tagir Valeev authored
      Fixes IDEA-323505 can't remove @NotNull annotation from configuration
      Fixes IDEA-323547 @jakarta.validation.constraints.NotNull is being incorrectly interpreted for Nullability Problems
      
      (cherry picked from commit 07fd30deed72546762a37c79d894ea5188df4917)
      
      IJ-CR-109516
      
      GitOrigin-RevId: 25f60abd2f9fe1b02de9f911298be39f8c4c326f
      61e2c884
  5. 28 Jun, 2023 2 commits
  6. 26 Jun, 2023 3 commits
  7. 23 Jun, 2023 4 commits
  8. 22 Jun, 2023 2 commits
  9. 21 Jun, 2023 12 commits
  10. 20 Jun, 2023 1 commit
  11. 16 Jun, 2023 1 commit
  12. 13 Jun, 2023 4 commits