Create an account


Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 19,844
» Latest member: ethonyx
» Forum threads: 21,470
» Forum posts: 22,305

Full Statistics

Online Users
There are currently 767 online users.
» 1 Member(s) | 761 Guest(s)
Applebot, Baidu, Bing, Google, Yandex, DonaldRag

 
  ASP.NET Core 2.20-preview1: Open API Analyzers & Conventions
Posted by: xSicKxBot - 08-23-2018, 11:17 PM - Forum: C#, Visual Basic, & .Net Frameworks - No Replies

ASP.NET Core 2.20-preview1: Open API Analyzers & Conventions

What is it?


Open API (alternatively known as Swagger) is a language-agnostic specification for describing REST APIs. The Open API ecosystem has tools that allows for discovering, testing and producing client code using the specification. Support for generating and visualizing Open API documents in ASP.NET Core MVC is provided via community driven projects such as NSwag, and Swashbuckle.AspNetCore. Visit https://docs.microsoft.com/en-us/aspnet/core/tutorials/web-api-help-pages-using-swagger?view=aspnetcore-2.1 to learn more about Open API Swagger and for details on configuring your applications to use it.

For 2.2, we’re investing in tooling and runtime experiences to to allow developers to produce better Open API documents. This work ties in with ongoing work to perform client code SDK generation during build.

How to use it?


Analyzer


For 2.2, we’re introducing a new API-specific analyzers NuGet package – Microsoft.AspNetCore.Mvc.Api.Analyzers. These analyzers work with controllers annotated with ApiController introduced in 2.1, while building on API conventions that we’re also introducing in this release. To start using this, install the package:


<PackageReference Include="Microsoft.AspNetCore.Mvc.Api.Analyzers"
Version="2.2.0-preview1-35029"
PrivateAssets="All" />

Open API documents contain each status code and response type an operation may return. In MVC, you use attributes such as ProducesResponseType and Produces to document these. The analyzer inspects controllers annotated with ApiController and identifies actions that do not entirely document their responses. You should see this as warnings (squiggly lines) highlighting return types that aren’t documented as well as warnings in the output. In Visual Studio, this should additionally appear under the “Warnings” tab in the “Error List” dialog. You now have the opportunity to address these warnings using code fixes.

Let’s look at the analyzer in action:


The analyzer identified that the action returned a 404 but did not document it using a ProducesResponseTypeAttribute. We used a code fix to document this. The added attributes would now become available for Swagger / Open API tools to consume. It’s a great way to identify areas of your application that are lacking swagger documentation and correct it.

Conventions


If your controllers follows some common patterns, e.g. they are all primarily CRUD endpoints, and you aren’t already using ProducesResponseType or Produces to document them, you could consider using API conventions. Conventions let you define the most common “conventional” return types and status codes that you return from your action, and apply them to individual actions or controllers, or all controllers in an assembly. Conventions are a substitute to decorating individual actions with ProducesResponseType attributes.

By default, ASP.NET Core MVC 2.2 ships with a set of default conventions – DefaultApiConventions – that’s based on the controller that ASP.NET Core scaffolds. If your actions follow the pattern that scaffolding produces, you should be successful using the default conventions.

At runtime, ApiExplorer understand conventions. ApiExplorer is MVC’s abstraction to communicate with Open API document generators. Attributes from the applied convention get associated with an action and will be included in action’s Swagger documentation. API analyzers also understand conventions. If your action is unconventional i.e. it returns a status code that is not documented by the applied convention, it will produce a warning, encouraging you to document it.

There are 3 ways to apply a convention to a controller action:

  • Applying the ApiConventionType attribute as an assembly level attribute. This applies the specified convention to all controllers in an assembly.
[assembly: ApiConvention(typeof(DefaultApiConventions))]
  • Using the ApiConventionType attribute on a controller.
[ApiConvention(typeof(DefaultApiConventions))]
[ApiController]
[Route("/api/[controller]")]
public class PetsController : ControllerBase
{ ...
}
  • Using ApiConventionMethod. This attributes accepts both the type and the convention method.
// PUT: api/Pets/5
[ApiConventionMethod(typeof(DefaultApiConventions), nameof(DefaultApiConventions.Put))]
[HttpPut("{id}")]
public async Task<ActionResult<Pet>> PutPet(long id, Pet pet)
{ ...
}

Like many other features in MVC, more specific attributes will supersede less specific ones. An API metadata attribute such as ProducesResponseType or Produces applied to an action will stop applying any convention atributes. The ApiConventionMethod will supersede a ApiConventionType attribute applied to the method’s controller or the assembly; and an ApiConventionType attribute applied to a controller will supersede ones applied to the assembly.

Authoring conventions


A convention is a static type with methods. These methods are annotated with ProducesResponseType or ProducesDefaultResponseType attributes.

public static class MyAppConventions
{ [ProducesResponseType(200)] [ProducesResponseType(404)] public static void Find(int id) {
}
}

Applying this convention to an assembly would result in the convention method applying to any action with the name Find and having exactly one parameter named id, as long as they do not have other more specific metadata attributes.

In addition to ProducesResponseType and ProducesDefaultResponseType, two additional attributes – ApiConventionNameMatch and ApiConventionTypeMatch – can be applied to the convention method that determines the methods they apply to.

[ProducesResponseType(200)]
[ProducesResponseType(404)]
[ApiConventionNameMatch(ApiConventionNameMatchBehavior.Prefix)]
public static void Find( [ApiConventionNameMatch(ApiConventionNameMatchBehavior.Suffix)] int id)
{ }

The ApiConventionNameMatchBehavior.Prefix applied to the method, indicates that the convention can match any action as long as it starts with the prefix “Find”. This will include methods such as Find, FindPet or FindById. The ApiConventionNameMatchBehavior.Suffix applied to the parameter, indicates that the convention can match methods with exactly one parameter that terminate in the suffix id. This will include parameters such as id, or petId. ApiConventionTypeMatch can be similarly applied to types to constrain the type of the parameter. A params[] arguments can be used to indicate remaining parameters that do not need not be explicitly matched.

An easy way to get started authoring a custom convention is to start by copying the body of DefaultApiConventions and modifying it. Here’s a link to the source of the type: https://raw.githubusercontent.com/aspnet/Mvc/release/2.2/src/Microsoft.AspNetCore.Mvc.Core/DefaultApiConventions.cs

Feedback


This is one on our earliest forays in trying to use tooling to enhance runtime experiences. We’re interested in any thoughts you have about this as well as your experiences using this in your applications. The best place to provide feedback is by opening issues at https://github.com/aspnet/Mvc.

Additional help


Print this item

  PS4 - Yakuza Kiwami 2
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: New Game Releases - No Replies

Yakuza Kiwami 2



Kazuma Kiryu thought his Tojo Clan days were behind him. He and his young ward, Haruka Sawamura, have built a peaceful life from the ashes of conflict. All it took was a single gunshot to shatter that peace. Yukio Terada, the fifth chairman of the Tojo Clan, has been assassinated. With war on the horizon, the legendary Dragon of Dojima is pulled back into the world he wanted to leave behind.

Publisher: Sega

Release Date: Aug 28, 2018

Print this item

  PC - Graveyard Keeper
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: New Game Releases - No Replies

Graveyard Keeper



Build and manage a medieval graveyard while facing ethical dilemmas and making questionable decisions. Welcome to Graveyard Keeper, the most inaccurate medieval cemetery sim of the year.

Publisher: tinyBuild

Release Date: Aug 15, 2018

Print this item

  News - The Happytime Murders Review: It's A Dirty Muppet Movie
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Lounge - No Replies

The Happytime Murders Review: It's A Dirty Muppet Movie

When the first trailer for The Happytime Murders arrived, it was clear what kind of movie this was going to be. It's a dirty version of the Muppets. What's more, it's from director Brian Henson, son of Muppets creator Jim Henson. The potential for something cool and different was obvious. The only question is whether the movie would hit the mark or not.

As it turns out, for the most part, it lands pretty well. The Happytime Murders is set in a world where humans and puppets coexist. When the former stars of a 1980s TV show get murdered, disgraced former puppet cop Phil Phillips (Bill Barretta) and human detective Connie Edwards (Melissa McCarthy) are forced to work together to find the killer. It's a pretty straightforward murder mystery that just so happens to be loaded with foul-mouthed puppets, lots of violence, and one wildly awkward sex scene.

Still, the story actually works. While it's not hard to figure out who the villain of the film is, figuring out their motivations is a different story. The plot also opens up a world that would be very interesting to visit again in future movies, should that be in the cards.

No Caption Provided

As simple and interesting as the story is, though, there is one major problem with The Happytime Murders. This adult puppet movie is simply too adult. There is a certain novelty to the idea of puppets that curse, have sex, and do horrible things. In practice, though, it's very easy to take the joke too far. Throughout the film, puppets and humans let the cursing fly so gratuitously and frequently that the impact of it simply wears off. It happens so often that it ceases being funny and instead seems like the movie is trying too hard to be edgy. How many times can a character drop an F-bomb in the span of two minutes before it means absolutely nothing? That's something The Happytime Murders is keen to explore.

Likewise, with graphic content, this movie doesn't seem to know when to stop. In the red band trailer, there is a sequence where one of the puppets has an orgasm that lasts so long it overstays its welcome a bit. Somehow, though, it's even longer in the movie. There's an audience for gross-out humor that will undoubtedly find themselves giggling at these moments in the film, but just a bit of restraint would have greatly improved the movie.

There's still plenty to like about The Happytime Murders, though. Strangely, building this odd world where humans and puppets live together in something far less than harmony is where The Happytime Murders excels most. From the beginning of the film, it's explained that puppets are seen as less than, and often subservient to, humans. They're the target of verbal and physical abuse, and some of them spend their time and money in an attempt to transform their looks to appear more human, while others have bought into the idea that they exist only to entertain humans.

No Caption Provided

Chances are you're not expecting the dirty puppet movie to examine racism in America at all. However imperfect a comparison it may be, though, it's one of the things The Happytime Murders does well. What's more, setting the film in Los Angeles, a city with a massive immigrant population, goes a long way in illustrating the divide.

The cast is another piece of the puzzle that fits well. While Melissa McCarthy is mostly doing the same thing she always does--yelling and falling down, while cursing--she somehow manages to have chemistry with a puppet. However, there is an odd running joke throughout the film that everyone thinks she's a man. It might have been funny once or twice, but by the third, fourth, or fifth time that particular joke is revisited, it's just tired.

The biggest standout of the of the movie is Maya Rudolph, who plays Phillips' secretary Bubbles. She serves as a potential love interest for the former cop and manages to have many of the movie's funniest moments, whether at her desk in Phillips' office or out in the field helping to solve the mystery.

No Caption Provided

If you're expecting to see some of your favorite Muppets in the film, you'll be disappointed. None of them make cameo appearances. After all, the Muppets are owned by Disney. Still, it will be impossible to look at the puppets in this film without knowing they were designed by The Jim Henson Company. Likewise, Muppet veterans Barretta, Julianne Buescher, Kevin Klash, and Alice Dinnean make up the puppet voice cast.

In all, The Happytime Murders is a fun and very interesting film to watch. It's as close as you'll ever get to a Rated-R Muppet movie and sets up what could become a potential franchise that would be exciting to revisit--just maybe with a little restraint next time.

The GoodThe Bad

A simple, easy-to-follow plot

There's so much cursing that it makes the foul language mean nothing

The use of notable Los Angeles locations helps ground the movie

It's not hard to figure out who the killer is

Its examination of racism was very unexpected

The puppet sex scene lasts way too long
Maya Rudolph blows the rest of the cast out of the waterThe villain is very easy to figure out

Print this item

  News - Now Available on Steam – Shenmue I & II
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Lounge - No Replies

Now Available on Steam – Shenmue I & II

Shenmue I & II is Now Available on Steam!

SEGA®’s most requested re-release of all time finally comes to a new generation. Shenmue delivers an epic story of revenge within a unique open world that is still unrivalled in depth and detail. Return to the epic saga that defined modern gaming. The saga begins…again.

Print this item

  News - Scammers are still trying to snag free games from indie devs
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Lounge - No Replies

Scammers are still trying to snag free games from indie devs

“I have the benefit of working for a lot of different indie devs, so I notice patterns that a developer who’s only putting out their one game wouldn’t seeAU.”

– Emily Morganti speaking to Kotaku about key scammers trying to take advantage of independent developers.

Before a game is launched, it’s likely that a strange email address requesting a free copy for review purposes will show up in the inbox of an unsuspecting indie dev.

Key scammers utilize this method constantly, and it’s no secret that it’s an issue within the industry. 

In a recent interview with Kotaku, Emily Morganti, who handles PR for adventure games, discusses how key scammers continue to be a problem for indie devs trying to market their titles without being conned.

Morganti explains the subtleties that lie in every odd request, which takes the form of misleading email addresses and copy that seems off.  

“Some of these people email about every game that comes out, using the same copy-and-paste email. Some people do a blanket request for multiple games on the same day—so multiple developers are getting the exact same email about how excited someone is to stream their game,” she explains.

“There was one guy a few years ago with a long sob story about how he’d lost his job and had a big tax bill to pay and couldn’t afford games but a free copy of [insert game name here] would make his life complete.”

Despite sharing a few similarities, every scammer works differently when it comes to execution. The last notable scammer Morganti encountered made waves, as he reached out to many devs for free codes.

Going by the name Dmitry Tseptsov, he sent several emails to Morganti asking for codes, explaining that he operated a coffee shop in Ukraine where he’d give out video games as prizes for trivia. Unsurprisingly, the request turned out to be a ploy for free codes despite the cafe being a legitimate business. 

Morganti admits that its becoming difficult to parse which review requests are honest and which ones are malicious. She recalls an instance where an editor for a publication reached out for a code the same time a scammer (who was impersonating the editor) did as well.

“I heard from the editor first and added him to my list for a review copy, and then I heard from the scammer on the day we got keys, and I sent it to him thinking it was the same person,” she says. “A few days after that, the real editor emailed me to ask where his key was, and we pieced it together.”

“I’ve been doing PR since 2006 and always had a policy of sending a key to anyone who asked for one, no matter how small the site, but I’m a lot more suspicious now,” Morganti continues.

“The work involved in vetting people to figure out if they’re legit or not isn’t worth the effort and I think writers from smaller sites and freelancers are paying the price.”

She was speaking as part of a longer discussion around scammers trying to take advantage of independent developers and how it affects smaller contet creators, so be sure to read the entire piece over at Kotaku.

Print this item

  News - A Patch For Morphies Law Has Been Submitted To Nintendo To Fix Online Issues
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Nintendo Discussion - No Replies

A Patch For Morphies Law Has Been Submitted To Nintendo To Fix Online Issues


Cosmoscope, the studio behind Switch newcomer Morphies Law, has submitted a patch to Nintendo in order to fix some of the issues experienced by early players.

If you missed the news, Morphies Law recently ‘did a Fortnite‘, surprising everyone by launching on the system without any real warning; the game was shown off during the 2018 Indies Showcase, and was available on the console just hours later.

The premise is incredibly creative, and the game offers up an interesting twist on the shooter genre with its changing body mass mechanic. Players have noticed some frustrating issues early on, however – a fact that we confirmed in our review.


If you’ve been playing the game and faced the odd issue or two, here are the full patch notes currently under review by Nintendo. Assuming it’s approved, these changes should soon be implemented to improve the game’s performance:

– Changed online settings to enforce geographical proximity – this should alleviate the lag while we continue working on setting up dedicated servers, please let us know your feedback.
– Fixed spawn protection – now you’ll be invincible for 5 seconds or until you leave your base.
– Fixed gunshot sounds looping infinitely sometimes on death.
– Fixed loud sounds that would sometimes play before the map intro.
– Fixed XP gains for private games – it is now 75% of the regular online XP instead of 25%.
– Increased the daily cap on XP and Nuts that can be gained from offline/private/local games to 5000XP and 500Nuts.
– Fixed bug in Tanker Town where exiting tunnels at certain inclinations would sometimes kill you.
– Fixed the recharge time of weapon part “Sonic Punch” – it is no longer spammable.
– Disabled the ability to “unready” in private/LAN matches to avoid potential 5v3 scenarios.



Did you grab a copy of the game on day one? How have you found the experience? Let us know how you’ve been getting on in the comments below.

Print this item

  News - Miyamoto Doesn’t Want To Make An MMORPG Because It Would Be Boring
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Nintendo Discussion - No Replies

Miyamoto Doesn’t Want To Make An MMORPG Because It Would Be Boring

Print this item

  Steam - Now Available on Steam – Phantom Doctrine, 10% off!
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: PC Discussion - No Replies

Now Available on Steam – Phantom Doctrine, 10% off!

Phantom Doctrine is Now Available on Steam and is 10% off!*

The year is 1983. The world teeters on the verge of destruction as the Cold War tightens its icy grip. East or West: trust no one, question everything. The fate of humanity rests in your hands as you pit spy versus spy in tactical Phantom Doctrine.

*Offer ends August 21 at 10AM Pacific Time

Print this item

  News - Minecraft: Java Edition 1.13.1 Released
Posted by: xSicKxBot - 08-23-2018, 02:18 PM - Forum: Minecraft - No Replies

Minecraft: Java Edition 1.13.1 Released

1.13.1 is now available! It improves performance and fixes a bunch of bugs that made their way into 1.13. There’s also a few changes in this update that are listed below.


A full changelog for this release can be found on Minecraft.net.

CHANGES


  • Performance optimizations
  • Added dead coral
  • Fish now have a 5% chance of dropping bonemeal when killed
  • Squids now only spawn in rivers and oceans
  • Added a concept of force-loaded chunks to the game, and a command (/forceload) to toggle force-loading on and off

BUGS FIXED IN 1.13.1


  • MC-73 – Green arrow bug on maps in frames
  • MC-1357 – Logged out players appear on maps
  • MC-1489 – Dismounting a horse with a fence on the player’s right leaves the player on the wrong side of the fence
  • MC-1528 – Maps in item frames’ markers aren’t persistent
  • MC-3715 – Beds and the /teleport command
  • MC-3927 – Iron golems spawning in slabs, glass, farmland and grass path
  • MC-4488 – Mobs don’t drop cooked meat if last damage is from fire, lava or fire charge
  • MC-31681 – Fog and clouds darken when indoors or under trees (<16 Chunk Render Distance)
  • MC-33383 – Lag while taking screenshot with F2 in singleplayer
  • MC-51150 – Swimming in water, riding a minecart or standing on soul sand and snow layers 8 darkens the sky at day time
  • MC-59517 – TNT explode=true blockstate drops TNT item when fused by hit in survival mode
  • MC-67780 – Standing on/flying above a block placed at y:255 makes sky dark
  • MC-73361 – Exiting a minecart / boat can put the player outside the border
  • MC-74764 – Particle “largeexplode”, “hugeexplosion” and “sweepattack” not showing when using the front view (twice F5)
  • MC-75465 – Vignette effect’s visibility is not being updated according to light level when GUI is hidden
  • MC-76615 – Lightning bolt summoned by /summon is offset +0.5x and +0.5z
  • MC-76649 – Thrown item in hand and as entity
  • MC-78963 – Command completion fails with multiple possibilities and other arguments set
  • MC-79697 – Entities don’t render properly when next to invisible spider, charged creeper, or wither boss with armor
  • MC-80041 – Signs with long text freeze the game
  • MC-81237 – stat.damageTaken fails to increment when player has absorption.
  • MC-84005 – Book and quill doesn’t save changes when edited in offhand
  • MC-86943 – Cooldown overlay is solid white on item stacks > 1
  • MC-88099 – Slimes/magma cube with NoAI-Tag still can damage the player
  • MC-88230 – When feeding a tamed horse or llama with a golden apple/carrot or hay bale, the cursor moves to the right
  • MC-88356 – Bow animation broken in off-hand in third person
  • MC-90842 – Sweep attack knocks back marker armor stands
  • MC-96998 – End Cities / Woodland Mansions don’t generate completely when interrupting generation
  • MC-98796 – Armor loses durability when blocking damage with shield
  • MC-105512 – Cracks appear inside dragon head instead of outside
  • MC-108592 – Witches do not despawn correctly if they have a potion effect
  • MC-109311 – Woodland mansion failed to generate
  • MC-112533 – Dispenser can equip shield for armor stand without arms
  • MC-112801 – Players on the death screen still cause spawners to spawn.
  • MC-114074 – Some non-full cube blocks don’t cull the faces of the same block next to them
  • MC-114218 – Dispensers and droppers don’t offset smoke particles when facing up or down
  • MC-114246 – Item in offhand of armor stand with arms cannot be taken back
  • MC-118258 – Spelling mistakes in the ‘Commandblock chain tried to execure more than x steps!’ warning message
  • MC-119607 – Llamas, unlike horses, can be kept feeding hay bales even if in love mode
  • MC-119856 – Slime blocks missing cullface argument
  • MC-119971 – Various duplications, deletions, and data corruption at chunk boundaries, caused by loading outdated chunks — includes duping and deletion of entities/mobs, items in hoppers, and blocks moved by pistons, among other problems
  • MC-120664 – Tool durability is off-by-one
  • MC-120780 – Chunk data packets are sometimes created unnecessarily
  • MC-121369 – Holding ESC while clicking “Multiplayer” returns user to main menu
  • MC-122563 – Disappearance of the old “punchable” TNT
  • MC-122614 – Strange tab completion coloring
  • MC-122625 – Order of contents of north- and east-facing double chests changed after update 1.12.2 -> 1.13
  • MC-122939 – Statistics for mining banners and beds never increase
  • MC-123021 – Crash on open if “Saves” is a link
  • MC-123586 – Debug pie chart uses locale specific number formatting
  • MC-123806 – Tab-completion/command suggestions only work for the final argument
  • MC-123880 – Clientbound play packet 0x0C (Boss Bar) using same byte for different booleans
  • MC-124054 – Tab-suggestions don’t disappear when moving cursor
  • MC-124543 – JSON-Text formatting in CustomNames of container blocks does not work
  • MC-124583 – Cannot place structure void block next to another when right clicking on one
  • MC-124681 – Tab suggestion erroneously suggests second closing square bracket on entity selectors
  • MC-124690 – Successful “/bossbar set players” doesn’t give success message in chat
  • MC-124808 – Blocks don’t pop off when their support blocks are moved by pistons
  • MC-124917 – Selector suggestions do not disappear after adding the closing bracket
  • MC-124942 – “Invalid book tag” is not translatable
  • MC-125134 – Server crashes while generating new chunks – java.util.concurrent.ExecutionException: We are asking a region for a chunk out of bound
  • MC-125286 – Block state suggester does not include ‘=’ for first key
  • MC-125337 – When the double-held trident throws, players will lift both hands
  • MC-128547 – Minecraft keeps previously used World in memory if the player has hit any entity in that world
  • MC-129754 – Putting down lava freezes everything and then crashes the game when quitting
  • MC-130258 – Maps in item frames show shading problems
  • MC-130724 – stat.damageDealt does not record damage to absorption health
  • MC-131029 – Villager door detection range has changed
  • MC-131346 – It’s possible to place buckets of water, lava or fish in adventure mode
  • MC-131397 – Sponges cannot remove water from conduits
  • MC-131462 – Coordinate math error causes structure not to generate and possibly other issues
  • MC-131678 – Setblock property – block and setblock property – value are reversed in error messages
  • MC-131868 – Concrete powder next to waterlogged blocks is not converted to concrete
  • MC-132061 – Contents of creative menu change when resizing window
  • MC-132063 – Stone item appears when resizing window
  • MC-132451 – Command Parser – invalid value for block property and property name are reversed in error message
  • MC-132457 – Advancement and dimension command suggestions require minecraft namespace
  • MC-132496 – Passive Mob Spawning Breaks 1.9+
  • MC-132663 – Command blocks kick player when entering certain commands > 256 characters in multiplayer
  • MC-132664 – Obfuscated text uses same random character each frame for each input character
  • MC-132703 – Iron golems do not spawn in center of village
  • MC-132762 – Observed signal strength observer abnormality
  • MC-132769 – Detecting a 2 redstone tick repeater with an observer block creates a 2 redstone tick pulse
  • MC-132789 – Unexpected piston behavior when chaining repeaters
  • MC-132806 – You cannot grant/revoke specific advancement criteria because of a colon in its name
  • MC-132870 – Weird lag with large amounts of entities in 1.13 compared to 1.12.2
  • MC-132898 – Multiple layers of falling gravity blocks break
  • MC-133098 – Loading a world with a corrupted stats file crashes the game
  • MC-133127 – Drowned from ocean ruins never spawn with a trident/nautilus shell/fishing rod
  • MC-133154 – Placing a slab to stop the water flow doesn’t remove the water
  • MC-133158 – Underwater waterlogged blocks still produce water dripping particles
  • MC-133181 – Observer Cooldown is broken
  • MC-133251 – Curse enchantments don’t use red text
  • MC-133260 – Obfuscated text characterset limited to simple ASCII
  • MC-133273 – Normal Pistons also spit out theire blocks with a short signal
  • MC-133294 – Map Markers blacked out
  • MC-133345 – Some bolded obfuscated characters causes text to jitter
  • MC-133425 – Missing Glyphs for ‘[’ (U+FF3B) and ‘(’ (U+FF08)
  • MC-133452 – Copying, pasting, etc. still insert “c”, “v”, etc.
  • MC-133453 – Players can’t stand in “walk-through” blocks after swimming
  • MC-133546 – Player becomes “ghost” when dying in the nether or going through the end portal back to the overworld
  • MC-133587 – Deleting server format error
  • MC-133713 – /spreadplayers and /worldborder <center> suggests X/Y instead of X/Z when nothing is typed
  • MC-133715 – Thrown tridents cannot be picked up after dying
  • MC-133804 – Coral fans are waterloggable, but coral itself is force-waterlogged
  • MC-133839 – Crash when tp/at world border
  • MC-133842 – Crash when getting kicked while in Inventory
  • MC-133871 – Waterlogged trapdoors do not update properly when opened
  • MC-133894 – drowned dont drop items that they picked up as zombie then were converted
  • MC-133905 – Large oak trees generate without making block under stump dirt
  • MC-133942 – 1.13 Release is called a snapshot when backing up world
  • MC-133959 – Credits don’t appear when clicking “Copyright Mojang AB” in the title screen.
  • MC-133986 – Non [a-z0-9/._-] character in path of location: minecraft:EntityHorse
  • MC-133995 – Transferring world from 1.12.2 to 1.13 isn’t working
  • MC-134105 – Cant return from the end after defeating dragon
  • MC-134115 – Containers next to chunk borders can lose items when upgrading
  • MC-134159 – Saved world causes crash in 1.13
  • MC-134166 – Villager door detection order has changed
  • MC-134273 – Player Markers on Map after disconnect
  • MC-134274 – Map Markers for players holding a different Map
  • MC-134297 – Observers detect moved blocks late in 1.13
  • MC-134298 – Observers don’t detect retracting sticky pistons
  • MC-134300 – Inconsistency with update order when pistons retract other pistons
  • MC-134348 – Crash while upgrading: bkv{block=Block{minecraft:acacia_slab}, properties=[type, waterlogged]} has no property: half
  • MC-134392 – Spawers will spawn dolphins inside of solid blocks
  • MC-134402 – Statistic for cleaning shulker boxes is missing
  • MC-134414 – Concrete powder falling onto sea grass just replaces it
  • MC-134468 – Map cloning recipe only yields 2 maps
  • MC-134555 – Sticky piston does not update gravity blocks
  • MC-134570 – Door top half missing when updating to new version
  • MC-134587 – Using F3 + T several times will eventually freeze iMac
  • MC-134667 – Async Chunk Gen dangerously adding entities to world async
  • MC-134668 – Over synchronization in ThreadedAnvilChunkStorage impacts performance
  • MC-134702 – Fish spawned from buckets count towards the aquatic mob cap
  • MC-134716 – Minecraft Multiplayer – Player kick exploit
  • MC-134777 – Bone meal on kelp doesn’t do anything, but still wastes it
  • MC-134889 – Iron golems spawn in air blocks
  • MC-134903 – Mobs can break turtle eggs by standing on them when gamerule mobGriefing is false
  • MC-134916 – Sound event block.pumpkin.carve doesn’t play when carving normal pumpkins
  • MC-135049 – Old world doesn’t save map markers in 1.13
  • MC-135079 – Purpur stairs and slabs cannot be crafted using purpur pillars
  • MC-135126 – Bone meal on underwater grass blocks doesn’t spawn sea grass
  • MC-135261 – /setblock for player heads don’t show the texture after the placement
  • MC-135468 – Mooshroom disappears when sheared
  • MC-135484 – Pressing Q + right click a block while holding a double block only shows the top of the block
  • MC-135816 – Trident does not return uppon reload of world
  • MC-135857 – Beacon effect icon doesn’t have a blue edge if it overwrites a potion effect
  • MC-135878 – Maps delete recently marked banners upon reopening world
  • MC-135893 – Upgrading from 1.12.2 to a newer version will cause trapped chests placed in 1.12.2 & earlier to stop triggering redstone through the floor
  • MC-136023 – Phantoms attack players in spectator
  • MC-136031 – Dispenser (up/down facing) attempting to summon wither crashes the server
  • MC-136157 – Explosion radius increased
  • MC-136208 – Scute is not affected by doMobLoot
  • MC-136226 – Mobs require 2 blocks of air to spawn at all times now

Minecraft will automatically update to the latest version on open, just click “Play”!

Print this item

 
Latest Threads
(Indie Deal) PRAGMATA, Pe...
Last Post: xSicKxBot
7 hours ago
News - New GTA 6 Screensh...
Last Post: xSicKxBot
7 hours ago
News - Guild Wars 3 Won’t...
Last Post: xSicKxBot
Yesterday, 01:30 AM
Black Ops (BO1, T5) DLC's...
Last Post: ethonyx
Yesterday, 12:19 AM
News - Ori Dev CEO Says X...
Last Post: xSicKxBot
06-21-2026, 09:07 AM
News - Helldivers 2 Gets ...
Last Post: xSicKxBot
06-20-2026, 04:43 PM
Black Ops (BO1, T5) DLC's...
Last Post: raymundovic
06-20-2026, 03:38 AM
(Free Game Key) Epic Game...
Last Post: xSicKxBot
06-20-2026, 12:10 AM
News - You Are Everyone’s...
Last Post: xSicKxBot
06-20-2026, 12:10 AM
(Free Game Key) Steam | W...
Last Post: xSicKxBot
06-19-2026, 07:45 AM

Forum software by © MyBB Theme © iAndrew 2016