Minecraft Dungeons 2 is set to be released on the Switch 1 & 2 on September 29, 2026. The game will feature solo and cooperative play options for up to four players, both online and locally.
The PC Gaming Show 2026 featured over 60 new game announcements in a two-hour event. Key titles include:
- Wielders of the Essence: Launching on November 5, demo available on Steam.
- Warhammer 40,000: Darktide – Skitarii Class: Debuting on June 23, wishlist on Steam.
- Spellsided: Unique RPG with a demo on Steam.
- Star Trek: Outposts Unknown: Demo available on Steam.
- Hack '95: Demo available on Steam.
- Company of Heroes: Definitive Edition: Wishlist on Steam.
- Red Kiss: Wishlist on Steam.
- Arcane Eats: Demo available on Steam.
- Serious Sam: Shatterverse: Sign up for playtest on Steam.
- Control Resonant: Pre-orders available for September 24 release on Steam.
- Sated: Wishlist on Steam.
- Gone Feral: Wishlist and sign up for playtest on Steam.
- Abiotic Factor – Entropic Break DLC: Coming this autumn, wishlist on Steam.
- There Are No Ghosts at the Grand: Demo available on Steam.
- Ssarseeker: Astroneer Expeditions: Early access begins June 11, wishlist on Steam.
- Virtue and a Sledgehammer: Demo available on Steam.
- Happy Bastards: Combat demo available on Steam.
- Another Door: Demo available on Steam.
- AfterQuest: Wishlist on Steam.
- SlashZero: Wishlist and sign up for playtest on Steam.
- Cassette Beasts 2002: Wishlist on Steam.
- VOID/BREAKER: Major update available on Steam.
- 2 Fights 2 Tight Spaces: Available now on Steam.
- Stronghold 4: Demo available on June 23, wishlist on Steam.
- Wind Runners: Demo available on Steam.
- Wardens of Avalon: Sign up for playtest on Steam.
- Planet Zoo 2: Pre-orders available on Steam.
- Empulse: Early access on June 24, available during Steam Next Feast on June 15.
- Arkheron: Sign up for playtest on the game's website.
- ReVamp: Sign up for playtest via the trailer's QR code.
- Wardogs: Wishlist on Steam and sign up for playtests via the trailer's QR code.
- Shroom and Gloom: New demo available.
- Maximum Thunderness: Coming later this year, wishlist on Steam.
- Rivage: Demo available.
- Time Strike: Wishlist on Steam.
- Signet City: Wishlist on Steam.
- Mr. Magpie's Harmless Card Game: Available now on Steam.
- Ascenders: Beyond the Peak: Demo available on Steam.
- Outward 2: Beta available now.
- Thief: The Dark Project Remastered: Remastering classic stealth game.
- Exo Rally Championship: Off-road racing game.
- Duskers 2.0: Available on Steam.
- El Paso, Elsewhere 2: Wishlist on Steam.
- Beast of Reincarnation: Launching on August 3, pre-order on Steam.
- Terrinoth: Heroes of Descent: Available now on Steam.
- To Kill a God: Demo available now.
- Pipes.exe: Wishlist on Steam.
- Sunset Summit: Available now on Steam.
- Clowntown: Available for wishlist on Steam.
- Armatus: Launching this winter, wishlist on Steam.
- Dave The Diver – In the Jungle DLC: Wishlist on Steam.
- Carcass Clad: Wishlist on Steam.
- Total War: Warhammer 40,000: Beta opportunities to be announced.
- About Fishing: Demo available on Steam.
- Vampire: The Masquerade – Eternal Whispers: Emphasizes meaningful choices.
- Valheim 1.0: Launching on September 9, 2026, download on Steam now.
- P.O.N.: Wishlist on Steam.
- Locator: The Search for Abigail Lidari: Wishlist on Steam.
- Exodus: Features combat and exploration.
- Remothered: Red Nun's Legacy: Third installment in the horror series.
- Into the Wind: Wishlist on Steam.
Exbleative has launched 'Exo Rally Championship,' now available for download on Steam. The game features procedurally generated stages, hardcore off-road physics, and fuel-limited RCS thrusters. It includes a 20-hour career mode inspired by real-world rallies, online multiplayer, daily challenges, and a stage editor for custom stages. The game is developed by a three-person team led by Jay Weston, with publishing support from Future Friends Games.
Empulse is a first-person shooter game developed by 1047 Games, set to launch on Steam's Early Access on June 24. The game will be available for free during Steam Next Fest, starting June 15. The gameplay features wall-running and intense gunplay, aiming to evoke nostalgia for classic Xbox 360 shooters. The trailer includes a moment where a character uses a sledgehammer against a mech, highlighting the game's playful elements.
Amazon Aurora PostgreSQL-Compatible Edition and Amazon RDS for PostgreSQL now support native streaming replication, allowing data changes to flow from source databases. Organizations often struggle to capture and propagate these changes in real time without affecting database performance. Traditional ETL pipelines can introduce significant delays, leading to outdated data and missed opportunities.
Debezium is an open-source platform for change data capture (CDC) that monitors databases and streams changes to applications or data pipelines, enabling real-time data synchronization. The CDC solution combines PostgreSQL's logical replication with Debezium's change capture framework, focusing on Amazon Aurora for PostgreSQL.
To implement this solution, logical replication must be enabled on Amazon Aurora through DB cluster parameter groups. Debezium connectors monitor the database's Write-Ahead Logging (WAL) via logical replication slots, converting transaction logs into structured event streams.
Key components of the solution include:
- Amazon Aurora for PostgreSQL as the source database with logical replication enabled.
- A Debezium PostgreSQL connector running on MSK Connect for change capture.
- Amazon MSK for message streaming.
- An Amazon EC2 instance for testing and consuming change events.
Steps to implement the solution include:
1. Creating an Amazon Aurora for PostgreSQL DB cluster and enabling logical replication.
2. Creating an Amazon MSK serverless cluster.
3. Setting up an Amazon EC2 instance to install Kafka and connect to the database.
4. Creating a custom plugin for Amazon MSK to replicate changes from RDS for PostgreSQL.
5. Uploading the custom plugin to an Amazon S3 bucket.
6. Storing credentials in AWS Secrets Manager and creating an IAM role for MSK Connect.
7. Testing the solution by verifying data replication and monitoring real-time changes.
Monitoring can be done through CloudWatch Logs and the MSK Connect console, addressing common issues like replication slot lag and connector failures. To avoid charges, resources created during the implementation should be deleted in the correct order.
Steam serves as a vibrant hub for indie game developers, showcasing unique titles that often stand out against mainstream AAA releases. The cozy gaming genre, highlighted by games like Stardew Valley, has gained popularity, leading to dedicated conferences and livestreams. One of the latest indie games, Crystal Project 2, is an ambitious RPG that aims to redefine exploration with a seamless open world experience, combining elements of Minecraft and Final Fantasy. Developer Andrew Willman emphasizes the game's vision of allowing players to explore and personalize their environment. The indie scene on Steam continues to thrive, offering innovative titles that challenge traditional gaming conventions.
pg_dump is a utility for exporting a PostgreSQL database into a file, which can be restored on the same or different servers. It exports a single database's tables, views, sequences, functions, indexes, triggers, and in-database grants but does not include roles, tablespaces, or server-level configurations. To capture global objects, pg_dumpall --globals-only should be executed prior to the per-database dump. pg_dump requires CONNECT and SELECT privileges on all tables and sequences within the target database, and a dedicated backup role is sufficient for single-database dumps, while superuser access is needed for global objects.
pg_dump supports various output formats: plain SQL (.sql), custom binary (.dump), directory of files, and tar archive (.tar), each with different capabilities for restoration and compression. The custom format allows for selective and parallel restoration. For non-interactive use, credentials can be stored in a .pgpass file or passed via the PGPASSWORD environment variable.
Restoration methods depend on the dump format: psql is used for plain SQL files, while pg_restore is used for custom and directory formats. The restoration process requires the target database to be created beforehand. Version mismatches between pg_dump and pg_restore can lead to failures, so it's essential to ensure that the binaries are version-matched.
In Docker, pg_dump and pg_restore can be executed within containers, but care must be taken to manage credentials and ensure version compatibility. Exit codes from pg_dump should be checked to confirm successful operations.
The seventh annual Summer Game Fest showcased upcoming titles for 2026 and beyond, featuring a two-hour presentation with trailers and gameplay reveals. Key announcements included:
- Resident Evil: Veronica - A remake of Resident Evil: Code Veronica set to launch in 2027 on Xbox and PC.
- Cuphead - Two new games: a sequel and an 8-bit arcade title called Mighty Cuphead Adventure.
- Alien Isolation 2 - Teased with a trailer; release date not announced.
- gen ATLAS - A mech-themed game from GenDesign.
- Blood Message - A single-player action-adventure game expected on PC and consoles.
- Stranger Than Heaven - Set for release on January 15, 2027, featuring Tupac as a character.
- HAEX - An open-world survival shooter for 1-4 players.
- Mortal Shell 2 - Open beta now available on Steam.
- Teenage Mutant Ninja Turtles: The Last Ronin - A game set in a future New York City.
- Gundam: Rogue Orbit - A new entry in the Gundam series.
- Crossfire - A stealth-action single-player adventure.
- Guild Wars 3 - Set to launch with a beta expected in 2027.
- Star Wars: Galactic Racer - Releasing on October 6, 2026.
- Virtua Fighter Crossroads - Announced for 2027.
- RuneScape: Dragonwilds - Launching on Xbox on September 15, 2026.
- 1666 Amsterdam - Entering Early Access in late 2026.
- SAW: Genesis - A multiplayer horror game.
- Star Wars: Zero Company - Releasing on August 27, 2026.
- The Blood of Dawnwalker - Launching on September 3.
- Among Us Story: On Guard - A story-driven spinoff available for wishlisting.
- Monster Hunter Wilds: Ascendance - Expansion set for 2027.
- Swords of Legends - An action RPG inspired by Soulsborne games.
- Clutch - An open-world racer expected in Spring 2027.
- Chronicles: Medieval - Entering Early Access later this year.
- Palworld - Fully launching on July 10.
- The Wolf Among Us 2 - Set for release in 2027, alongside a remaster of the original.
- Stellar Blade: Blood Rain - Sequel to Stellar Blade.
- Final Fantasy 7: Revelation - Launching in Spring 2027 on Xbox, PC, and PS5.
Amazon Aurora PostgreSQL-Compatible Edition and Amazon RDS for PostgreSQL support native streaming replication, allowing data changes to flow from source databases. Organizations often struggle with real-time data capture and dissemination, leading to outdated information due to traditional batch ETL pipelines. Debezium is an open-source platform for change data capture (CDC) that streams database changes to applications or data pipelines in real time.
The CDC solution utilizes PostgreSQL's logical replication capabilities and Debezium's framework. Key components include Amazon Aurora for PostgreSQL as the source database, a Debezium PostgreSQL connector on MSK Connect, Amazon MSK for message streaming, and an Amazon EC2 instance for testing.
To implement the solution, users must enable logical replication on Amazon Aurora, create an Amazon MSK cluster, set up an EC2 instance with Kafka, and create a custom plugin for MSK Connect. The process involves configuring IAM roles and policies, connecting to the database, and creating an Amazon MSK connector to stream changes.
Testing the solution includes verifying real-time changes by inserting, updating, and deleting records in PostgreSQL, with events appearing in Kafka. Monitoring tools are available through CloudWatch for troubleshooting issues like replication slot lag and connector failures.
To clean up resources after testing, users should delete the MSK Connect connector, custom plugin, Amazon MSK cluster, Aurora PostgreSQL database instance, EC2 instance, IAM role and policy, Secrets Manager secrets, CloudWatch Logs log group, and S3 bucket.
Google has discontinued the Pixel Studio image generation app, redirecting users to the Gemini app for image creation using Nano Banana models. Pixel Studio version 2.3 has disabled image creation, following previous feature removals. Existing images in Pixel Studio remain accessible for viewing and sharing. The app was launched alongside the Pixel 9 series in 2024 but struggled to gain a substantial user base. Users are now prompted to use the Gemini platform for their image generation needs.