{"id":990,"date":"2024-04-11T08:47:59","date_gmt":"2024-04-11T08:47:59","guid":{"rendered":"https:\/\/www.devopsconsulting.in\/blog\/?p=990"},"modified":"2024-10-01T10:38:18","modified_gmt":"2024-10-01T10:38:18","slug":"the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety","status":"publish","type":"post","link":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/","title":{"rendered":"The lower bound of &#8220;sdk:  must be 2.12.0 or higher to enable null safety."},"content":{"rendered":"\n<h3 class=\"wp-block-heading\"><strong>Handling Dependency and Null Safety Issues in Flutter: A Complete Guide<\/strong><\/h3>\n\n\n\n<p>When working with Flutter projects, you may encounter errors related to dependency versions and null safety, especially if you&#8217;re using an outdated or incompatible package. In this article, we&#8217;ll walk you through a common error and how to resolve it using the <code>flutter pub outdated<\/code> command.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>The Issue<\/strong><\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;holidaylandmark] flutter pub get --no-example\nResolving dependencies...\nThe current Dart SDK version is 3.3.3.\n\nBecause flutter_icons 1.1.0 doesn't support null safety and no versions of flutter_icons match &gt;1.1.0 &lt;2.0.0, flutter_icons ^1.1.0 is forbidden.\nSo, because holidaylandmark depends on flutter_icons ^1.1.0, version solving failed.\n\nThe lower bound of \"sdk: '&gt;=2.0.0-dev.68.0 &lt;3.0.0'\" must be 2.12.0 or higher to enable null safety.\nFor details, see https:\/\/dart.dev\/null-safety\nexit code 1<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1004\" height=\"240\" src=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png\" alt=\"\" class=\"wp-image-991\" srcset=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png 1004w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image-300x72.png 300w, https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image-768x184.png 768w\" sizes=\"auto, (max-width: 1004px) 100vw, 1004px\" \/><\/figure>\n\n\n\n<p>Let&#8217;s say you run the following command to get your Flutter dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>flutter pub get --no-example<\/code><\/pre>\n\n\n\n<p>You might encounter an error that looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Resolving dependencies...\nThe current Dart SDK version is 3.3.3.\n\nBecause flutter_icons 1.1.0 doesn't support null safety and no versions of flutter_icons match &gt;1.1.0 &lt;2.0.0, flutter_icons ^1.1.0 is forbidden.\nSo, because holidaylandmark depends on flutter_icons ^1.1.0, version solving failed.\n\nThe lower bound of \"sdk: '&gt;=2.0.0-dev.68.0 &lt;3.0.0'\" must be 2.12.0 or higher to enable null safety.\nFor details, see https:\/\/dart.dev\/null-safety\nexit code 1<\/code><\/pre>\n\n\n\n<p>This error occurs because the package <code>flutter_icons<\/code> is not compatible with your current Dart SDK version (3.3.3) and does not support null safety, a feature introduced in Dart 2.12.0.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Understanding the Problem<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Null Safety:<\/strong> Ensures that no variable that hasn&#8217;t been initialized is accessed, reducing runtime errors.<\/li>\n\n\n\n<li><strong>Dependency Version Incompatibility:<\/strong> Occurs when a package you&#8217;re using doesn&#8217;t support your Dart SDK&#8217;s version or lacks null safety support.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Solution<\/strong><\/h3>\n\n\n\n<p>To resolve this, you need to identify outdated packages and find compatible versions. Here&#8217;s how to do it:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Identify Outdated Packages:<\/strong> Run the following command to list outdated packages:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   flutter pub outdated<\/code><\/pre>\n\n\n\n<p>This will display a table showing the current, upgradable, resolvable, and latest versions of your dependencies.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\">\n<li><strong>Find Outdated Packages in Development Mode:<\/strong> Use this command to get more details, including pre-release versions:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   flutter pub outdated --mode=dev<\/code><\/pre>\n\n\n\n<p>This command helps you identify packages that need upgrading to support null safety or compatibility with the latest Dart SDK.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"3\">\n<li><strong>Update the Dependencies:<\/strong> Open your <code>pubspec.yaml<\/code> file and update the package version. For example:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   dependencies:\n     flutter_icons: ^2.0.0<\/code><\/pre>\n\n\n\n<p>Make sure the version you&#8217;re updating to supports null safety and is compatible with your Dart SDK version.<\/p>\n\n\n\n<ol class=\"wp-block-list\" start=\"4\">\n<li><strong>Run <code>flutter pub get<\/code>:<\/strong> After updating your <code>pubspec.yaml<\/code>, run:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>   flutter pub get<\/code><\/pre>\n\n\n\n<p>This should resolve the version conflict and update your dependencies successfully.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Additional Tips<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Always refer to the <a href=\"https:\/\/dart.dev\/null-safety\">Dart null safety migration guide<\/a> for understanding how null safety works.<\/li>\n\n\n\n<li>Regularly update your Flutter SDK and packages to avoid compatibility issues.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>By following these steps, you can resolve dependency issues related to null safety and ensure that your Flutter projects run smoothly. This process is essential for keeping your project up-to-date, stable, and aligned with the latest Flutter and Dart improvements.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Handling Dependency and Null Safety Issues in Flutter: A Complete Guide When working with Flutter projects, you may encounter errors related to dependency versions and null safety,&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[191],"class_list":["post-990","post","type-post","status-publish","format-standard","hentry","category-flutter","tag-enable-null-safety"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>The lower bound of &quot;sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The lower bound of &quot;sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting\" \/>\n<meta property=\"og:description\" content=\"Handling Dependency and Null Safety Issues in Flutter: A Complete Guide When working with Flutter projects, you may encounter errors related to dependency versions and null safety,...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Consulting\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-11T08:47:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-01T10:38:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png\" \/>\n<meta name=\"author\" content=\"Abhishek Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Abhishek Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/\"},\"author\":{\"name\":\"Abhishek Singh\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"headline\":\"The lower bound of &#8220;sdk: must be 2.12.0 or higher to enable null safety.\",\"datePublished\":\"2024-04-11T08:47:59+00:00\",\"dateModified\":\"2024-10-01T10:38:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/\"},\"wordCount\":362,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image.png\",\"keywords\":[\"enable null safety\"],\"articleSection\":[\"flutter\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/\",\"name\":\"The lower bound of \\\"sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image.png\",\"datePublished\":\"2024-04-11T08:47:59+00:00\",\"dateModified\":\"2024-10-01T10:38:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image.png\",\"width\":1004,\"height\":240},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/\",\"name\":\"DevOps Consulting\",\"description\":\"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/#\\\/schema\\\/person\\\/fc397ba8be42f9fdd53450edfc73006f\",\"name\":\"Abhishek Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g\",\"caption\":\"Abhishek Singh\"},\"description\":\"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.\",\"url\":\"https:\\\/\\\/www.devopsconsulting.in\\\/blog\\\/author\\\/abhishek\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"The lower bound of \"sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/","og_locale":"en_US","og_type":"article","og_title":"The lower bound of \"sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting","og_description":"Handling Dependency and Null Safety Issues in Flutter: A Complete Guide When working with Flutter projects, you may encounter errors related to dependency versions and null safety,...","og_url":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/","og_site_name":"DevOps Consulting","article_published_time":"2024-04-11T08:47:59+00:00","article_modified_time":"2024-10-01T10:38:18+00:00","og_image":[{"url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png","type":"","width":"","height":""}],"author":"Abhishek Singh","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Abhishek Singh","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#article","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/"},"author":{"name":"Abhishek Singh","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"headline":"The lower bound of &#8220;sdk: must be 2.12.0 or higher to enable null safety.","datePublished":"2024-04-11T08:47:59+00:00","dateModified":"2024-10-01T10:38:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/"},"wordCount":362,"commentCount":0,"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png","keywords":["enable null safety"],"articleSection":["flutter"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/","url":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/","name":"The lower bound of \"sdk: must be 2.12.0 or higher to enable null safety. - DevOps Consulting","isPartOf":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png","datePublished":"2024-04-11T08:47:59+00:00","dateModified":"2024-10-01T10:38:18+00:00","author":{"@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsconsulting.in\/blog\/the-lower-bound-of-sdk-must-be-2-12-0-or-higher-to-enable-null-safety\/#primaryimage","url":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png","contentUrl":"https:\/\/www.devopsconsulting.in\/blog\/wp-content\/uploads\/2024\/04\/image.png","width":1004,"height":240},{"@type":"WebSite","@id":"https:\/\/www.devopsconsulting.in\/blog\/#website","url":"https:\/\/www.devopsconsulting.in\/blog\/","name":"DevOps Consulting","description":"DevOps Consulting | SRE Consulting | DevSecOps Consulting | MLOps Consulting","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsconsulting.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsconsulting.in\/blog\/#\/schema\/person\/fc397ba8be42f9fdd53450edfc73006f","name":"Abhishek Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/790feefe779852cdf344ca7318bf6c13832223c9b3c6bf4d217658412041026d?s=96&d=mm&r=g","caption":"Abhishek Singh"},"description":"I\u2019m Abhishek, a DevOps, SRE, DevSecOps, and Cloud expert with a passion for sharing knowledge and real-world experiences. I\u2019ve had the opportunity to work with Cotocus and continue to contribute to multiple platforms where I share insights across different domains: \u2022 DevOps School \u2013 Tech blogs and tutorials \u2022 Holiday Landmark \u2013 Travel stories and guides \u2022 Stocks Mantra \u2013 Stock market strategies and tips \u2022 My Medic Plus \u2013 Health and fitness guidance \u2022 TrueReviewNow \u2013 Honest product reviews \u2022 Wizbrand \u2013 SEO and digital tools for businesses I\u2019m also exploring the fascinating world of Quantum Computing.","url":"https:\/\/www.devopsconsulting.in\/blog\/author\/abhishek\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/990","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/comments?post=990"}],"version-history":[{"count":3,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/990\/revisions"}],"predecessor-version":[{"id":1251,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/posts\/990\/revisions\/1251"}],"wp:attachment":[{"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/media?parent=990"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/categories?post=990"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsconsulting.in\/blog\/wp-json\/wp\/v2\/tags?post=990"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}