Best of DevBlogsAugust 2024

  1. 1
    Article
    Avatar of devblogsDevBlogs·2y

    Announcing TypeScript 5.6 RC

    TypeScript 5.6 RC introduces several new features and updates. Notable additions include disallowed nullish and truthy checks, iterator helper methods, support for arbitrary module identifiers, and region-prioritized diagnostics in editors. There are also new compiler options like --noUncheckedSideEffectImports and --noCheck, improvements to project builds, and enhanced auto-import functionalities. The release focuses on improving error detection, typing options, and overall efficiency in large projects.

  2. 2
    Article
    Avatar of devblogsDevBlogs·2y

    New IDE features in Visual Studio v17.11

    Visual Studio 2022 v17.11 introduces significant features like new scoping options for Code Search, familiar keyboard shortcuts, improved detection of missing components and extensions with .vsconfig files, enhanced user authentication through the Web Account Manager (WAM), and new Teams Toolkit templates. These updates aim to streamline development workflows, enhance security, and improve productivity.

  3. 3
    Article
    Avatar of devblogsDevBlogs·2y

    Adding .NET Aspire to your existing .NET apps

    Adding .NET Aspire to existing .NET applications simplifies development by enabling features like health checks, logging, and resiliency without altering your CI/CD pipeline. You can integrate Service Defaults to activate recommended settings for ASP.NET Core distributed apps quickly. Additionally, the AppHost provides a dashboard to manage multiple projects, aggregate logs, and monitor health checks efficiently, enhancing the developer experience.

  4. 4
    Article
    Avatar of devblogsDevBlogs·2y

    Java on Visual Studio Code Update

    The July 2024 update for Visual Studio Code for Java introduces new Gradle enhancements like Hot Code Replace support for the Gradle Build Server and the ability to delegate tests to Gradle. User experience has been improved by adding 'Create Java Package' to the File Explorer context menu and making the Help Center more accessible via the status bar. New Spring features include syntax highlighting and validation for SpEL expressions and enhanced support for various Spring annotations.

  5. 5
    Article
    Avatar of devblogsDevBlogs·2y

    Announcing ASP.NET Core OData 9 Official Release

    ASP.NET Core OData 9 has been officially released, requiring .NET 8 or later, and features updated OData .NET dependencies to the 8.x version. A significant change is the introduction of a new JSON writer using Utf8JsonWriter, which provides faster performance and a reduced set of encoded characters. The post explains the differences in character encoding, injection of dependencies, and backward compatibility options, with examples illustrating how to configure services and maintain legacy behavior if needed.