|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + |
| 4 | +<head> |
| 5 | + <title>Jandex 3.5.1</title> |
| 6 | + <script id="adobe_dtm" src="https://www.redhat.com/dtm.js" type="text/javascript"></script> |
| 7 | + <script src="/assets/javascript/highlightjs-pack.js" type="text/javascript"></script> |
| 8 | + <meta http-equiv="Content-Security-Policy" content=" |
| 9 | + connect-src 'self' https://dpm.demdex.net https://adobedc.demdex.net https://smetrics.redhat.com; |
| 10 | + script-src 'self' 'unsafe-inline' 'unsafe-eval' |
| 11 | + |
| 12 | + https://assets.adobedtm.com |
| 13 | + https://www.redhat.com |
| 14 | + https://static.redhat.com |
| 15 | + jsonip.com |
| 16 | + https://ajax.googleapis.com |
| 17 | + https://use.fontawesome.com |
| 18 | + http://www.youtube.com |
| 19 | + http://www.googleadservices.com |
| 20 | + https://googleads.g.doubleclick.net |
| 21 | + https://www.google-analytics.com; |
| 22 | +
|
| 23 | + style-src 'self' https://fonts.googleapis.com https://use.fontawesome.com; |
| 24 | + img-src 'self' * data:; |
| 25 | + media-src 'self'; |
| 26 | + frame-src https://redhat.demdex.net; |
| 27 | + base-uri 'none'; |
| 28 | + object-src 'none'; |
| 29 | + form-action 'none'; |
| 30 | + font-src 'self' https://use.fontawesome.com https://fonts.gstatic.com;" /> |
| 31 | + <META HTTP-EQUIV="X-Frame-Options" CONTENT="DENY"> |
| 32 | + <META HTTP-EQUIV="X-XSS-Protection" CONTENT="1; mode=block"> |
| 33 | + <META HTTP-EQUIV="X-Content-Type-Options" CONTENT="nosniff"> |
| 34 | + <meta charset="utf-8"> |
| 35 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 36 | + <meta name="description" content="SmallRye is a project to share and collaborate on implementing specifications that are part of Eclipse MicroProfile."> |
| 37 | + <link rel="shortcut icon" type="image/png" href="/favicon.ico" > |
| 38 | + <link rel="stylesheet" href="/assets/css/main.css" /> |
| 39 | + <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous"> |
| 40 | +</head> |
| 41 | + |
| 42 | +<body class="post"> |
| 43 | + |
| 44 | + <div class="content"> |
| 45 | + <div class="navigation-wrapper"> |
| 46 | + <div class="width-12-12"> |
| 47 | + <div class="header navigation"> |
| 48 | + <div class="logo-wrapper"> |
| 49 | + <a href="/"><img class="project-logo" title="SmallRye" src="/assets/images/smallrye_project_logo.svg"></a> |
| 50 | + </div> |
| 51 | + <div class="nav-container"> |
| 52 | + <nav> |
| 53 | + <div class="nav-mobile"><a id="nav-toggle" href="#!"><span></span></a></div> |
| 54 | + <ul class="nav-list"> |
| 55 | + <li> |
| 56 | + <a href="/projects/" class="">Projects</a> |
| 57 | + </li> |
| 58 | + <li> |
| 59 | + <a href="/community/" class="">Community</a> |
| 60 | + </li> |
| 61 | + <li> |
| 62 | + <a href="/blog/" class="active">Blog</a> |
| 63 | + </li> |
| 64 | + <li> |
| 65 | + <a href="/docs/index.html" class="">Documentation</a> |
| 66 | + </li> |
| 67 | + </ul> |
| 68 | + </nav> |
| 69 | + </div> |
| 70 | + </div> |
| 71 | + </div> |
| 72 | +</div> |
| 73 | + |
| 74 | + <div class="post-page grid-wrapper"> |
| 75 | + <div class="grid__item width-10-12 doc-content"> |
| 76 | + <h1>Jandex 3.5.1</h1> |
| 77 | + <div class="paragraph"> |
| 78 | +<p>Today, we announce the <a href="https://github.com/smallrye/jandex/releases/tag/3.5.1">release</a> of Jandex 3.5.1. |
| 79 | +This release contains one small improvement (which may be seen as a bug fix by some) and one small new feature.</p> |
| 80 | +</div> |
| 81 | +<div class="paragraph"> |
| 82 | +<p>The Gizmo 2 integration module now includes a <code>StringBuilderGen</code> class. |
| 83 | +This is a replacement for the <code>StringBuilderOps</code> class that was removed in Gizmo 2.0.0.Beta8 due to unresolved disputes over the API design, particularly around reusability. |
| 84 | +It is highly likely that <code>StringBuilderOps</code> are coming back to Gizmo 2 in some shape, likely different to the previous version. |
| 85 | +In the meantime, you can use <code>StringBuilderGen</code> from Jandex.</p> |
| 86 | +</div> |
| 87 | +<div class="paragraph"> |
| 88 | +<p>Certain well-known class types (as in, instances of <code>ClassType</code>) are now guaranteed singletons (if they have no type annotations). |
| 89 | +This applies for example to <code>java.lang.Object</code>, which has a nice side effect: all unbounded wildcards are now guaranteed to be represented as <code>?</code> and never as <code>? extends java.lang.Object</code>. |
| 90 | +Thanks Robert Stupp for the pull request!</p> |
| 91 | +</div> |
| 92 | +<div class="paragraph"> |
| 93 | +<p>If you experience any troubles, or if you have any ideas for Jandex improvements, please <a href="https://github.com/smallrye/jandex/issues">file an issue</a>.</p> |
| 94 | +</div> |
| 95 | + </div> |
| 96 | +</div> |
| 97 | + |
| 98 | + </div> |
| 99 | + |
| 100 | + <div class="content project-footer"> |
| 101 | + <div class="footer-section"> |
| 102 | + <div class="logo-wrapper"> |
| 103 | + <a href="/"><img src="/assets/images/smallrye_project_logo.svg" class="project-logo" title="SmallRye"></a> |
| 104 | + </div> |
| 105 | + </div> |
| 106 | + <div class="grid-wrapper"> |
| 107 | + <p class="grid__item width-3-12">SmallRye is open source under <a href='https://www.apache.org/licenses/LICENSE-2.0' target='_blank'>Apache Software License 2.0</a>. <br /><br />This website was built with <a href='https://jekyllrb.com/' target='_blank'>Jekyll</a> is hosted on <a href='https://pages.github.com/' target='_blank'>Github Pages</a> and is completely open source. If you want to make it better, <a href='https://github.com/smallrye/smallrye.github.io' target='_blank'>fork the website</a> and show us what you’ve got.</p> |
| 108 | + |
| 109 | + |
| 110 | + <div class="width-1-12 project-links"> |
| 111 | + <span>Navigation</span> |
| 112 | + <ul class="footer-links width-1-12"> |
| 113 | + |
| 114 | + <li><a href="/">Home</a></li> |
| 115 | + |
| 116 | + </ul> |
| 117 | + </div> |
| 118 | + |
| 119 | + <div class="width-1-12 project-links"> |
| 120 | + <span>Contribute</span> |
| 121 | + <ul class="footer-links width-1-12"> |
| 122 | + |
| 123 | + <li><a href="https://twitter.com/smallrye_io">Follow us</a></li> |
| 124 | + |
| 125 | + <li><a href="https://github.com/smallrye">GitHub</a></li> |
| 126 | + |
| 127 | + </ul> |
| 128 | + </div> |
| 129 | + |
| 130 | + <div class="width-1-12 project-links"> |
| 131 | + <span>Get Help</span> |
| 132 | + <ul class="footer-links width-1-12"> |
| 133 | + |
| 134 | + <li><a href="https://quarkusio.zulipchat.com">Chatroom</a></li> |
| 135 | + |
| 136 | + <li><a href="https://groups.google.com/d/forum/smallrye">Google Groups</a></li> |
| 137 | + |
| 138 | + </ul> |
| 139 | + </div> |
| 140 | + |
| 141 | + |
| 142 | + |
| 143 | + <div class="width-6-12 more-links"> |
| 144 | + <span>External Links</span> |
| 145 | + <ul class="footer-links"> |
| 146 | + |
| 147 | + <li><a href="https://microprofile.io/" target="_blank">Eclipse MicroProfile</a></li> |
| 148 | + |
| 149 | + <li><a href="https://github.com/eclipse?utf8=✓&q=microprofile" target="_blank">Eclipse MicroProfile on GitHub</a></li> |
| 150 | + |
| 151 | + </ul> |
| 152 | + </div> |
| 153 | + |
| 154 | + </div> |
| 155 | +</div> |
| 156 | + <div class="content redhat-footer"> |
| 157 | + <div class="grid-wrapper"> |
| 158 | + <span class="licence"> |
| 159 | + <i class="fab fa-creative-commons"></i><i class="fab fa-creative-commons-by"></i> <a href="https://creativecommons.org/licenses/by/3.0/" target="_blank">CC by 3.0</a> |
| 160 | + | <a href="https://www.redhat.com/en/about/privacy-policy">Red Hat Privacy Policy</a> |
| 161 | + </span> |
| 162 | + <span class="redhat"> |
| 163 | + a Red Hat sponsored project |
| 164 | + </span> |
| 165 | + <span class="redhat-logo"> |
| 166 | + <a href="https://www.redhat.com/" target="_blank"><img src="/assets/images/redhat_reversed.svg"></a> |
| 167 | + </span> |
| 168 | + </div> |
| 169 | +</div> |
| 170 | + |
| 171 | + |
| 172 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> |
| 173 | + <script type="text/javascript" src="/assets/javascript/mobile-nav.js"></script> |
| 174 | + <script type="text/javascript" src="/assets/javascript/scroll-down.js"></script> |
| 175 | + <script type="text/javascript" src="/assets/javascript/satellite.js"></script> |
| 176 | +</body> |
| 177 | + |
| 178 | +</html> |
0 commit comments