{"id":23554,"name":"github.com/rivo/uniseg","ecosystem":"go","repository_url":"https://github.com/rivo/uniseg","issues_count":39,"created_at":"2025-06-07T03:20:49.980Z","updated_at":"2025-06-07T03:20:49.980Z","purl":"pkg:golang/github.com/rivo/uniseg","metadata":{"id":3499101,"name":"github.com/rivo/uniseg","ecosystem":"go","description":"Package uniseg implements Unicode Text Segmentation, Unicode Line Breaking, and\nstring width calculation for monospace fonts. Unicode Text Segmentation conforms\nto Unicode Standard Annex #29 (https://unicode.org/reports/tr29/) and Unicode\nLine Breaking conforms to Unicode Standard Annex #14\n(https://unicode.org/reports/tr14/).\n\nIn short, using this package, you can split a string into grapheme clusters\n(what people would usually refer to as a \"character\"), into words, and into\nsentences. Or, in its simplest case, this package allows you to count the number\nof characters in a string, especially when it contains complex characters such\nas emojis, combining characters, or characters from Asian, Arabic, Hebrew, or\nother languages. Additionally, you can use it to implement line breaking (or\n\"word wrapping\"), that is, to determine where text can be broken over to the\nnext line when the width of the line is not big enough to fit the entire text.\nFinally, you can use it to calculate the display width of a string for monospace\nfonts.\n\nIf you just want to count the number of characters in a string, you can use\nGraphemeClusterCount. If you want to determine the display width of a string,\nyou can use StringWidth. If you want to iterate over a string, you can use\nStep, StepString, or the Graphemes class (more convenient but less\nperformant). This will provide you with all information: grapheme clusters,\nword boundaries, sentence boundaries, line breaks, and monospace character\nwidths. The specialized functions FirstGraphemeCluster,\nFirstGraphemeClusterInString, FirstWord, FirstWordInString,\nFirstSentence, and FirstSentenceInString can be used if only one type of\ninformation is needed.\n\nConsider the rainbow flag emoji: 🏳️‍🌈. On most modern systems, it appears as one\ncharacter. But its string representation actually has 14 bytes, so counting\nbytes (or using len(\"🏳️‍🌈\")) will not work as expected. Counting runes won't,\neither: The flag has 4 Unicode code points, thus 4 runes. The stdlib function\nutf8.RuneCountInString(\"🏳️‍🌈\") and len([]rune(\"🏳️‍🌈\")) will both return 4.\n\nThe GraphemeClusterCount function will return 1 for the rainbow flag emoji.\nThe Graphemes class and a variety of functions in this package will allow you to\nsplit strings into its grapheme clusters.\n\nWord boundaries are used in a number of different contexts. The most familiar\nones are selection (double-click mouse selection), cursor movement (\"move to\nnext word\" control-arrow keys), and the dialog option \"Whole Word Search\" for\nsearch and replace. This package provides methods for determining word\nboundaries.\n\nSentence boundaries are often used for triple-click or some other method of\nselecting or iterating through blocks of text that are larger than single words.\nThey are also used to determine whether words occur within the same sentence in\ndatabase queries. This package provides methods for determining sentence\nboundaries.\n\nLine breaking, also known as word wrapping, is the process of breaking a section\nof text into lines such that it will fit in the available width of a page,\nwindow or other display area. This package provides methods to determine the\npositions in a string where a line must be broken, may be broken, or must not be\nbroken.\n\nMonospace width, as referred to in this package, is the width of a string in a\nmonospace font. This is commonly used in terminal user interfaces or text\ndisplays or editors that don't support proportional fonts. A width of 1\ncorresponds to a single character cell. The C function wcswidth() and its\nimplementation in other programming languages is in widespread use for the same\npurpose. However, there is no standard for the calculation of such widths, and\nthis package differs from wcswidth() in a number of ways, presumably to generate\nmore visually pleasing results.\n\nTo start, we assume that every code point has a width of 1, with the following\nexceptions:\n\nFor Hangul grapheme clusters composed of conjoining Jamo and for Regional\nIndicators (flags), all code points except the first one have a width of 0. For\ngrapheme clusters starting with an Extended Pictographic, any additional code\npoint will force a total width of 2, except if the Variation Selector-15\n(U+FE0E) is included, in which case the total width is always 1. Grapheme\nclusters ending with Variation Selector-16 (U+FE0F) have a width of 2.\n\nNote that whether these widths appear correct depends on your application's\nrender engine, to which extent it conforms to the Unicode Standard, and its\nchoice of font.","homepage":"https://github.com/rivo/uniseg","licenses":"MIT","normalized_licenses":["MIT"],"repository_url":"https://github.com/rivo/uniseg","keywords_array":[],"namespace":"github.com/rivo","versions_count":15,"first_release_published_at":"2019-07-06T09:06:56.000Z","latest_release_published_at":"2024-02-08T13:16:15.000Z","latest_release_number":"v0.4.7","last_synced_at":"2025-06-05T10:00:41.953Z","created_at":"2022-04-10T19:56:38.513Z","updated_at":"2025-06-05T10:00:41.953Z","registry_url":"https://pkg.go.dev/github.com/rivo/uniseg","install_command":"go get github.com/rivo/uniseg","documentation_url":"https://pkg.go.dev/github.com/rivo/uniseg#section-documentation","metadata":{},"repo_metadata":{"uuid":"175458368","full_name":"rivo/uniseg","owner":"rivo","description":"Unicode Text Segmentation, Word Wrapping, and String Width Calculation in Go","archived":false,"fork":false,"pushed_at":"2023-02-21T06:59:09.000Z","size":653,"stargazers_count":331,"open_issues_count":9,"forks_count":44,"subscribers_count":8,"default_branch":"master","last_synced_at":"2023-02-22T11:26:48.453Z","etag":null,"topics":["golang","string-manipulation","strings","unicode"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"logo_url":null,"metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"rivo"}},"created_at":"2019-03-13T16:25:33.000Z","updated_at":"2023-02-22T01:43:52.000Z","dependencies_parsed_at":"2023-02-18T01:45:49.028Z","dependency_job_id":null,"html_url":"https://github.com/rivo/uniseg","commit_stats":null,"repository_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rivo%2Funiseg","tags_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rivo%2Funiseg/tags","manifests_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rivo%2Funiseg/manifests","owner_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rivo","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":108921946,"host_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names"}},"repo_metadata_updated_at":"2023-03-21T18:39:08.849Z","dependent_packages_count":13772,"downloads":null,"downloads_period":null,"dependent_repos_count":21251,"rankings":{"downloads":null,"dependent_repos_count":0.04479831425602651,"dependent_packages_count":0.016488268441454203,"stargazers_count":2.992776271826216,"forks_count":3.59784968983518,"docker_downloads_count":0.012236576579192427,"average":1.332829824187614},"purl":"pkg:golang/github.com/rivo/uniseg","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/go/github.com/rivo/uniseg","docker_dependents_count":7117,"docker_downloads_count":27539282243,"usage_url":"https://repos.ecosyste.ms/usage/go/github.com/rivo/uniseg","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/go/github.com/rivo/uniseg/dependencies","status":null,"funding_links":["https://github.com/sponsors/rivo"],"critical":true,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Frivo%2Funiseg/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Frivo%2Funiseg/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Frivo%2Funiseg/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Frivo%2Funiseg/related_packages","maintainers":[],"registry":{"name":"proxy.golang.org","url":"https://proxy.golang.org","ecosystem":"go","default":true,"packages_count":1882895,"maintainers_count":0,"namespaces_count":723926,"keywords_count":97872,"github":"golang","metadata":{"funded_packages_count":39346},"icon_url":"https://github.com/golang.png","created_at":"2022-04-04T15:19:22.939Z","updated_at":"2025-06-06T05:22:27.920Z","packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages","maintainers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/maintainers","namespaces_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/namespaces"}},"unique_repositories_count":18,"unique_repositories_count_past_30_days":1,"recent_issues":[{"uuid":"3646526287","node_id":"PR_kwDODjgJwc60jhVr","number":3679,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /sveltekit-embed","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:07.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:15:34.000Z","updated_at":"2025-11-20T14:20:15.000Z","time_to_close":14673,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/sveltekit-embed","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3679","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3679","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3679/packages"},{"uuid":"3646521689","node_id":"PR_kwDODjgJwc60jgUp","number":3653,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /socketio","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:32.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:14:31.000Z","updated_at":"2025-11-20T14:21:41.000Z","time_to_close":14821,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/socketio","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3653","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3653","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3653/packages"},{"uuid":"3646518948","node_id":"PR_kwDODjgJwc60jfth","number":3638,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /rss-feed","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:01.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:59.000Z","updated_at":"2025-11-20T14:20:11.000Z","time_to_close":14762,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/rss-feed","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3638","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3638","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3638/packages"},{"uuid":"3646518097","node_id":"PR_kwDODjgJwc60jfiH","number":3630,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /react-router","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:00.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:43.000Z","updated_at":"2025-11-20T14:20:10.000Z","time_to_close":14777,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/react-router","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3630","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3630","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3630/packages"},{"uuid":"3646517658","node_id":"PR_kwDODjgJwc60jfcK","number":3625,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /rabbitmq","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:19:59.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:35.000Z","updated_at":"2025-11-20T14:20:09.000Z","time_to_close":14784,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/rabbitmq","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3625","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3625","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3625/packages"},{"uuid":"3646517167","node_id":"PR_kwDODjgJwc60jfVV","number":3621,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /prefork","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:43.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:26.000Z","updated_at":"2025-11-20T14:20:53.000Z","time_to_close":14837,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/prefork","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3621","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3621","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3621/packages"},{"uuid":"3646514850","node_id":"PR_kwDODjgJwc60je0t","number":3606,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /oauth2-google","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:41.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:12:51.000Z","updated_at":"2025-11-20T14:20:51.000Z","time_to_close":14870,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/oauth2-google","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3606","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3606","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3606/packages"},{"uuid":"3646508212","node_id":"PR_kwDODjgJwc60jdYO","number":3571,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /memgraph","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:37.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:11:13.000Z","updated_at":"2025-11-20T14:20:46.000Z","time_to_close":14964,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/memgraph","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3571","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3571","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3571/packages"},{"uuid":"3646503036","node_id":"PR_kwDODjgJwc60jcSS","number":3560,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /k8s","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:37.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:10:01.000Z","updated_at":"2025-11-20T14:20:47.000Z","time_to_close":15036,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/k8s","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3560","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3560","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3560/packages"},{"uuid":"3646499376","node_id":"PR_kwDODjgJwc60jbet","number":3538,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /heroku","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:33.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:09:13.000Z","updated_at":"2025-11-20T14:20:45.000Z","time_to_close":15080,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/heroku","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3538","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3538","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3538/packages"},{"uuid":"3646490599","node_id":"PR_kwDODjgJwc60jZl5","number":3489,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /firebase-functions","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:12.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:07:12.000Z","updated_at":"2025-11-20T14:21:21.000Z","time_to_close":15240,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/firebase-functions","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3489","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3489","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3489/packages"},{"uuid":"3646483337","node_id":"PR_kwDODjgJwc60jYBL","number":3463,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /ent-mysql","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:32.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:35.000Z","updated_at":"2025-11-20T14:21:41.000Z","time_to_close":15357,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/ent-mysql","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3463","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3463","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3463/packages"},{"uuid":"3646482145","node_id":"PR_kwDODjgJwc60jXxD","number":3454,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /dummyjson","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:08.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:14.000Z","updated_at":"2025-11-20T14:21:17.000Z","time_to_close":15354,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/dummyjson","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3454","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3454","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3454/packages"},{"uuid":"3646481327","node_id":"PR_kwDODjgJwc60jXmP","number":3447,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /docker-mariadb-clean-arch","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:07.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:01.000Z","updated_at":"2025-11-20T14:21:16.000Z","time_to_close":15366,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/docker-mariadb-clean-arch","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3447","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3447","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3447/packages"},{"uuid":"3646469203","node_id":"PR_kwDODjgJwc60jVCf","number":3390,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /auth-jwt","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-11-20T10:02:12.000Z","updated_at":"2025-11-20T10:02:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/auth-jwt","ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3390","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3390","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3390/packages"},{"uuid":"3646467952","node_id":"PR_kwDODjgJwc60jUx-","number":3381,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /air","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-11-20T10:01:52.000Z","updated_at":"2025-11-20T16:00:42.111Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/air","ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3381","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3381","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3381/packages"},{"uuid":"3528793494","node_id":"PR_kwDOQE0U7c6ucuix","number":13,"state":"open","title":"chore(deps)(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-10-18T12:45:43.000Z","updated_at":"2025-10-18T15:00:42.003Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IlmanNafi11/invento-service/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlmanNafi11%2Finvento-service/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"},{"uuid":"2817468628","node_id":"PR_kwDOPTF7os6n7yjU","number":242,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7","user":"dependabot[bot]","labels":["dependencies","security","automated"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-09-11T03:46:02.000Z","updated_at":"2025-09-11T03:46:03.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thc1006/nephoran-intent-operator/pull/242","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thc1006%2Fnephoran-intent-operator/issues/242","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/242/packages"},{"uuid":"3331887109","node_id":"PR_kwDONK9gos6kK5P0","number":4,"state":"open","title":"deps(deps): bump the minor-and-patch group with 11 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-08-18T19:42:19.000Z","updated_at":"2025-09-19T03:19:24.181Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): bump","group_name":"minor-and-patch","update_count":11,"packages":[{"name":"github.com/BurntSushi/toml","old_version":"1.3.2","new_version":"1.5.0","repository_url":"https://github.com/BurntSushi/toml"},{"name":"github.com/fatih/color","old_version":"1.16.0","new_version":"1.18.0","repository_url":"https://github.com/fatih/color"},{"name":"github.com/schollz/progressbar/v3","old_version":"3.14.1","new_version":"3.18.0","repository_url":"https://github.com/schollz/progressbar"},{"name":"github.com/spf13/cobra","old_version":"1.8.0","new_version":"1.9.1","repository_url":"https://github.com/spf13/cobra"},{"name":"go.uber.org/zap","old_version":"1.26.0","new_version":"1.27.0","repository_url":"https://github.com/uber-go/zap"},{"name":"github.com/mattn/go-colorable","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/mattn/go-colorable"},{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"},{"name":"github.com/spf13/pflag","old_version":"1.0.5","new_version":"1.0.6","repository_url":"https://github.com/spf13/pflag"},{"name":"go.uber.org/multierr","old_version":"1.10.0","new_version":"1.11.0","repository_url":"https://github.com/uber-go/multierr"},{"name":"golang.org/x/sys","old_version":"0.15.0","new_version":"0.29.0","repository_url":"https://github.com/golang/sys"},{"name":"golang.org/x/term","old_version":"0.15.0","new_version":"0.28.0","repository_url":"https://github.com/golang/term"}],"path":null,"ecosystem":"go"},"body":"Bumps the minor-and-patch group with 11 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.3.2` | `1.5.0` |\n| [github.com/fatih/color](https://github.com/fatih/color) | `1.16.0` | `1.18.0` |\n| [github.com/schollz/progressbar/v3](https://github.com/schollz/progressbar) | `3.14.1` | `3.18.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.9.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.26.0` | `1.27.0` |\n| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |\n| [github.com/rivo/uniseg](https://github.com/rivo/uniseg) | `0.4.4` | `0.4.7` |\n| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.5` | `1.0.6` |\n| [go.uber.org/multierr](https://github.com/uber-go/multierr) | `1.10.0` | `1.11.0` |\n| [golang.org/x/sys](https://github.com/golang/sys) | `0.15.0` | `0.29.0` |\n| [golang.org/x/term](https://github.com/golang/term) | `0.15.0` | `0.28.0` |\n\nUpdates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/BurntSushi/toml/releases\"\u003egithub.com/BurntSushi/toml's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.0\u003c/h2\u003e\n\u003cp\u003eMostly some small bugfixes, with a few small new features:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eAdd Position.Col, to mark the column an error occurred (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/410\"\u003e#410\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003ePrint more detailed errors in the \u003ccode\u003etomlv\u003c/code\u003e CLI.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnsure ParseError.Message is always set (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/411\"\u003e#411\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAllow custom string types as map keys (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/414\"\u003e#414\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eMark meta keys as decoded when using Unmarshaler interface (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/426\"\u003e#426\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix encoding when nested inline table ends with map (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/438\"\u003e#438\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix encoding of several layers of embedded structs (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/430\"\u003e#430\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix ErrorWithPosition panic when there is no newline in the TOML document (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/433\"\u003e#433\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.0\u003c/h2\u003e\n\u003cp\u003eThis version requires Go 1.18\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eAdd toml.Marshal() (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/405\"\u003e#405\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eRequire 2-digit hour (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/320\"\u003e#320\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eWrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/398\"\u003e#398\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix inline tables with dotted keys inside inline arrays (e.g. \u003ccode\u003ek=[{a.b=1}]\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/400\"\u003e#400\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/d97def528e83313822a9f98946334ffccd542bdf\"\u003e\u003ccode\u003ed97def5\u003c/code\u003e\u003c/a\u003e Update toml-test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/d10101f4fed80a8584aa2346e4701c5f5a184bc5\"\u003e\u003ccode\u003ed10101f\u003c/code\u003e\u003c/a\u003e Correct encoding of comma when nested inline table ends with map\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/75a4f17a6da92eb899b599eafc43a2e7ddd76fc2\"\u003e\u003ccode\u003e75a4f17\u003c/code\u003e\u003c/a\u003e Correct encoding of several layers of embedded structs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/702f5a6d00def72eaea44c3179fa22e050e208f7\"\u003e\u003ccode\u003e702f5a6\u003c/code\u003e\u003c/a\u003e Minor staticcheck fixes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/6f7689d2591e3da5f945ef556af0387f75d7199f\"\u003e\u003ccode\u003e6f7689d\u003c/code\u003e\u003c/a\u003e Mark meta keys as decoded when using Unmarshaler interface (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/426\"\u003e#426\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/8323983708e9282360078a9050deb4ee30a45250\"\u003e\u003ccode\u003e8323983\u003c/code\u003e\u003c/a\u003e Remove exception for fuzzer\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/4664468d6eafff56a043a217a8981cc72e901122\"\u003e\u003ccode\u003e4664468\u003c/code\u003e\u003c/a\u003e Fix ErrorWithPosition panic when less than two lines\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/211c91562a6926d7bf0dcb18a952d58140836837\"\u003e\u003ccode\u003e211c915\u003c/code\u003e\u003c/a\u003e Fix typos in comments, tests, error message (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/432\"\u003e#432\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/c141a29159dcbb855f8ad4c8c20eb49453480edc\"\u003e\u003ccode\u003ec141a29\u003c/code\u003e\u003c/a\u003e Test with Go 1.24 in CI\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/2918ee74bb664c418ae9b2d6ba356c2ca6c24506\"\u003e\u003ccode\u003e2918ee7\u003c/code\u003e\u003c/a\u003e Fix metadata: do not reuse result of append (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/418\"\u003e#418\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/BurntSushi/toml/compare/v1.3.2...v1.5.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/fatih/color` from 1.16.0 to 1.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/fatih/color/releases\"\u003egithub.com/fatih/color's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RGB API support by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/225\"\u003efatih/color#225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump GitHub workflow actions by \u003ca href=\"https://github.com/deining\"\u003e\u003ccode\u003e@​deining\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/235\"\u003efatih/color#235\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.18.0 to 0.24.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/236\"\u003efatih/color#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.24.0 to 0.25.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/237\"\u003efatih/color#237\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/deining\"\u003e\u003ccode\u003e@​deining\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/235\"\u003efatih/color#235\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.17.0...v1.18.0\"\u003ehttps://github.com/fatih/color/compare/v1.17.0...v1.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix multi-parameter println spacing by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/228\"\u003efatih/color#228\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: update Go and Staticcheck versions by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/222\"\u003efatih/color#222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.14.0 to 0.17.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/221\"\u003efatih/color#221\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/217\"\u003efatih/color#217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.17.0 to 0.18.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/224\"\u003efatih/color#224\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/228\"\u003efatih/color#228\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.16.0...v1.17.0\"\u003ehttps://github.com/fatih/color/compare/v1.16.0...v1.17.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/1c8d8706604ee5fb9a464e5097ba113101828a75\"\u003e\u003ccode\u003e1c8d870\u003c/code\u003e\u003c/a\u003e Update README.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/546c2d0f9aa4e97dab39a1ed273fd0aa08765972\"\u003e\u003ccode\u003e546c2d0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/225\"\u003e#225\u003c/a\u003e from fatih/add-rgb-api\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/1ff0f9790840e92e289b824302f71b465c426735\"\u003e\u003ccode\u003e1ff0f97\u003c/code\u003e\u003c/a\u003e Apply suggestions from code review\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/5723903daae15b72846d40cf1483c37a1b86ba79\"\u003e\u003ccode\u003e5723903\u003c/code\u003e\u003c/a\u003e Add RGB API support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/f203fbcecbc160dace4ffcec613221379365c67a\"\u003e\u003ccode\u003ef203fbc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/237\"\u003e#237\u003c/a\u003e from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/60aa7fb483e2b048970dec3925d6c298ea428c4e\"\u003e\u003ccode\u003e60aa7fb\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sys from 0.24.0 to 0.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/741c2f4087173b24f4cb47ad02d93600b0d5c947\"\u003e\u003ccode\u003e741c2f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/236\"\u003e#236\u003c/a\u003e from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/0d24b42a27f768598c311ac3ec1961003418a90a\"\u003e\u003ccode\u003e0d24b42\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sys from 0.18.0 to 0.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/cb154c021886f50c313e686422c7baecff8c0b7f\"\u003e\u003ccode\u003ecb154c0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/235\"\u003e#235\u003c/a\u003e from deining/fix-typo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/9b9653e8ce3e644130b0412b9236c1d3e07a5017\"\u003e\u003ccode\u003e9b9653e\u003c/code\u003e\u003c/a\u003e Bump GitHub workflow actions\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/fatih/color/compare/v1.16.0...v1.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/schollz/progressbar/v3` from 3.14.1 to 3.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/schollz/progressbar/releases\"\u003egithub.com/schollz/progressbar/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd AddMax by \u003ca href=\"https://github.com/kevin-hanselman\"\u003e\u003ccode\u003e@​kevin-hanselman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/209\"\u003eschollz/progressbar#209\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add an HTTP server to enable users to monitor status updates via status bars or other UI components. by \u003ca href=\"https://github.com/cmsax\"\u003e\u003ccode\u003e@​cmsax\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/210\"\u003eschollz/progressbar#210\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kevin-hanselman\"\u003e\u003ccode\u003e@​kevin-hanselman\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/209\"\u003eschollz/progressbar#209\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cmsax\"\u003e\u003ccode\u003e@​cmsax\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/210\"\u003eschollz/progressbar#210\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.17.1...v3.18.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.17.1...v3.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.17.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: set length to unknown if set to -1 by \u003ca href=\"https://github.com/MegaRedHand\"\u003e\u003ccode\u003e@​MegaRedHand\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/207\"\u003eschollz/progressbar#207\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MegaRedHand\"\u003e\u003ccode\u003e@​MegaRedHand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/207\"\u003eschollz/progressbar#207\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.17.0...v3.17.1\"\u003ehttps://github.com/schollz/progressbar/compare/v3.17.0...v3.17.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/138\"\u003e#138\u003c/a\u003e: Add OptionShowTotal by \u003ca href=\"https://github.com/mcamou\"\u003e\u003ccode\u003e@​mcamou\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/205\"\u003eschollz/progressbar#205\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mcamou\"\u003e\u003ccode\u003e@​mcamou\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/205\"\u003eschollz/progressbar#205\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.16.1...v3.17.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.16.1...v3.17.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.16.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: enable race detector for test and fix all detected races by \u003ca href=\"https://github.com/mxey\"\u003e\u003ccode\u003e@​mxey\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/202\"\u003eschollz/progressbar#202\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estyle: go mod tidy by \u003ca href=\"https://github.com/mxey\"\u003e\u003ccode\u003e@​mxey\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/201\"\u003eschollz/progressbar#201\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded BarStartFilled and BarEndFille to Theme struct \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/203\"\u003e#203\u003c/a\u003e by \u003ca href=\"https://github.com/janpfeifer\"\u003e\u003ccode\u003e@​janpfeifer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/204\"\u003eschollz/progressbar#204\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.16.0...v3.16.1\"\u003ehttps://github.com/schollz/progressbar/compare/v3.16.0...v3.16.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.16.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: make progressbar could update according to an interval or updat… by \u003ca href=\"https://github.com/chengxilo\"\u003e\u003ccode\u003e@​chengxilo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/199\"\u003eschollz/progressbar#199\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.15.0...v3.16.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.15.0...v3.16.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.15.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003enew: feature scrolling detail by \u003ca href=\"https://github.com/luo-cheng-xi\"\u003e\u003ccode\u003e@​luo-cheng-xi\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/194\"\u003eschollz/progressbar#194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Acquire lock when printing text to fix race condition by \u003ca href=\"https://github.com/gabe565\"\u003e\u003ccode\u003e@​gabe565\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/198\"\u003eschollz/progressbar#198\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: change some attribute about time to time.Time{} by \u003ca href=\"https://github.com/luo-cheng-xi\"\u003e\u003ccode\u003e@​luo-cheng-xi\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/196\"\u003eschollz/progressbar#196\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/6e18d116cbbd03ba110df9693bf0dc07768ba5d0\"\u003e\u003ccode\u003e6e18d11\u003c/code\u003e\u003c/a\u003e chore: update dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/d88592dbbc8086249e8cd126c1ab16321727db5a\"\u003e\u003ccode\u003ed88592d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/210\"\u003e#210\u003c/a\u003e from cmsax/main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/d4ec0797ecbb3c643684b021196e613cdba85d02\"\u003e\u003ccode\u003ed4ec079\u003c/code\u003e\u003c/a\u003e chore\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/3342791adeb859ec1d3a9e37caf3baaaf6ea5f76\"\u003e\u003ccode\u003e3342791\u003c/code\u003e\u003c/a\u003e feat: add http server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/77ce0b90ba6fed55969cc2367153ccee54b6a858\"\u003e\u003ccode\u003e77ce0b9\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/209\"\u003e#209\u003c/a\u003e from kevin-hanselman/add_max\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/f5093f1cf077f5f41cb8911abfa4722bf44dc158\"\u003e\u003ccode\u003ef5093f1\u003c/code\u003e\u003c/a\u003e fix test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/920dfd7e6204a64930841e4e09a7208f2ebdc9b1\"\u003e\u003ccode\u003e920dfd7\u003c/code\u003e\u003c/a\u003e add AddMax\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/23e1221fe77b89b2dc1e802a39347e207bc9d422\"\u003e\u003ccode\u003e23e1221\u003c/code\u003e\u003c/a\u003e update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/da94fe0b167aa6982bba1ddc8bc6ff8075c35841\"\u003e\u003ccode\u003eda94fe0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/207\"\u003e#207\u003c/a\u003e from MegaRedHand/fix/change-max-unknown\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/91518511a79ad2f2d227baba7d45a68acb19a9af\"\u003e\u003ccode\u003e9151851\u003c/code\u003e\u003c/a\u003e fix: set length to unknown if set to -1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.14.1...v3.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/spf13/cobra` from 1.8.0 to 1.9.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/spf13/cobra/releases\"\u003egithub.com/spf13/cobra's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.9.1\u003c/h2\u003e\n\u003ch3\u003e🐛 Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix CompletionFunc implementation by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2234\"\u003espf13/cobra#2234\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRevert \u0026quot;Make detection for test-binary more universal (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2173\"\u003e#2173\u003c/a\u003e)\u0026quot; by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2235\"\u003espf13/cobra#2235\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/spf13/cobra/compare/v1.9.0...v1.9.1\"\u003ehttps://github.com/spf13/cobra/compare/v1.9.0...v1.9.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.9.0\u003c/h2\u003e\n\u003ch2\u003e✨ Features\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow linker to perform deadcode elimination for program using Cobra by \u003ca href=\"https://github.com/aarzilli\"\u003e\u003ccode\u003e@​aarzilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1956\"\u003espf13/cobra#1956\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd default completion command even if there are no other sub-commands by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1559\"\u003espf13/cobra#1559\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd CompletionWithDesc helper by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2231\"\u003espf13/cobra#2231\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🐛 Fixes\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix deprecation comment for Command.SetOutput by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2172\"\u003espf13/cobra#2172\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated ioutil usage by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2181\"\u003espf13/cobra#2181\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix --version help and output for plugins by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2180\"\u003espf13/cobra#2180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAllow to reset the templates to the default by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2229\"\u003espf13/cobra#2229\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🤖 Completions\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMake Powershell completion work in constrained mode by \u003ca href=\"https://github.com/lstemplinger\"\u003e\u003ccode\u003e@​lstemplinger\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2196\"\u003espf13/cobra#2196\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove detection for flags that accept multiple values by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2210\"\u003espf13/cobra#2210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd CompletionFunc type to help with completions by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2220\"\u003espf13/cobra#2220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd similar whitespace escape logic to bash v2 completions than in other completions by \u003ca href=\"https://github.com/kangasta\"\u003e\u003ccode\u003e@​kangasta\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1743\"\u003espf13/cobra#1743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrint ActiveHelp for bash along other completions by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2076\"\u003espf13/cobra#2076\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(completions): Complete map flags multiple times by \u003ca href=\"https://github.com/gabe565\"\u003e\u003ccode\u003e@​gabe565\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2174\"\u003espf13/cobra#2174\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(bash): nounset unbound file filter variable on empty extension by \u003ca href=\"https://github.com/scop\"\u003e\u003ccode\u003e@​scop\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2228\"\u003espf13/cobra#2228\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🧪 Testing\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTest also with go 1.23 by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2182\"\u003espf13/cobra#2182\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMake detection for test-binary more universal by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2173\"\u003espf13/cobra#2173\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e✍🏼 Documentation\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/eltociear\"\u003e\u003ccode\u003e@​eltociear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2197\"\u003espf13/cobra#2197\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove site formatting by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2183\"\u003espf13/cobra#2183\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edoc: add Conduit by \u003ca href=\"https://github.com/raulb\"\u003e\u003ccode\u003e@​raulb\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2230\"\u003espf13/cobra#2230\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edoc: azion project added to the list of CLIs that use cobra by \u003ca href=\"https://github.com/maxwelbm\"\u003e\u003ccode\u003e@​maxwelbm\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2198\"\u003espf13/cobra#2198\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix broken links in active_help.md by \u003ca href=\"https://github.com/vuil\"\u003e\u003ccode\u003e@​vuil\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2202\"\u003espf13/cobra#2202\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: fix function name in comment by \u003ca href=\"https://github.com/zhuhaicity\"\u003e\u003ccode\u003e@​zhuhaicity\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2216\"\u003espf13/cobra#2216\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🔧 Dependency upgrades\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ebuild(deps): bump github.com/cpuguy83/go-md2man/v2 from 2.0.5 to 2.0.6 by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2206\"\u003espf13/cobra#2206\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate to latest go-md2man by \u003ca href=\"https://github.com/mikelolasagasti\"\u003e\u003ccode\u003e@​mikelolasagasti\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2201\"\u003espf13/cobra#2201\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/40b5bc1437a564fc795d388b23835e84f54cd1d1\"\u003e\u003ccode\u003e40b5bc1\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;Make detection for test-binary more universal (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2173\"\u003e#2173\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2235\"\u003e#2235\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/a97f9fd47b290016526c8af2dac0531fea5cd773\"\u003e\u003ccode\u003ea97f9fd\u003c/code\u003e\u003c/a\u003e fix CompletionFunc implementation (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2234\"\u003e#2234\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/5f9c40898e795a9fb0fd5ca83b6e05c3720523d1\"\u003e\u003ccode\u003e5f9c408\u003c/code\u003e\u003c/a\u003e chore: Upgrade dependencies for v1.9.0 (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2233\"\u003e#2233\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/24ada7fe71e3a3a8741dd52e0a7fc3b97450535a\"\u003e\u003ccode\u003e24ada7f\u003c/code\u003e\u003c/a\u003e Remove the default \u0026quot;completion\u0026quot; cmd if it is alone (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/1559\"\u003e#1559\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/680936a2200be363c61feda8cd29287f0726a48c\"\u003e\u003ccode\u003e680936a\u003c/code\u003e\u003c/a\u003e New logo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/8cb30f9ca53a004a6fe88c5cfcc79ac7b24fc638\"\u003e\u003ccode\u003e8cb30f9\u003c/code\u003e\u003c/a\u003e feat: add CompletionWithDesc helper (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2231\"\u003e#2231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/17b6dca2ffaf6113cbd1cf433ec988fa7d63c6f3\"\u003e\u003ccode\u003e17b6dca\u003c/code\u003e\u003c/a\u003e doc: add Conduit (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2230\"\u003e#2230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/ab5cadcc1bbe224b329726fc5f8b99d6f93e9805\"\u003e\u003ccode\u003eab5cadc\u003c/code\u003e\u003c/a\u003e Allow to reset the templates to the default (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2229\"\u003e#2229\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/4ba5566f5704a9c0d205e1ef3efc4896156d33fa\"\u003e\u003ccode\u003e4ba5566\u003c/code\u003e\u003c/a\u003e fix(bash): nounset unbound file filter variable on empty extension (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2228\"\u003e#2228\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/41b26ec8bb59dfba580f722201bf371c4f5703dd\"\u003e\u003ccode\u003e41b26ec\u003c/code\u003e\u003c/a\u003e Print ActiveHelp for bash along other completions (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2076\"\u003e#2076\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/spf13/cobra/compare/v1.8.0...v1.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `go.uber.org/zap` from 1.26.0 to 1.27.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/zap/releases\"\u003ego.uber.org/zap's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.27.0\u003c/h2\u003e\n\u003cp\u003eEnhancements:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e[]: Add \u003ccode\u003eWithLazy\u003c/code\u003e method for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e[]: zaptest: Add \u003ccode\u003eNewTestingWriter\u003c/code\u003e for customizing TestingWriter with more flexibility than \u003ccode\u003eNewLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e[]: Add \u003ccode\u003eLog\u003c/code\u003e, \u003ccode\u003eLogw\u003c/code\u003e, \u003ccode\u003eLogln\u003c/code\u003e methods for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e[]: Add \u003ccode\u003eWithPanicHook\u003c/code\u003e option for testing panic logs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/defval\"\u003e\u003ccode\u003e@​defval\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/dimmo\"\u003e\u003ccode\u003e@​dimmo\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/arxeiss\"\u003e\u003ccode\u003e@​arxeiss\u003c/code\u003e\u003c/a\u003e, and \u003ca href=\"https://github.com/MKrupauskas\"\u003e\u003ccode\u003e@​MKrupauskas\u003c/code\u003e\u003c/a\u003e for their contributions to this release.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1378\"\u003euber-go/zap#1378\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1399\"\u003euber-go/zap#1399\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1406\"\u003euber-go/zap#1406\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1416\"\u003euber-go/zap#1416\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/zap/blob/master/CHANGELOG.md\"\u003ego.uber.org/zap's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.27.0 (20 Feb 2024)\u003c/h2\u003e\n\u003cp\u003eEnhancements:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e[]: Add \u003ccode\u003eWithLazy\u003c/code\u003e method for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e[]: zaptest: Add \u003ccode\u003eNewTestingWriter\u003c/code\u003e for customizing TestingWriter with more flexibility than \u003ccode\u003eNewLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e[]: Add \u003ccode\u003eLog\u003c/code\u003e, \u003ccode\u003eLogw\u003c/code\u003e, \u003ccode\u003eLogln\u003c/code\u003e methods for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e[]: Add \u003ccode\u003eWithPanicHook\u003c/code\u003e option for testing panic logs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/defval\"\u003e\u003ccode\u003e@​defval\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/dimmo\"\u003e\u003ccode\u003e@​dimmo\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/arxeiss\"\u003e\u003ccode\u003e@​arxeiss\u003c/code\u003e\u003c/a\u003e, and \u003ca href=\"https://github.com/MKrupauskas\"\u003e\u003ccode\u003e@​MKrupauskas\u003c/code\u003e\u003c/a\u003e for their contributions to this release.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1378\"\u003euber-go/zap#1378\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1399\"\u003euber-go/zap#1399\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1406\"\u003euber-go/zap#1406\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1416\"\u003euber-go/zap#1416\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/fcf8ee58669e358bbd6460bef5c2ee7a53c0803a\"\u003e\u003ccode\u003efcf8ee5\u003c/code\u003e\u003c/a\u003e Release v1.27.0 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1419\"\u003e#1419\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/e5a56ee593d51f611de3a73cf3140f1c1927d68e\"\u003e\u003ccode\u003ee5a56ee\u003c/code\u003e\u003c/a\u003e Add WithPanicHook logger option for panic log tests (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/0e2aa4e0412dfb49d87f9ec96b47c8296189cfa3\"\u003e\u003ccode\u003e0e2aa4e\u003c/code\u003e\u003c/a\u003e assets: Fix logo color profile (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1418\"\u003e#1418\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/956a21c19cf77ea7a78f9f08ca44b6f77f95053a\"\u003e\u003ccode\u003e956a21c\u003c/code\u003e\u003c/a\u003e Add methods for logging with level as argument (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/2a893f61347ef844d78dcb4ad3b454ee11ae7641\"\u003e\u003ccode\u003e2a893f6\u003c/code\u003e\u003c/a\u003e build(deps): bump golangci/golangci-lint-action from 3 to 4 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/e5745d6095ecc2497281569e8713835f2c4a029f\"\u003e\u003ccode\u003ee5745d6\u003c/code\u003e\u003c/a\u003e ci: Test with Go 1.22 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/7db06bc9b095571d3dc3d4eebdfbe4dd9bd20405\"\u003e\u003ccode\u003e7db06bc\u003c/code\u003e\u003c/a\u003e zapslog: rename Option to HandlerOption (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1411\"\u003e#1411\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/35ded09102db8ce0b2eba3e87f54ba6ce14f2359\"\u003e\u003ccode\u003e35ded09\u003c/code\u003e\u003c/a\u003e zapslog: fix all with slogtest, support inline group, ignore empty group. (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/27b96e378909082d0bf2f0c5802a9f648150fe98\"\u003e\u003ccode\u003e27b96e3\u003c/code\u003e\u003c/a\u003e Make zaptest.NewTestingWriter public (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/70f61bb342203a50f8192b05f7faf40a0f809a91\"\u003e\u003ccode\u003e70f61bb\u003c/code\u003e\u003c/a\u003e zapslog: Bump zap from v1.24.0 to v1.26.0 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1404\"\u003e#1404\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/uber-go/zap/compare/v1.26.0...v1.27.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/1f71342c1ee78c126bcb69cd26ed8c2be7e016b3\"\u003e\u003ccode\u003e1f71342\u003c/code\u003e\u003c/a\u003e update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/4503567acadfc8967131e7708f241b77589eb28b\"\u003e\u003ccode\u003e4503567\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/73\"\u003e#73\u003c/a\u003e from whereswaldon/patch-1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/40e70a5010a4844b4c1030a31cebdd52b2e96589\"\u003e\u003ccode\u003e40e70a5\u003c/code\u003e\u003c/a\u003e [Windows] harden system DLL loading\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/603fb50de6b0dcd39ea6d96d9dad3477465519a4\"\u003e\u003ccode\u003e603fb50\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/71\"\u003e#71\u003c/a\u003e from hymkor/fork-20241118\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/664d917a3c0d89f11f7ded4642562bddb926a2b9\"\u003e\u003ccode\u003e664d917\u003c/code\u003e\u003c/a\u003e Fix: ESC[E and ESC[F with no arguments did not move the cursor on the legacy ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/2b733b5d5ca7f3959b874da32dd775822a35a1a2\"\u003e\u003ccode\u003e2b733b5\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/69\"\u003e#69\u003c/a\u003e from dolmen-go/merge-appengine-into-others\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/9473000136fc36f73d0784b0bc040888509a1fca\"\u003e\u003ccode\u003e9473000\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/68\"\u003e#68\u003c/a\u003e from dolmen-go/do-not-expose-Windows-Writer\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/3cc8472a2a21fcdd78c18d6a718d3b0bec3f789f\"\u003e\u003ccode\u003e3cc8472\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/67\"\u003e#67\u003c/a\u003e from dolmen-go/ci-go1.20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/d9a68d594368e217e6261d4d830d0d64183466d6\"\u003e\u003ccode\u003ed9a68d5\u003c/code\u003e\u003c/a\u003e Merge colorable_appengine.go into colorable_others.go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/8e4a944b81b5e985b5a66e8e614c1755d1269747\"\u003e\u003ccode\u003e8e4a944\u003c/code\u003e\u003c/a\u003e Windows: do not export Writer\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/mattn/go-colorable/compare/v0.1.13...v0.1.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/rivo/uniseg` from 0.4.4 to 0.4.7\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/spf13/pflag` from 1.0.5 to 1.0.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/spf13/pflag/releases\"\u003egithub.com/spf13/pflag's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd exported functions to preserve \u003ccode\u003epkg/flag\u003c/code\u003e compatibility by \u003ca href=\"https://github.com/mckern\"\u003e\u003ccode\u003e@​mckern\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/220\"\u003espf13/pflag#220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremove dead code for checking error nil by \u003ca href=\"https://github.com/yashbhutwala\"\u003e\u003ccode\u003e@​yashbhutwala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/282\"\u003espf13/pflag#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd IPNetSlice and unit tests by \u003ca href=\"https://github.com/rpothier\"\u003e\u003ccode\u003e@​rpothier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/170\"\u003espf13/pflag#170\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eallow for blank ip addresses by \u003ca href=\"https://github.com/duhruh\"\u003e\u003ccode\u003e@​duhruh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/316\"\u003espf13/pflag#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd github actions by \u003ca href=\"https://github.com/sagikazarmark\"\u003e\u003ccode\u003e@​sagikazarmark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/419\"\u003espf13/pflag#419\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mckern\"\u003e\u003ccode\u003e@​mckern\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/220\"\u003espf13/pflag#220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yashbhutwala\"\u003e\u003ccode\u003e@​yashbhutwala\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/282\"\u003espf13/pflag#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpothier\"\u003e\u003ccode\u003e@​rpothier\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/170\"\u003espf13/pflag#170\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/duhruh\"\u003e\u003ccode\u003e@​duhruh\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/316\"\u003espf13/pflag#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sagikazarmark\"\u003e\u003ccode\u003e@​sagikazarmark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/419\"\u003espf13/pflag#419\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\"\u003ehttps://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/5ca813443bd2a4d9f46a253ea0407d23b3790713\"\u003e\u003ccode\u003e5ca8134\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/spf13/pflag/issues/419\"\u003e#419\u003c/a\u003e from spf13/ci\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/100ab0eb250792014fc1594d94f7fb5c5f0dee37\"\u003e\u003ccode\u003e100ab0e\u003c/code\u003e\u003c/a\u003e disable unsupported dependency graph for now\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/a0f4ddd9fe01ac8fece07be6e3f3ae5dcd7ceec0\"\u003e\u003ccode\u003ea0f4ddd\u003c/code\u003e\u003c/a\u003e fix govet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/f48cbd1964b57ff7c17e2f233feb49c03efe6417\"\u003e\u003ccode\u003ef48cbd1\u003c/code\u003e\u003c/a\u003e add github actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/d5e0c0615acee7028e1e2740a11102313be88de1\"\u003e\u003ccode\u003ed5e0c06\u003c/code\u003e\u003c/a\u003e allow for blank ip addresses (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/316\"\u003e#316\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/85dd5c8bc61cfa382fecd072378089d4e856579d\"\u003e\u003ccode\u003e85dd5c8\u003c/code\u003e\u003c/a\u003e Add IPNetSlice and unit tests (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/170\"\u003e#170\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/6971c29c4a22981adeaee7f4b437c0cffe08c031\"\u003e\u003ccode\u003e6971c29\u003c/code\u003e\u003c/a\u003e remove dead code for checking error nil (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/81378bbcd8a1005f72b1e8d7579e5dd7b2d612ab\"\u003e\u003ccode\u003e81378bb\u003c/code\u003e\u003c/a\u003e Add exported functions to preserve \u003ccode\u003epkg/flag\u003c/code\u003e compatibility (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/220\"\u003e#220\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `go.uber.org/multierr` from 1.10.0 to 1.11.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/multierr/releases\"\u003ego.uber.org/multierr's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eErrors now supports any error that implements multiple-error interface.\u003c/li\u003e\n\u003cli\u003eAdd Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/multierr/blob/master/CHANGELOG.md\"\u003ego.uber.org/multierr's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003ev1.11.0 (2023-03-28)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eErrors\u003c/code\u003e now supports any error that implements multiple-error\ninterface.\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eEvery\u003c/code\u003e function to allow checking if all errors in the chain\nsatisfies \u003ccode\u003eerrors.Is\u003c/code\u003e against the target error.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/de75ae527b39a27afcb50a84427ec7b84021d5f4\"\u003e\u003ccode\u003ede75ae5\u003c/code\u003e\u003c/a\u003e Release v1.11.0 (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/79\"\u003e#79\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/d8067ab0035d5e0ece3cef8cce2c69fd92ce97ad\"\u003e\u003ccode\u003ed8067ab\u003c/code\u003e\u003c/a\u003e Support multierr.Every (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/78\"\u003e#78\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/d42b7a1b108badf09e0227b40dedc2f25848be19\"\u003e\u003ccode\u003ed42b7a1\u003c/code\u003e\u003c/a\u003e ci: Minimize permissions to workflows (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/faff69d9f00cd325d6d0181e7495a70c5f31994f\"\u003e\u003ccode\u003efaff69d\u003c/code\u003e\u003c/a\u003e Enable Errors support for any multi-error (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/uber-go/multierr/compare/v1.10.0...v1.11.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sys` from 0.15.0 to 0.29.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d4ac05dc8c4c953ec29cae3df56c0833f4010763\"\u003e\u003ccode\u003ed4ac05d\u003c/code\u003e\u003c/a\u003e windows: update NewLazyDLL, LoadDLL docs to point to NewLazySystemDLL\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/680bd24a5f379f8bd7b015f25e94865905dd8b34\"\u003e\u003ccode\u003e680bd24\u003c/code\u003e\u003c/a\u003e windows: remove unused errString type\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/a7f19e9c2041d17119bde681964de7f560cf41c0\"\u003e\u003ccode\u003ea7f19e9\u003c/code\u003e\u003c/a\u003e unix: add Dup3 on dragonfly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/fe16172d1123f5350a8c5585395465de6866de4c\"\u003e\u003ccode\u003efe16172\u003c/code\u003e\u003c/a\u003e unix: define IfMsghdr2, IfData64, and RtMsghdr2 on darwin\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/0a57dbcf35b2b0a3288884251b763684d3748e39\"\u003e\u003ccode\u003e0a57dbc\u003c/code\u003e\u003c/a\u003e unix: update to kernel Linux 6.12\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/3cf1e67d0c949e8e6da575b9a2ff8b09ac17d9c1\"\u003e\u003ccode\u003e3cf1e67\u003c/code\u003e\u003c/a\u003e unix: don't fail TestPpoll on EINTR\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d2cea7095ffebfecd082483022e0e13400ecf0d8\"\u003e\u003ccode\u003ed2cea70\u003c/code\u003e\u003c/a\u003e windows: add functions to get named pipe process IDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/a13946c675ce76b00da8b04680749446c36d55a5\"\u003e\u003ccode\u003ea13946c\u003c/code\u003e\u003c/a\u003e windows: regenerate zsyscall_windows.go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/e0753d46944376af67385bb4c7c419d13967bcd9\"\u003e\u003ccode\u003ee0753d4\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/c29efe38de3592b9ec11d314613d7a63126cddbf\"\u003e\u003ccode\u003ec29efe3\u003c/code\u003e\u003c/a\u003e windows: add iphlpapi functions for change notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/sys/compare/v0.15.0...v0.29.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.15.0 to 0.28.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/40b02d69cd8f2efc8aeb262071f74fb4319b6661\"\u003e\u003ccode\u003e40b02d6\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/442846aa8d80ebae61e0c2c58e041b92b9b33dc4\"\u003e\u003ccode\u003e442846a\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/b725e362a8129d135cfc48159c4c4117f2cdc3b6\"\u003e\u003ccode\u003eb725e36\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/54df7da90da86330bfdf9c8d1b1f0711d906e64f\"\u003e\u003ccode\u003e54df7da\u003c/code\u003e\u003c/a\u003e README: don't recommend go get\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/9d5441ab55ca2ec4afd8611a45a4bb5c5a957d32\"\u003e\u003ccode\u003e9d5441a\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/2f7b0dd7437f43f64ee482c4f85280a4ddad94ed\"\u003e\u003ccode\u003e2f7b0dd\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/f867b7695b98cb86bbc9568bc1b5a0d015fffbd4\"\u003e\u003ccode\u003ef867b76\u003c/code\u003e\u003c/a\u003e x/term: set missing VIRTUAL_TERMINAL_INPUT flag on Windows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/d59895469ac1327e92a3ee0ecb6dd868315fcd74\"\u003e\u003ccode\u003ed598954\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/d4346f0be292b658f9757739afbafc1882d1b78c\"\u003e\u003ccode\u003ed4346f0\u003c/code\u003e\u003c/a\u003e LICENSE: update per Google Legal\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/c976cb1d70cf59933953bec8a47c867e343c9eac\"\u003e\u003ccode\u003ec976cb1\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/term/compare/v0.15.0...v0.28.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/dacrab/craftops/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacrab%2Fcraftops/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"},{"uuid":"3329280587","node_id":"PR_kwDOFFptbs6kCRMw","number":44,"state":"open","title":"chore(deps): bump the minor-updates group across 1 directory with 43 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-08-18T06:00:36.000Z","updated_at":"2025-08-18T06:00:36.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"minor-updates","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.36.5","new_version":"1.38.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.17","new_version":"1.31.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.83.0","new_version":"1.87.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.0","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.0","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/valyala/fasthttp","old_version":"1.63.0","new_version":"1.65.0","repository_url":"https://github.com/valyala/fasthttp"},{"name":"github.com/boombuler/barcode","old_version":"1.0.1-0.20190219062509-6c824513bacc","new_version":"1.1.0","repository_url":"https://github.com/boombuler/barcode"},{"name":"github.com/cpuguy83/go-md2man/v2","old_version":"2.0.6","new_version":"2.0.7","repository_url":"https://github.com/cpuguy83/go-md2man"},{"name":"github.com/gabriel-vasile/mimetype","old_version":"1.4.8","new_version":"1.4.9","repository_url":"https://github.com/gabriel-vasile/mimetype"},{"name":"github.com/go-viper/mapstructure/v2","old_version":"2.2.1","new_version":"2.4.0","repository_url":"https://github.com/go-viper/mapstructure"},{"name":"github.com/mattn/go-colorable","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/mattn/go-colorable"},{"name":"github.com/pelletier/go-toml/v2","old_version":"2.2.3","new_version":"2.2.4","repository_url":"https://github.com/pelletier/go-toml"},{"name":"github.com/philhofer/fwd","old_version":"1.1.3-0.20240916144458-20a13a1f6b7c","new_version":"1.2.0","repository_url":"https://github.com/philhofer/fwd"},{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"},{"name":"github.com/sagikazarmark/locafero","old_version":"0.7.0","new_version":"0.10.0","repository_url":"https://github.com/sagikazarmark/locafero"},{"name":"github.com/spf13/cast","old_version":"1.7.1","new_version":"1.9.2","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/pflag","old_version":"1.0.6","new_version":"1.0.7","repository_url":"https://github.com/spf13/pflag"},{"name":"github.com/tinylib/msgp","old_version":"1.2.5","new_version":"1.3.0","repository_url":"https://github.com/tinylib/msgp"},{"name":"go.uber.org/multierr","old_version":"1.10.0","new_version":"1.11.0","repository_url":"https://github.com/uber-go/multierr"},{"name":"google.golang.org/protobuf","old_version":"1.36.6","new_version":"1.36.7"}],"path":null,"ecosystem":"go"},"body":"Bumps the minor-updates group with 20 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.36.5` | `1.38.0` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.17` | `1.31.0` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.83.0` | `1.87.0` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.0` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.0` |\n| [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) | `1.63.0` | `1.65.0` |\n| [github.com/boombuler/barcode](https://github.com/boombuler/barcode) | `1.0.1-0.20190219062509-6c824513bacc` | `1.1.0` |\n| [github.com/cpuguy83/go-md2man/v2](https://github.com/cpuguy83/go-md2man) | `2.0.6` | `2.0.7` |\n| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.8` | `1.4.9` |\n| [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) | `2.2.1` | `2.4.0` |\n| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |\n| [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `2.2.3` | `2.2.4` |\n| [github.com/philhofer/fwd](https://github.com/philhofer/fwd) | `1.1.3-0.20240916144458-20a13a1f6b7c` | `1.2.0` |\n| [github.com/rivo/uniseg](https://github.com/rivo/uniseg) | `0.2.0` | `0.4.7` |\n| [github.com/sagikazarmark/locafero](https://github.com/sagikazarmark/locafero) | `0.7.0` | `0.10.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.7.1` | `1.9.2` |\n| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.6` | `1.0.7` |\n| [github.com/tinylib/msgp](https://github.com/tinylib/msgp) | `1.2.5` | `1.3.0` |\n| [go.uber.org/multierr](https://github.com/uber-go/multierr) | `1.10.0` | `1.11.0` |\n| google.golang.org/protobuf | `1.36.6` | `1.36.7` |\n\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.36.5 to 1.38.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.36.5...v1.38.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.29.17 to 1.31.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3\"\u003e\u003ccode\u003e2f44586\u003c/code\u003e\u003c/a\u003e Release 2024-09-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6\"\u003e\u003ccode\u003e22d0876\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a\"\u003e\u003ccode\u003e5454ab9\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612\"\u003e\u003ccode\u003e06150d9\u003c/code\u003e\u003c/a\u003e add tracing and metrics support (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798\"\u003e#2798\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000\"\u003e\u003ccode\u003e18f7b40\u003c/code\u003e\u003c/a\u003e Release 2024-09-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d\"\u003e\u003ccode\u003ee91c9c4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629\"\u003e\u003ccode\u003e6df0a09\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196\"\u003e\u003ccode\u003e98ae688\u003c/code\u003e\u003c/a\u003e Release 2024-09-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e\"\u003e\u003ccode\u003e222928c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7\"\u003e\u003ccode\u003e887c4de\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.29.17...v1.31.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.83.0 to 1.87.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.83.0...service/s3/v1.87.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.2.2 to 5.3.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.0\u003c/h2\u003e\n\u003cp\u003eThis release is almost identical to to \u003ccode\u003ev5.2.3\u003c/code\u003e but now correctly indicates Go 1.21 as minimum requirement.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCreate CODEOWNERS by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/449\"\u003egolang-jwt/jwt#449\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump Go version to indicate correct minimum requirement by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/452\"\u003egolang-jwt/jwt#452\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.3...v5.3.0\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.2.3...v5.3.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.2.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump GitHub workflows and Go versions by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/438\"\u003egolang-jwt/jwt#438\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImplementing validation of multiple audiences by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/433\"\u003egolang-jwt/jwt#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 7 to 8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/440\"\u003egolang-jwt/jwt#440\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ereplaced interface{} to any by \u003ca href=\"https://github.com/aachex\"\u003e\u003ccode\u003e@​aachex\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/445\"\u003egolang-jwt/jwt#445\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bug in validation of multiple audiences by \u003ca href=\"https://github.com/sfinnman-cotn\"\u003e\u003ccode\u003e@​sfinnman-cotn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/441\"\u003egolang-jwt/jwt#441\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aachex\"\u003e\u003ccode\u003e@​aachex\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/445\"\u003egolang-jwt/jwt#445\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sfinnman-cotn\"\u003e\u003ccode\u003e@​sfinnman-cotn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/441\"\u003egolang-jwt/jwt#441\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.2...v5.2.3\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.2.2...v5.2.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e9547a11aa603c52a31e315cdcaa71d0f25b921a\"\u003e\u003ccode\u003ee9547a1\u003c/code\u003e\u003c/a\u003e Bump Go version to indicate correct minimum requirement (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/452\"\u003e#452\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/3839817bf313f2cfe58853dcbe542ffd06300831\"\u003e\u003ccode\u003e3839817\u003c/code\u003e\u003c/a\u003e Create CODEOWNERS (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/449\"\u003e#449\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d83e545cee83663ad15137c8615900a60447baad\"\u003e\u003ccode\u003ed83e545\u003c/code\u003e\u003c/a\u003e Fix bug in validation of multiple audiences (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/441\"\u003e#441\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/75740f19088857627364f255f3103a053071ca66\"\u003e\u003ccode\u003e75740f1\u003c/code\u003e\u003c/a\u003e replaced interface{} to any (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/445\"\u003e#445\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/048854f1b0ac96c0a843d52fc09d7878b853683f\"\u003e\u003ccode\u003e048854f\u003c/code\u003e\u003c/a\u003e Bump golangci/golangci-lint-action from 7 to 8 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/440\"\u003e#440\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/497a38ec597a28f8f7dd874deb28ad88fb65d0f7\"\u003e\u003ccode\u003e497a38e\u003c/code\u003e\u003c/a\u003e Implementing validation of multiple audiences (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/433\"\u003e#433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/12384ead1e03c0307ee57b05ee2e49cdaa8d30f4\"\u003e\u003ccode\u003e12384ea\u003c/code\u003e\u003c/a\u003e Bump GitHub workflows and Go versions (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/438\"\u003e#438\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.2...v5.3.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/prometheus/client_golang` from 1.22.0 to 1.23.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/prometheus/client_golang/releases\"\u003egithub.com/prometheus/client_golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.23.0 - 2025-07-30\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1812\"\u003e#1812\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1766\"\u003e#1766\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add exemplars for native histograms \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1686\"\u003e#1686\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] exp/api: Bubble up status code from writeResponse \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1823\"\u003e#1823\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[BUGFIX] exp/api: client prompt return on context cancellation \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1729\"\u003e#1729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md\"\u003egithub.com/prometheus/client_golang's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.23.0 / 2025-07-30\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1812\"\u003e#1812\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1766\"\u003e#1766\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add exemplars for native histograms \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1686\"\u003e#1686\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] exp/api: Bubble up status code from writeResponse \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1823\"\u003e#1823\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[BUGFIX] exp/api: client prompt return on context cancellation \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1729\"\u003e#1729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/e4b2208dd8cb6d1425f00250db842ec3c1e8749e\"\u003e\u003ccode\u003ee4b2208\u003c/code\u003e\u003c/a\u003e Cut v1.23.0 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1848\"\u003e#1848\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/d9492afd3a6f2e9782a7fc10363281bfd5b743bb\"\u003e\u003ccode\u003ed9492af\u003c/code\u003e\u003c/a\u003e cut v1.23.0-rc.1 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1842\"\u003e#1842\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/aeae8a0b4f54a8fa720d19b88638a2d048596f82\"\u003e\u003ccode\u003eaeae8a0\u003c/code\u003e\u003c/a\u003e Cut v1.23.0-rc.0 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1837\"\u003e#1837\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/b157309b723f0b8588ea604bb78dbbba196803f2\"\u003e\u003ccode\u003eb157309\u003c/code\u003e\u003c/a\u003e Update common Prometheus files (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1832\"\u003e#1832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/a704e287f467b79744c30af996b7d710d4c6900d\"\u003e\u003ccode\u003ea704e28\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1826\"\u003e#1826\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/c7743110ad2c599de3d8c23682d978a12f9f36d1\"\u003e\u003ccode\u003ec774311\u003c/code\u003e\u003c/a\u003e Fix errNotImplemented reference (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1835\"\u003e#1835\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/db4db7bb0065a76c75b7df6f61d2cf183ecfc473\"\u003e\u003ccode\u003edb4db7b\u003c/code\u003e\u003c/a\u003e Update runtime metrics for Go v1.23 and v1.24 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/99d380ebfe865ae2c973c80184bc97ac0d98f083\"\u003e\u003ccode\u003e99d380e\u003c/code\u003e\u003c/a\u003e Update common Prometheus files (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1831\"\u003e#1831\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/f3ef320dcde30f31188c577ad71e6480e91bf464\"\u003e\u003ccode\u003ef3ef320\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1828\"\u003e#1828\u003c/a\u003e from prometheus/dependabot/go_modules/exp/github.com...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/520c91ae841ff7264b5379fe85e6215fc62734a6\"\u003e\u003ccode\u003e520c91a\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/prometheus/common in /exp\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/prometheus/client_golang/compare/v1.22.0...v1.23.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/valyala/fasthttp` from 1.63.0 to 1.65.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/valyala/fasthttp/releases\"\u003egithub.com/valyala/fasthttp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.65.0\u003c/h2\u003e\n\u003ch2\u003e‼️ ⚠️ backwards incompatibility! ⚠️ ‼️\u003c/h2\u003e\n\u003cp\u003eIn this version of fasthttp, headers delimited by just \u003ccode\u003e\\n\u003c/code\u003e (instead of \u003ccode\u003e\\r\\n\u003c/code\u003e) are no longer supported!\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eRewrite header parsing to improve spec compliance by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2030\"\u003evalyala/fasthttp#2030\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSimplify Client.Do function and lock usage by \u003ca href=\"https://github.com/byte0o\"\u003e\u003ccode\u003e@​byte0o\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2038\"\u003evalyala/fasthttp#2038\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump securego/gosec from 2.22.5 to 2.22.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2039\"\u003evalyala/fasthttp#2039\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix trailer security by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2043\"\u003evalyala/fasthttp#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix RequestHeader.ContentLength() if disableSpecialHeader is true by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2042\"\u003evalyala/fasthttp#2042\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd reuseport support for Solaris by \u003ca href=\"https://github.com/jwntree\"\u003e\u003ccode\u003e@​jwntree\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2046\"\u003evalyala/fasthttp#2046\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest: replace atomic operations with atomic types by \u003ca href=\"https://github.com/alexandear\"\u003e\u003ccode\u003e@​alexandear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2048\"\u003evalyala/fasthttp#2048\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2049\"\u003evalyala/fasthttp#2049\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize fs to have 0 allocations by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2052\"\u003evalyala/fasthttp#2052\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump actions/checkout from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2055\"\u003evalyala/fasthttp#2055\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jwntree\"\u003e\u003ccode\u003e@​jwntree\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2046\"\u003evalyala/fasthttp#2046\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.64.0...v1.65.0\"\u003ehttps://github.com/valyala/fasthttp/compare/v1.64.0...v1.65.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.64.0\u003c/h2\u003e\n\u003ch2\u003e⚠️ Deprecation warning! ⚠️\u003c/h2\u003e\n\u003cp\u003eIn the next version of fasthttp headers delimited by just \u003ccode\u003e\\n\u003c/code\u003e (instead of \u003ccode\u003e\\r\\n\u003c/code\u003e) are no longer supported!\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd warning for deprecated newline separator by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2031\"\u003evalyala/fasthttp#2031\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefact: eliminate duplication in Request/Response via struct embedding by \u003ca href=\"https://github.com/ksw2000\"\u003e\u003ccode\u003e@​ksw2000\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2027\"\u003evalyala/fasthttp#2027\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2034\"\u003evalyala/fasthttp#2034\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/crypto from 0.39.0 to 0.40.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2036\"\u003evalyala/fasthttp#2036\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2035\"\u003evalyala/fasthttp#2035\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.63.0...v1.64.0\"\u003ehttps://github.com/valyala/fasthttp/compare/v1.63.0...v1.64.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/f9d84d7c5242423b3ddac7ce6c671ff817274296\"\u003e\u003ccode\u003ef9d84d7\u003c/code\u003e\u003c/a\u003e Rewrite header parsing to improve spec compliance (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2030\"\u003e#2030\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/89010cb2c614d1b0454440ffd4fe54e9d08505b4\"\u003e\u003ccode\u003e89010cb\u003c/code\u003e\u003c/a\u003e chore(deps): bump actions/checkout from 4 to 5 (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2055\"\u003e#2055\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/1828bd4eee29b489a516b8c01446e621b3a6953e\"\u003e\u003ccode\u003e1828bd4\u003c/code\u003e\u003c/a\u003e Optimize fs to have 0 allocations (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2052\"\u003e#2052\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/81ebee8c79ae193cb2e30ed2b326ece3681278a8\"\u003e\u003ccode\u003e81ebee8\u003c/code\u003e\u003c/a\u003e Fix PeekKeys()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/c20414a496d520c50299276aab29b43261e54d7c\"\u003e\u003ccode\u003ec20414a\u003c/code\u003e\u003c/a\u003e Remove BenchmarkCoarseTimeNow\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/3f641c3246225546dc80ffbdffaafb7ac38e4b82\"\u003e\u003ccode\u003e3f641c3\u003c/code\u003e\u003c/a\u003e chore(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2049\"\u003e#2049\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/51b494732003f551d59bf466e3927d9986f96eae\"\u003e\u003ccode\u003e51b4947\u003c/code\u003e\u003c/a\u003e test: replace atomic operations with atomic types (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2048\"\u003e#2048\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/1d8fe19359b6f308806a2773713bfde7f13ddf29\"\u003e\u003ccode\u003e1d8fe19\u003c/code\u003e\u003c/a\u003e Add reuseport support for Solaris (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2046\"\u003e#2046\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/01d533ad1561d9f2b8878f14e2267e12fc37db1a\"\u003e\u003ccode\u003e01d533a\u003c/code\u003e\u003c/a\u003e Fix RequestHeader.ContentLength() if disableSpecialHeader is true (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2042\"\u003e#2042\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/a1c842f19eda39be4b4a60b9d5989aa41e0ba166\"\u003e\u003ccode\u003ea1c842f\u003c/code\u003e\u003c/a\u003e Fix trailer security (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2043\"\u003e#2043\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.63.0...v1.65.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.32.0 to 0.34.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/a35244d18d7756b12deca31a518c0fa1327d050a\"\u003e\u003ccode\u003ea35244d\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/4f53e0cd3924d70667107169374a480bfd208348\"\u003e\u003ccode\u003e4f53e0c\u003c/code\u003e\u003c/a\u003e term: allow multi-line bracketed paste to not create single line with verbati...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/27f29d8328742b97c08c2186027d32cdc438345c\"\u003e\u003ccode\u003e27f29d8\u003c/code\u003e\u003c/a\u003e term: remove duplicate flag and add comment on windows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/30da5dd58fc835bf6704fa7464ac3d23202d8685\"\u003e\u003ccode\u003e30da5dd\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/term/compare/v0.32.0...v0.34.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/text` from 0.26.0 to 0.28.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/425d715b4a85c7698cedf621412bb53794cbda53\"\u003e\u003ccode\u003e425d715\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/b6d26456dd3ff554a56f10b1e388db0f8ca862d1\"\u003e\u003ccode\u003eb6d2645\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/text/compare/v0.26.0...v0.28.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream` from 1.6.11 to 1.7.0\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/aws/protocol/eventstream's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2021-06-25)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated \u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e to latest version\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.7.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds configuration values for enabling endpoint discovery.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Keep Object-Lock headers a header when presigning Sigv4 signing requests\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/config\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/config/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds configuration setting for enabling endpoint discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/credentials\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/credentials/CHANGELOG.md#v130-2021-06-25\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fixed example usages of aws.CredentialsCache (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/pull/1275\"\u003e#1275\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/feature/cloudfront/sign\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/feature/cloudfront/sign/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add UnmarshalJSON for AWSEpochTime to correctly unmarshal AWSEpochTime, (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/pull/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/internal/configsources\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/internal/configsources/CHANGELOG.md#v100-2021-06-25\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: Release new modules\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amp\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amp/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amplify\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amplify/CHANGELOG.md#v130-2021-06-25\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amplifybackend\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amplifybackend/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/appflow/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appmesh\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/appmesh/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/chime\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/chime/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloud9\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloud9/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudformation/CHANGELOG.md#v160-2021-06-25\"\u003ev1.6.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudfront\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudfront/CHANGELOG.md#v160-2021-06-25\"\u003ev1.6.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudsearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudsearch/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudwatch/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudwatchevents\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudwatchevents/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codebuild\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/codebuild/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codegurureviewer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/codegurureviewer/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cognitoidentity\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cognitoidentity/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cognitoidentityprovider/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/431a4088086d343b343000a5782557c6b298af4a\"\u003e\u003ccode\u003e431a408\u003c/code\u003e\u003c/a\u003e Release 2021-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5393f4a1e3625e51d736d8e46a9ab81e288a3101\"\u003e\u003ccode\u003e5393f4a\u003c/code\u003e\u003c/a\u003e Updated smithy-go dependency version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d96de3a427321579a75bde4d817adc171b67709c\"\u003e\u003ccode\u003ed96de3a\u003c/code\u003e\u003c/a\u003e Update API Models, adds change log for release, pins protocol test to exclude...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e216071ce657c2cc2f47cab02c4a2f691604ed88\"\u003e\u003ccode\u003ee216071\u003c/code\u003e\u003c/a\u003e aws/signer/v4: Keep Object-Lock headers a header in presigning signing reques...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/77ed784acdb0878934858937748e836c4dd308d4\"\u003e\u003ccode\u003e77ed784\u003c/code\u003e\u003c/a\u003e feature/cloudfront/sign: Add json Unmarshal for AWSEpochTime (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d00f3dafe5b5f21cc71e52e54a2c13896a59f706\"\u003e\u003ccode\u003ed00f3da\u003c/code\u003e\u003c/a\u003e credentials: Fix aws.CredentialsCache code usage examples (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1275\"\u003e#1275\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7cdbfce4db06bdd9d8628d456df91364ebe81e63\"\u003e\u003ccode\u003e7cdbfce\u003c/code\u003e\u003c/a\u003e Update README to point to the consolidated Changelog file (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd60ebc64a790cc61b765f2077e92a07a35c50e7\"\u003e\u003ccode\u003ecd60ebc\u003c/code\u003e\u003c/a\u003e feature/s3/manager: Fix typo in Downloader (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1304\"\u003e#1304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d868df6b055dd64c023bbe2a13648e97ee7d161\"\u003e\u003ccode\u003e1d868df\u003c/code\u003e\u003c/a\u003e Endpoint discovery support (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1263\"\u003e#1263\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/39470b26cb7481970166932134f1e048c663ad60\"\u003e\u003ccode\u003e39470b2\u003c/code\u003e\u003c/a\u003e Release 2021-06-11\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rum/v1.6.11...v1.7.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.70 to 1.18.4\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/credentials's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2022-12-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/appsync/CHANGELOG.md#v1170-2022-12-02\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Fixes the URI for the evaluatecode endpoint to include the /v1 prefix (ie. \u0026quot;/v1/dataplane-evaluatecode\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/ecs/CHANGELOG.md#v1201-2022-12-02\"\u003ev1.20.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon ECS\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fms\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/fms/CHANGELOG.md#v1210-2022-12-02\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Firewall Manager now supports Fortigate Cloud Native Firewall as a Service as a third-party policy type.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/mediaconvert/CHANGELOG.md#v1280-2022-12-02\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: The AWS Elemental MediaConvert SDK has added support for configurable ID3 eMSG box attributes and the ability to signal them with InbandEventStream tags in DASH and CMAF outputs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/medialive\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/medialive/CHANGELOG.md#v1250-2022-12-02\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updates to Event Signaling and Management (ESAM) API and documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/polly\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/polly/CHANGELOG.md#v1210-2022-12-02\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add language code for Finnish (fi-FI)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/proton/CHANGELOG.md#v1180-2022-12-02\"\u003ev1.18.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: CreateEnvironmentAccountConnection RoleArn input is now optional\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftserverless\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/redshiftserverless/CHANGELOG.md#v130-2022-12-02\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add Table Level Restore operations for Amazon Redshift Serverless. Add multi-port support for Amazon Redshift Serverless endpoints. Add Tagging support to Snapshots and Recovery Points in Amazon Redshift Serverless.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sns\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/sns/CHANGELOG.md#v1187-2022-12-02\"\u003ev1.18.7\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: This release adds the message payload-filtering feature to the SNS Subscribe, SetSubscriptionAttributes, and GetSubscriptionAttributes API actions\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-12-01)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codecatalyst\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/codecatalyst/CHANGELOG.md#v100-2022-12-01\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds operations that support customers using the AWS Toolkits and Amazon CodeCatalyst, a unified software development service that helps developers develop, deploy, and maintain applications in the cloud. For more information, see the documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/comprehend\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/comprehend/CHANGELOG.md#v1200-2022-12-01\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Comprehend now supports semi-structured documents (such as PDF files or image files) as inputs for custom analysis using the synchronous APIs (ClassifyDocument and DetectEntities).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/gamelift\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/gamelift/CHANGELOG.md#v1160-2022-12-01\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: GameLift introduces a new feature, GameLift Anywhere. GameLift Anywhere allows you to integrate your own compute resources with GameLift. You can also use GameLift Anywhere to iteratively test your game servers without uploading the build to GameLift for every iteration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/pipes\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/pipes/CHANGELOG.md#v100-2022-12-01\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS introduces new Amazon EventBridge Pipes which allow you to connect sources (SQS, Kinesis, DDB, Kafka, MQ) to Targets (14+ EventBridge Targets) without any code, with filtering, batching, input transformation, and an optional Enrichment stage (Lambda, StepFunctions, ApiGateway, ApiDestinations)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sfn\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/sfn/CHANGELOG.md#v1160-2022-12-01\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the AWS Step Functions Map state in Distributed mode. The changes include a new MapRun resource and several new and modified APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-30)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/accessanalyzer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/accessanalyzer/CHANGELOG.md#v1180-2022-11-30\"\u003ev1.18.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for S3 cross account access points. IAM Access Analyzer will now produce public or cross account findings when it detects bucket delegation to external account access points.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/athena\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/athena/CHANGELOG.md#v1200-2022-11-30\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release includes support for using Apache Spark in Amazon Athena.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dataexchange\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/dataexchange/CHANGELOG.md#v1170-2022-11-30\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables data providers to license direct access to data in their Amazon S3 buckets or AWS Lake Formation data lakes through AWS Data Exchange. Subscribers get read-only access to the data and can use it in downstream AWS services, like Amazon Athena, without creating or managing copies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/93c3f1871b862d743e0bd2e2e7180246df3a9212\"\u003e\u003ccode\u003e93c3f18\u003c/code\u003e\u003c/a\u003e Release 2022-12-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7254028f8bc89095326d9e3657fdbc98b98cca94\"\u003e\u003ccode\u003e7254028\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f43ad83db1b3da1c2ea37857524148c91189cb4c\"\u003e\u003ccode\u003ef43ad83\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.13.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/77d257ee120e67d45a5de6f0d6478f313a21b92a\"\u003e\u003ccode\u003e77d257e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/779e29ff5a4bcebe1ab7088ab12c4c95ce06f8aa\"\u003e\u003ccode\u003e779e29f\u003c/code\u003e\u003c/a\u003e Release 2022-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f64d7d2b0a0033996b32ba9e1b18e5a923452b84\"\u003e\u003ccode\u003ef64d7d2\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9bc59f75ee4683ca886c3d701b49bb81db2efd4d\"\u003e\u003ccode\u003e9bc59f7\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d9c18aa2bdd4c237a4919452f58e29c20ba484cc\"\u003e\u003ccode\u003ed9c18aa\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0259b169b753daf77ad332c680a9ad1e3f56753d\"\u003e\u003ccode\u003e0259b16\u003c/code\u003e\u003c/a\u003e Release 2022-11-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ee0277f1abad4856afc13ced2bfb90a43dbd9d34\"\u003e\u003ccode\u003eee0277f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.17.70...config/v1.18.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/feature/ec2/imds` from 1.16.32 to 1.18.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2022-11-22)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/appflow/CHANGELOG.md#v1210-2022-11-22\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adding support for Amazon AppFlow to transfer the data to Amazon Redshift databases through Amazon Redshift Data API service. This feature will support the Redshift destination connector on both public and private accessible Amazon Redshift Clusters and Amazon Redshift Serverless.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/kinesisanalyticsv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/kinesisanalyticsv2/CHANGELOG.md#v1150-2022-11-22\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Support for Apache Flink 1.15 in Kinesis Data Analytics.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-21)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/route53\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/route53/CHANGELOG.md#v1250-2022-11-21\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-18.2)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ssmsap\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/ssmsap/CHANGELOG.md#v101-2022-11-182\"\u003ev1.0.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Removes old model file for ssm sap and uses the new model file to regenerate client\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-18)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/appflow/CHANGELOG.md#v1200-2022-11-18\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AppFlow provides a new API called UpdateConnectorRegistration to update a custom connector that customers have previously registered. With this API, customers no longer need to unregister and then register a connector to make an update.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/auditmanager/CHANGELOG.md#v1210-2022-11-18\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a new feature for Audit Manager: Evidence finder. You can now use evidence finder to quickly query your evidence, and add the matching evidence results to an assessment report.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/chimesdkvoice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/chimesdkvoice/CHANGELOG.md#v100-2022-11-18\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See \u003ca href=\"https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html\"\u003ehttps://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html\u003c/a\u003e for more details.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudfront\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/cloudfront/CHANGELOG.md#v1210-2022-11-18\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: CloudFront API support for staging distributions and associated traffic management policies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/connect/CHANGELOG.md#v1380-2022-11-18\"\u003ev1.38.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added AllowedAccessControlTags and TagRestrictedResource for Tag Based Access Control on Amazon Connect Webpage\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dynamodb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/dynamodb/CHANGELOG.md#v1176-2022-11-18\"\u003ev1.17.6\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updated minor fixes for DynamoDB documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dynamodbstreams\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/dynamodbstreams/CHANGELOG.md#v11325-2022-11-18\"\u003ev1.13.25\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updated minor fixes for DynamoDB documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/ec2/CHANGELOG.md#v1720-2022-11-18\"\u003ev1.72.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for copying an Amazon Machine Image's tags when copying an AMI.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/glue/CHANGELOG.md#v1350-2022-11-18\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWSGlue Crawler - Adding support for Table and Column level Comments with database level datatypes for JDBC based crawler.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iotroborunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/iotroborunner/CHANGELOG.md#v100-2022-11-18\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7a32d707aff708a14e7e39927930a1fb2a3bd6f7\"\u003e\u003ccode\u003e7a32d70\u003c/code\u003e\u003c/a\u003e Release 2022-11-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0242bd53d7d653d5af25cb046b4e5cdd9085388d\"\u003e\u003ccode\u003e0242bd5\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/350cc3eb4e1b8bf3e3bd731deb5b43b092d3ac54\"\u003e\u003ccode\u003e350cc3e\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a227ddc7773d739b0cc40d576303d13415c49fbc\"\u003e\u003ccode\u003ea227ddc\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bec5c47e6039349d12ba39e33261630f90dfdd13\"\u003e\u003ccode\u003ebec5c47\u003c/code\u003e\u003c/a\u003e Release 2022-11-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0438d8f026b481eb3217b2d0012b28832ec529d0\"\u003e\u003ccode\u003e0438d8f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1ec853e23add4a10d313e23b08848ace880c1129\"\u003e\u003ccode\u003e1ec853e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b30f43183cc4c83d8ab6bde0c28256999a442c4b\"\u003e\u003ccode\u003eb30f431\u003c/code\u003e\u003c/a\u003e Release 2022-11-18.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4fadedce965266b4132b5f9040ede78897e40edd\"\u003e\u003ccode\u003e4fadedc\u003c/code\u003e\u003c/a\u003e Adding changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14ebfbd6f287d16eb1afdad9e1248bd108e70d56\"\u003e\u003ccode\u003e14ebfbd\u003c/code\u003e\u003c/a\u003e Remove old model files for ssm map.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/feature/ec2/imds/v1.16.32...config/v1.18.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/configsources` from 1.3.36 to 1.4.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/internal/configsources's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-02-20)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.17.5\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: fix int overflow bug on 32 bit architecture\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/auditmanager/CHANGELOG.md#v1240-2023-02-20\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a ServiceQuotaExceededException to the UpdateAssessmentFrameworkShare API operation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/connect/CHANGELOG.md#v1470-2023-02-20\"\u003ev1.47.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Reasons for failed diff has been approved by SDK Reviewer\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-17)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/apprunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/apprunner/CHANGELOG.md#v1170-2023-02-17\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release supports removing MaxSize limit for AutoScalingConfiguration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/glue/CHANGELOG.md#v1430-2023-02-17\"\u003ev1.43.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Release of Delta Lake Data Lake Format for Glue Studio Service\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-16)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/emr\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/emr/CHANGELOG.md#v1230-2023-02-16\"\u003ev1.23.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release provides customers the ability to define a timeout period for procuring capacity during a resize operation for Instance Fleet clusters. Customers can specify this timeout using the ResizeSpecifications parameter supported by RunJobFlow, ModifyInstanceFleet and AddInstanceFleet APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/grafana\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/grafana/CHANGELOG.md#v1120-2023-02-16\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: With this release Amazon Managed Grafana now supports inbound Network Access Control that helps you to restrict user access to your Grafana workspaces\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ivs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/ivs/CHANGELOG.md#v1203-2023-02-16\"\u003ev1.20.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Doc-only update. Updated text description in DeleteChannel, Stream, and StreamSummary.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wafv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/wafv2/CHANGELOG.md#v1251-2023-02-16\"\u003ev1.25.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Added a notice for account takeover prevention (ATP). The interface incorrectly lets you to configure ATP response inspection in regional web ACLs in Region US East (N. Virginia), without returning an error. ATP response inspection is only available in web ACLs that protect CloudFront distributions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-15)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/accessanalyzer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/accessanalyzer/CHANGELOG.md#v1193-2023-02-15\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct error type parsing for restJson services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/account\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/account/CHANGELOG.md#v191-2023-02-15\"\u003ev1.9.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct error type parsing for restJson services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/acm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/acm/CHANGELOG.md#v1173-2023-02-15\"\u003ev1.17.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b1af56e48042111f0c367b639faaf87ba9bd3001\"\u003e\u003ccode\u003eb1af56e\u003c/code\u003e\u003c/a\u003e Release 2023-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4f504d9665de5f649db0b1d8b43da091f01fb6d7\"\u003e\u003ccode\u003e4f504d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c6191ffa5f47a5cacf09880387f69d96963b9a21\"\u003e\u003ccode\u003ec6191ff\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8e6fa271cad1a3e18bd04bacdea8d8dc170115ca\"\u003e\u003ccode\u003e8e6fa27\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2026\"\u003e#2026\u003c/a\u003e from aws/firstissue\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9af2842ca9258238ee5f72d85e5d61b12c4a7737\"\u003e\u003ccode\u003e9af2842\u003c/code\u003e\u003c/a\u003e Don't skip anonymous (embedded) fields with named tags (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2022\"\u003e#2022\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1ca1e1831b92e691f1c1d35204f914740ed1345e\"\u003e\u003ccode\u003e1ca1e18\u003c/code\u003e\u003c/a\u003e add changelog entry\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b19c337948f9867adb6295106bc13474c9ad6f6f\"\u003e\u003ccode\u003eb19c337\u003c/code\u003e\u003c/a\u003e fix int overflow on 32 bit architecture\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/50d82a9979e506d66de709e10c053d576a069ce7\"\u003e\u003ccode\u003e50d82a9\u003c/code\u003e\u003c/a\u003e Release 2023-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/19dc3750fd7698c2aeb98a15b8e3e1be1d4f9e6a\"\u003e\u003ccode\u003e19dc375\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8fe3523a2c614a4fc173910cd044b9826e336ecc\"\u003e\u003ccode\u003e8fe3523\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/internal/ini/v1.3.36...service/m2/v1.4.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/endpoints/v2` from 2.6.36 to 2.7.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/internal/endpoints/v2.6.36...internal/endpoints/v2.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/v4a` from 1.3.36 to 1.4.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/internal/v4a's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-02-20)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.17.5\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: fix int overflow bug on 32 bit architecture\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/auditmanager/CHANGELOG.md#v1240-2023-02-20\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a ServiceQuotaExceededException to the UpdateAssessmentFrameworkShare API operation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/connect/CHANGELOG.md#v1470-2023-02-20\"\u003ev1.47.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Reasons for failed diff has been approved by SDK Reviewer\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-17)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/apprunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/apprunner/CHANGELOG.md#v1170-2023-02-17\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release supports removing MaxSize limit for AutoScalingConfiguration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/glue/CHANGELOG.md#v1430-2023-02-17\"\u003ev1.43.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Release of Delta Lake Data Lake Format for Glue Studio Service\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-16)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/emr\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/emr/CHANGELOG.md#v1230-2023-02-16\"\u003ev1.23.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release provides customers the ability to define a timeout period for procuring capacity during a resize operation for Instance Fleet clusters. Customers can specify this timeout using the ResizeSpecifications parameter supported by RunJobFlow, ModifyInstanceFleet and AddInstanceFleet APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/grafana\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/grafana/CHANGELOG.md#v1120-2023-02-16\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: With this release Amazon Managed Grafana now supports inbound Network Access Control that helps you t...\n\n_Description has been truncated_","html_url":"https://github.com/ScriptonBasestar/proxynd/pull/44","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScriptonBasestar%2Fproxynd/issues/44","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/44/packages"}],"issue_packages":[{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/sveltekit-embed","pr_created_at":"2025-11-20T10:15:34.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646526287","node_id":"PR_kwDODjgJwc60jhVr","number":3679,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /sveltekit-embed","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:07.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:15:34.000Z","updated_at":"2025-11-20T14:20:15.000Z","time_to_close":14673,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/sveltekit-embed","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3679","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3679","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3679/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/socketio","pr_created_at":"2025-11-20T10:14:31.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646521689","node_id":"PR_kwDODjgJwc60jgUp","number":3653,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /socketio","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:32.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:14:31.000Z","updated_at":"2025-11-20T14:21:41.000Z","time_to_close":14821,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/socketio","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3653","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3653","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3653/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/rss-feed","pr_created_at":"2025-11-20T10:13:59.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646518948","node_id":"PR_kwDODjgJwc60jfth","number":3638,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /rss-feed","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:01.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:59.000Z","updated_at":"2025-11-20T14:20:11.000Z","time_to_close":14762,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/rss-feed","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3638","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3638","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3638/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/react-router","pr_created_at":"2025-11-20T10:13:43.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646518097","node_id":"PR_kwDODjgJwc60jfiH","number":3630,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /react-router","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:00.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:43.000Z","updated_at":"2025-11-20T14:20:10.000Z","time_to_close":14777,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/react-router","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3630","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3630","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3630/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/rabbitmq","pr_created_at":"2025-11-20T10:13:35.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646517658","node_id":"PR_kwDODjgJwc60jfcK","number":3625,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /rabbitmq","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:19:59.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:35.000Z","updated_at":"2025-11-20T14:20:09.000Z","time_to_close":14784,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/rabbitmq","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3625","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3625","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3625/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/prefork","pr_created_at":"2025-11-20T10:13:26.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646517167","node_id":"PR_kwDODjgJwc60jfVV","number":3621,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /prefork","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:43.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:13:26.000Z","updated_at":"2025-11-20T14:20:53.000Z","time_to_close":14837,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/prefork","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3621","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3621","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3621/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/oauth2-google","pr_created_at":"2025-11-20T10:12:51.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646514850","node_id":"PR_kwDODjgJwc60je0t","number":3606,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /oauth2-google","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:41.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:12:51.000Z","updated_at":"2025-11-20T14:20:51.000Z","time_to_close":14870,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/oauth2-google","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3606","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3606","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3606/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":"/memgraph","pr_created_at":"2025-11-20T10:11:13.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3646508212","node_id":"PR_kwDODjgJwc60jdYO","number":3571,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /memgraph","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:37.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:11:13.000Z","updated_at":"2025-11-20T14:20:46.000Z","time_to_close":14964,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/memgraph","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3571","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3571","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3571/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/k8s","pr_created_at":"2025-11-20T10:10:01.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646503036","node_id":"PR_kwDODjgJwc60jcSS","number":3560,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /k8s","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:37.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:10:01.000Z","updated_at":"2025-11-20T14:20:47.000Z","time_to_close":15036,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/k8s","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3560","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3560","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3560/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/heroku","pr_created_at":"2025-11-20T10:09:13.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646499376","node_id":"PR_kwDODjgJwc60jbet","number":3538,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /heroku","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:20:33.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:09:13.000Z","updated_at":"2025-11-20T14:20:45.000Z","time_to_close":15080,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/heroku","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3538","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3538","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3538/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":"/firebase-functions","pr_created_at":"2025-11-20T10:07:12.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3646490599","node_id":"PR_kwDODjgJwc60jZl5","number":3489,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /firebase-functions","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:12.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:07:12.000Z","updated_at":"2025-11-20T14:21:21.000Z","time_to_close":15240,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/firebase-functions","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3489","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3489","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3489/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":"/ent-mysql","pr_created_at":"2025-11-20T10:05:35.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3646483337","node_id":"PR_kwDODjgJwc60jYBL","number":3463,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /ent-mysql","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:32.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:35.000Z","updated_at":"2025-11-20T14:21:41.000Z","time_to_close":15357,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/ent-mysql","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3463","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3463","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3463/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":"/dummyjson","pr_created_at":"2025-11-20T10:05:14.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3646482145","node_id":"PR_kwDODjgJwc60jXxD","number":3454,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /dummyjson","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:08.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:14.000Z","updated_at":"2025-11-20T14:21:17.000Z","time_to_close":15354,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/dummyjson","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3454","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3454","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3454/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/docker-mariadb-clean-arch","pr_created_at":"2025-11-20T10:05:01.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646481327","node_id":"PR_kwDODjgJwc60jXmP","number":3447,"state":"closed","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /docker-mariadb-clean-arch","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2025-11-20T14:21:07.000Z","author_association":null,"state_reason":null,"created_at":"2025-11-20T10:05:01.000Z","updated_at":"2025-11-20T14:21:16.000Z","time_to_close":15366,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/docker-mariadb-clean-arch","ecosystem":"go"},"body":"[//]: # (dependabot-start)\n⚠️  **Dependabot is rebasing this PR** ⚠️ \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3447","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3447","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3447/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":"/auth-jwt","pr_created_at":"2025-11-20T10:02:12.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3646469203","node_id":"PR_kwDODjgJwc60jVCf","number":3390,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7 in /auth-jwt","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-11-20T10:02:12.000Z","updated_at":"2025-11-20T10:02:20.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/auth-jwt","ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3390","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3390","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3390/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":"/air","pr_created_at":"2025-11-20T10:01:52.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3646467952","node_id":"PR_kwDODjgJwc60jUx-","number":3381,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.4.4 to 0.4.7 in /air","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-11-20T10:01:52.000Z","updated_at":"2025-11-20T16:00:42.111Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":"/air","ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.4.4 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.4.4\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/gofiber/recipes/pull/3381","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/3381","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3381/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":null,"pr_created_at":"2025-10-18T12:45:43.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3528793494","node_id":"PR_kwDOQE0U7c6ucuix","number":13,"state":"open","title":"chore(deps)(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2025-10-18T12:45:43.000Z","updated_at":"2025-10-18T15:00:42.003Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IlmanNafi11/invento-service/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IlmanNafi11%2Finvento-service/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":null,"pr_created_at":"2025-09-11T03:46:02.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"2817468628","node_id":"PR_kwDOPTF7os6n7yjU","number":242,"state":"open","title":"chore(deps): bump github.com/rivo/uniseg from 0.2.0 to 0.4.7","user":"dependabot[bot]","labels":["dependencies","security","automated"],"assignees":[],"locked":false,"comments_count":0,"pull_request":true,"closed_at":null,"author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-09-11T03:46:02.000Z","updated_at":"2025-09-11T03:46:03.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/rivo/uniseg](https://github.com/rivo/uniseg) from 0.2.0 to 0.4.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/rivo/uniseg/releases\"\u003egithub.com/rivo/uniseg's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eFirst feature-complete release\u003c/h2\u003e\n\u003cp\u003eThis release now contains:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eGrapheme clustering\u003c/li\u003e\n\u003cli\u003eWord boundary detection\u003c/li\u003e\n\u003cli\u003eSentence boundary detection\u003c/li\u003e\n\u003cli\u003eLine breaking / word wrapping\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.2.0...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/rivo/uniseg\u0026package-manager=go_modules\u0026previous-version=0.2.0\u0026new-version=0.4.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thc1006/nephoran-intent-operator/pull/242","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thc1006%2Fnephoran-intent-operator/issues/242","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/242/packages"}},{"old_version":"0.4.4","new_version":"0.4.7","update_type":"patch","path":null,"pr_created_at":"2025-08-18T19:42:19.000Z","version_change":"0.4.4 → 0.4.7","issue":{"uuid":"3331887109","node_id":"PR_kwDONK9gos6kK5P0","number":4,"state":"open","title":"deps(deps): bump the minor-and-patch group with 11 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":"NONE","state_reason":null,"created_at":"2025-08-18T19:42:19.000Z","updated_at":"2025-09-19T03:19:24.181Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): bump","group_name":"minor-and-patch","update_count":11,"packages":[{"name":"github.com/BurntSushi/toml","old_version":"1.3.2","new_version":"1.5.0","repository_url":"https://github.com/BurntSushi/toml"},{"name":"github.com/fatih/color","old_version":"1.16.0","new_version":"1.18.0","repository_url":"https://github.com/fatih/color"},{"name":"github.com/schollz/progressbar/v3","old_version":"3.14.1","new_version":"3.18.0","repository_url":"https://github.com/schollz/progressbar"},{"name":"github.com/spf13/cobra","old_version":"1.8.0","new_version":"1.9.1","repository_url":"https://github.com/spf13/cobra"},{"name":"go.uber.org/zap","old_version":"1.26.0","new_version":"1.27.0","repository_url":"https://github.com/uber-go/zap"},{"name":"github.com/mattn/go-colorable","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/mattn/go-colorable"},{"name":"github.com/rivo/uniseg","old_version":"0.4.4","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"},{"name":"github.com/spf13/pflag","old_version":"1.0.5","new_version":"1.0.6","repository_url":"https://github.com/spf13/pflag"},{"name":"go.uber.org/multierr","old_version":"1.10.0","new_version":"1.11.0","repository_url":"https://github.com/uber-go/multierr"},{"name":"golang.org/x/sys","old_version":"0.15.0","new_version":"0.29.0","repository_url":"https://github.com/golang/sys"},{"name":"golang.org/x/term","old_version":"0.15.0","new_version":"0.28.0","repository_url":"https://github.com/golang/term"}],"path":null,"ecosystem":"go"},"body":"Bumps the minor-and-patch group with 11 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.3.2` | `1.5.0` |\n| [github.com/fatih/color](https://github.com/fatih/color) | `1.16.0` | `1.18.0` |\n| [github.com/schollz/progressbar/v3](https://github.com/schollz/progressbar) | `3.14.1` | `3.18.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.8.0` | `1.9.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.26.0` | `1.27.0` |\n| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |\n| [github.com/rivo/uniseg](https://github.com/rivo/uniseg) | `0.4.4` | `0.4.7` |\n| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.5` | `1.0.6` |\n| [go.uber.org/multierr](https://github.com/uber-go/multierr) | `1.10.0` | `1.11.0` |\n| [golang.org/x/sys](https://github.com/golang/sys) | `0.15.0` | `0.29.0` |\n| [golang.org/x/term](https://github.com/golang/term) | `0.15.0` | `0.28.0` |\n\nUpdates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/BurntSushi/toml/releases\"\u003egithub.com/BurntSushi/toml's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.0\u003c/h2\u003e\n\u003cp\u003eMostly some small bugfixes, with a few small new features:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eAdd Position.Col, to mark the column an error occurred (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/410\"\u003e#410\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003ePrint more detailed errors in the \u003ccode\u003etomlv\u003c/code\u003e CLI.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnsure ParseError.Message is always set (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/411\"\u003e#411\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAllow custom string types as map keys (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/414\"\u003e#414\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eMark meta keys as decoded when using Unmarshaler interface (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/426\"\u003e#426\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix encoding when nested inline table ends with map (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/438\"\u003e#438\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix encoding of several layers of embedded structs (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/430\"\u003e#430\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix ErrorWithPosition panic when there is no newline in the TOML document (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/433\"\u003e#433\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.0\u003c/h2\u003e\n\u003cp\u003eThis version requires Go 1.18\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eAdd toml.Marshal() (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/405\"\u003e#405\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eRequire 2-digit hour (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/320\"\u003e#320\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eWrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/398\"\u003e#398\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eFix inline tables with dotted keys inside inline arrays (e.g. \u003ccode\u003ek=[{a.b=1}]\u003c/code\u003e) (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/400\"\u003e#400\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/d97def528e83313822a9f98946334ffccd542bdf\"\u003e\u003ccode\u003ed97def5\u003c/code\u003e\u003c/a\u003e Update toml-test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/d10101f4fed80a8584aa2346e4701c5f5a184bc5\"\u003e\u003ccode\u003ed10101f\u003c/code\u003e\u003c/a\u003e Correct encoding of comma when nested inline table ends with map\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/75a4f17a6da92eb899b599eafc43a2e7ddd76fc2\"\u003e\u003ccode\u003e75a4f17\u003c/code\u003e\u003c/a\u003e Correct encoding of several layers of embedded structs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/702f5a6d00def72eaea44c3179fa22e050e208f7\"\u003e\u003ccode\u003e702f5a6\u003c/code\u003e\u003c/a\u003e Minor staticcheck fixes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/6f7689d2591e3da5f945ef556af0387f75d7199f\"\u003e\u003ccode\u003e6f7689d\u003c/code\u003e\u003c/a\u003e Mark meta keys as decoded when using Unmarshaler interface (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/426\"\u003e#426\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/8323983708e9282360078a9050deb4ee30a45250\"\u003e\u003ccode\u003e8323983\u003c/code\u003e\u003c/a\u003e Remove exception for fuzzer\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/4664468d6eafff56a043a217a8981cc72e901122\"\u003e\u003ccode\u003e4664468\u003c/code\u003e\u003c/a\u003e Fix ErrorWithPosition panic when less than two lines\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/211c91562a6926d7bf0dcb18a952d58140836837\"\u003e\u003ccode\u003e211c915\u003c/code\u003e\u003c/a\u003e Fix typos in comments, tests, error message (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/432\"\u003e#432\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/c141a29159dcbb855f8ad4c8c20eb49453480edc\"\u003e\u003ccode\u003ec141a29\u003c/code\u003e\u003c/a\u003e Test with Go 1.24 in CI\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/BurntSushi/toml/commit/2918ee74bb664c418ae9b2d6ba356c2ca6c24506\"\u003e\u003ccode\u003e2918ee7\u003c/code\u003e\u003c/a\u003e Fix metadata: do not reuse result of append (\u003ca href=\"https://redirect.github.com/BurntSushi/toml/issues/418\"\u003e#418\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/BurntSushi/toml/compare/v1.3.2...v1.5.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/fatih/color` from 1.16.0 to 1.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/fatih/color/releases\"\u003egithub.com/fatih/color's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RGB API support by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/225\"\u003efatih/color#225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump GitHub workflow actions by \u003ca href=\"https://github.com/deining\"\u003e\u003ccode\u003e@​deining\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/235\"\u003efatih/color#235\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.18.0 to 0.24.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/236\"\u003efatih/color#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.24.0 to 0.25.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/237\"\u003efatih/color#237\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/deining\"\u003e\u003ccode\u003e@​deining\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/235\"\u003efatih/color#235\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.17.0...v1.18.0\"\u003ehttps://github.com/fatih/color/compare/v1.17.0...v1.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix multi-parameter println spacing by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/228\"\u003efatih/color#228\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci: update Go and Staticcheck versions by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/222\"\u003efatih/color#222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.14.0 to 0.17.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/221\"\u003efatih/color#221\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/217\"\u003efatih/color#217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.17.0 to 0.18.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/224\"\u003efatih/color#224\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/228\"\u003efatih/color#228\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.16.0...v1.17.0\"\u003ehttps://github.com/fatih/color/compare/v1.16.0...v1.17.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/1c8d8706604ee5fb9a464e5097ba113101828a75\"\u003e\u003ccode\u003e1c8d870\u003c/code\u003e\u003c/a\u003e Update README.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/546c2d0f9aa4e97dab39a1ed273fd0aa08765972\"\u003e\u003ccode\u003e546c2d0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/225\"\u003e#225\u003c/a\u003e from fatih/add-rgb-api\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/1ff0f9790840e92e289b824302f71b465c426735\"\u003e\u003ccode\u003e1ff0f97\u003c/code\u003e\u003c/a\u003e Apply suggestions from code review\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/5723903daae15b72846d40cf1483c37a1b86ba79\"\u003e\u003ccode\u003e5723903\u003c/code\u003e\u003c/a\u003e Add RGB API support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/f203fbcecbc160dace4ffcec613221379365c67a\"\u003e\u003ccode\u003ef203fbc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/237\"\u003e#237\u003c/a\u003e from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/60aa7fb483e2b048970dec3925d6c298ea428c4e\"\u003e\u003ccode\u003e60aa7fb\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sys from 0.24.0 to 0.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/741c2f4087173b24f4cb47ad02d93600b0d5c947\"\u003e\u003ccode\u003e741c2f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/236\"\u003e#236\u003c/a\u003e from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/0d24b42a27f768598c311ac3ec1961003418a90a\"\u003e\u003ccode\u003e0d24b42\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sys from 0.18.0 to 0.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/cb154c021886f50c313e686422c7baecff8c0b7f\"\u003e\u003ccode\u003ecb154c0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/235\"\u003e#235\u003c/a\u003e from deining/fix-typo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/9b9653e8ce3e644130b0412b9236c1d3e07a5017\"\u003e\u003ccode\u003e9b9653e\u003c/code\u003e\u003c/a\u003e Bump GitHub workflow actions\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/fatih/color/compare/v1.16.0...v1.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/schollz/progressbar/v3` from 3.14.1 to 3.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/schollz/progressbar/releases\"\u003egithub.com/schollz/progressbar/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd AddMax by \u003ca href=\"https://github.com/kevin-hanselman\"\u003e\u003ccode\u003e@​kevin-hanselman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/209\"\u003eschollz/progressbar#209\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add an HTTP server to enable users to monitor status updates via status bars or other UI components. by \u003ca href=\"https://github.com/cmsax\"\u003e\u003ccode\u003e@​cmsax\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/210\"\u003eschollz/progressbar#210\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kevin-hanselman\"\u003e\u003ccode\u003e@​kevin-hanselman\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/209\"\u003eschollz/progressbar#209\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cmsax\"\u003e\u003ccode\u003e@​cmsax\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/210\"\u003eschollz/progressbar#210\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.17.1...v3.18.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.17.1...v3.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.17.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: set length to unknown if set to -1 by \u003ca href=\"https://github.com/MegaRedHand\"\u003e\u003ccode\u003e@​MegaRedHand\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/207\"\u003eschollz/progressbar#207\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MegaRedHand\"\u003e\u003ccode\u003e@​MegaRedHand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/207\"\u003eschollz/progressbar#207\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.17.0...v3.17.1\"\u003ehttps://github.com/schollz/progressbar/compare/v3.17.0...v3.17.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/138\"\u003e#138\u003c/a\u003e: Add OptionShowTotal by \u003ca href=\"https://github.com/mcamou\"\u003e\u003ccode\u003e@​mcamou\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/205\"\u003eschollz/progressbar#205\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mcamou\"\u003e\u003ccode\u003e@​mcamou\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/205\"\u003eschollz/progressbar#205\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.16.1...v3.17.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.16.1...v3.17.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.16.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: enable race detector for test and fix all detected races by \u003ca href=\"https://github.com/mxey\"\u003e\u003ccode\u003e@​mxey\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/202\"\u003eschollz/progressbar#202\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estyle: go mod tidy by \u003ca href=\"https://github.com/mxey\"\u003e\u003ccode\u003e@​mxey\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/201\"\u003eschollz/progressbar#201\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdded BarStartFilled and BarEndFille to Theme struct \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/203\"\u003e#203\u003c/a\u003e by \u003ca href=\"https://github.com/janpfeifer\"\u003e\u003ccode\u003e@​janpfeifer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/204\"\u003eschollz/progressbar#204\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.16.0...v3.16.1\"\u003ehttps://github.com/schollz/progressbar/compare/v3.16.0...v3.16.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.16.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: make progressbar could update according to an interval or updat… by \u003ca href=\"https://github.com/chengxilo\"\u003e\u003ccode\u003e@​chengxilo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/199\"\u003eschollz/progressbar#199\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.15.0...v3.16.0\"\u003ehttps://github.com/schollz/progressbar/compare/v3.15.0...v3.16.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.15.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003enew: feature scrolling detail by \u003ca href=\"https://github.com/luo-cheng-xi\"\u003e\u003ccode\u003e@​luo-cheng-xi\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/194\"\u003eschollz/progressbar#194\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: Acquire lock when printing text to fix race condition by \u003ca href=\"https://github.com/gabe565\"\u003e\u003ccode\u003e@​gabe565\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/198\"\u003eschollz/progressbar#198\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: change some attribute about time to time.Time{} by \u003ca href=\"https://github.com/luo-cheng-xi\"\u003e\u003ccode\u003e@​luo-cheng-xi\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/schollz/progressbar/pull/196\"\u003eschollz/progressbar#196\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/6e18d116cbbd03ba110df9693bf0dc07768ba5d0\"\u003e\u003ccode\u003e6e18d11\u003c/code\u003e\u003c/a\u003e chore: update dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/d88592dbbc8086249e8cd126c1ab16321727db5a\"\u003e\u003ccode\u003ed88592d\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/210\"\u003e#210\u003c/a\u003e from cmsax/main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/d4ec0797ecbb3c643684b021196e613cdba85d02\"\u003e\u003ccode\u003ed4ec079\u003c/code\u003e\u003c/a\u003e chore\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/3342791adeb859ec1d3a9e37caf3baaaf6ea5f76\"\u003e\u003ccode\u003e3342791\u003c/code\u003e\u003c/a\u003e feat: add http server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/77ce0b90ba6fed55969cc2367153ccee54b6a858\"\u003e\u003ccode\u003e77ce0b9\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/209\"\u003e#209\u003c/a\u003e from kevin-hanselman/add_max\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/f5093f1cf077f5f41cb8911abfa4722bf44dc158\"\u003e\u003ccode\u003ef5093f1\u003c/code\u003e\u003c/a\u003e fix test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/920dfd7e6204a64930841e4e09a7208f2ebdc9b1\"\u003e\u003ccode\u003e920dfd7\u003c/code\u003e\u003c/a\u003e add AddMax\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/23e1221fe77b89b2dc1e802a39347e207bc9d422\"\u003e\u003ccode\u003e23e1221\u003c/code\u003e\u003c/a\u003e update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/da94fe0b167aa6982bba1ddc8bc6ff8075c35841\"\u003e\u003ccode\u003eda94fe0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/schollz/progressbar/issues/207\"\u003e#207\u003c/a\u003e from MegaRedHand/fix/change-max-unknown\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/schollz/progressbar/commit/91518511a79ad2f2d227baba7d45a68acb19a9af\"\u003e\u003ccode\u003e9151851\u003c/code\u003e\u003c/a\u003e fix: set length to unknown if set to -1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/schollz/progressbar/compare/v3.14.1...v3.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/spf13/cobra` from 1.8.0 to 1.9.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/spf13/cobra/releases\"\u003egithub.com/spf13/cobra's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.9.1\u003c/h2\u003e\n\u003ch3\u003e🐛 Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix CompletionFunc implementation by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2234\"\u003espf13/cobra#2234\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRevert \u0026quot;Make detection for test-binary more universal (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2173\"\u003e#2173\u003c/a\u003e)\u0026quot; by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2235\"\u003espf13/cobra#2235\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/spf13/cobra/compare/v1.9.0...v1.9.1\"\u003ehttps://github.com/spf13/cobra/compare/v1.9.0...v1.9.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.9.0\u003c/h2\u003e\n\u003ch2\u003e✨ Features\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow linker to perform deadcode elimination for program using Cobra by \u003ca href=\"https://github.com/aarzilli\"\u003e\u003ccode\u003e@​aarzilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1956\"\u003espf13/cobra#1956\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd default completion command even if there are no other sub-commands by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1559\"\u003espf13/cobra#1559\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd CompletionWithDesc helper by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2231\"\u003espf13/cobra#2231\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🐛 Fixes\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix deprecation comment for Command.SetOutput by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2172\"\u003espf13/cobra#2172\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated ioutil usage by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2181\"\u003espf13/cobra#2181\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix --version help and output for plugins by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2180\"\u003espf13/cobra#2180\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAllow to reset the templates to the default by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2229\"\u003espf13/cobra#2229\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🤖 Completions\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMake Powershell completion work in constrained mode by \u003ca href=\"https://github.com/lstemplinger\"\u003e\u003ccode\u003e@​lstemplinger\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2196\"\u003espf13/cobra#2196\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove detection for flags that accept multiple values by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2210\"\u003espf13/cobra#2210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd CompletionFunc type to help with completions by \u003ca href=\"https://github.com/ccoVeille\"\u003e\u003ccode\u003e@​ccoVeille\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2220\"\u003espf13/cobra#2220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd similar whitespace escape logic to bash v2 completions than in other completions by \u003ca href=\"https://github.com/kangasta\"\u003e\u003ccode\u003e@​kangasta\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/1743\"\u003espf13/cobra#1743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrint ActiveHelp for bash along other completions by \u003ca href=\"https://github.com/marckhouzam\"\u003e\u003ccode\u003e@​marckhouzam\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2076\"\u003espf13/cobra#2076\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(completions): Complete map flags multiple times by \u003ca href=\"https://github.com/gabe565\"\u003e\u003ccode\u003e@​gabe565\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2174\"\u003espf13/cobra#2174\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(bash): nounset unbound file filter variable on empty extension by \u003ca href=\"https://github.com/scop\"\u003e\u003ccode\u003e@​scop\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2228\"\u003espf13/cobra#2228\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🧪 Testing\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTest also with go 1.23 by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2182\"\u003espf13/cobra#2182\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMake detection for test-binary more universal by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2173\"\u003espf13/cobra#2173\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e✍🏼 Documentation\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocs: update README.md by \u003ca href=\"https://github.com/eltociear\"\u003e\u003ccode\u003e@​eltociear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2197\"\u003espf13/cobra#2197\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove site formatting by \u003ca href=\"https://github.com/nirs\"\u003e\u003ccode\u003e@​nirs\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2183\"\u003espf13/cobra#2183\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edoc: add Conduit by \u003ca href=\"https://github.com/raulb\"\u003e\u003ccode\u003e@​raulb\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2230\"\u003espf13/cobra#2230\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edoc: azion project added to the list of CLIs that use cobra by \u003ca href=\"https://github.com/maxwelbm\"\u003e\u003ccode\u003e@​maxwelbm\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2198\"\u003espf13/cobra#2198\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix broken links in active_help.md by \u003ca href=\"https://github.com/vuil\"\u003e\u003ccode\u003e@​vuil\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2202\"\u003espf13/cobra#2202\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: fix function name in comment by \u003ca href=\"https://github.com/zhuhaicity\"\u003e\u003ccode\u003e@​zhuhaicity\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2216\"\u003espf13/cobra#2216\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e🔧 Dependency upgrades\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ebuild(deps): bump github.com/cpuguy83/go-md2man/v2 from 2.0.5 to 2.0.6 by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2206\"\u003espf13/cobra#2206\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate to latest go-md2man by \u003ca href=\"https://github.com/mikelolasagasti\"\u003e\u003ccode\u003e@​mikelolasagasti\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/cobra/pull/2201\"\u003espf13/cobra#2201\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/40b5bc1437a564fc795d388b23835e84f54cd1d1\"\u003e\u003ccode\u003e40b5bc1\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;Make detection for test-binary more universal (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2173\"\u003e#2173\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2235\"\u003e#2235\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/a97f9fd47b290016526c8af2dac0531fea5cd773\"\u003e\u003ccode\u003ea97f9fd\u003c/code\u003e\u003c/a\u003e fix CompletionFunc implementation (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2234\"\u003e#2234\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/5f9c40898e795a9fb0fd5ca83b6e05c3720523d1\"\u003e\u003ccode\u003e5f9c408\u003c/code\u003e\u003c/a\u003e chore: Upgrade dependencies for v1.9.0 (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2233\"\u003e#2233\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/24ada7fe71e3a3a8741dd52e0a7fc3b97450535a\"\u003e\u003ccode\u003e24ada7f\u003c/code\u003e\u003c/a\u003e Remove the default \u0026quot;completion\u0026quot; cmd if it is alone (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/1559\"\u003e#1559\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/680936a2200be363c61feda8cd29287f0726a48c\"\u003e\u003ccode\u003e680936a\u003c/code\u003e\u003c/a\u003e New logo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/8cb30f9ca53a004a6fe88c5cfcc79ac7b24fc638\"\u003e\u003ccode\u003e8cb30f9\u003c/code\u003e\u003c/a\u003e feat: add CompletionWithDesc helper (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2231\"\u003e#2231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/17b6dca2ffaf6113cbd1cf433ec988fa7d63c6f3\"\u003e\u003ccode\u003e17b6dca\u003c/code\u003e\u003c/a\u003e doc: add Conduit (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2230\"\u003e#2230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/ab5cadcc1bbe224b329726fc5f8b99d6f93e9805\"\u003e\u003ccode\u003eab5cadc\u003c/code\u003e\u003c/a\u003e Allow to reset the templates to the default (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2229\"\u003e#2229\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/4ba5566f5704a9c0d205e1ef3efc4896156d33fa\"\u003e\u003ccode\u003e4ba5566\u003c/code\u003e\u003c/a\u003e fix(bash): nounset unbound file filter variable on empty extension (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2228\"\u003e#2228\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/cobra/commit/41b26ec8bb59dfba580f722201bf371c4f5703dd\"\u003e\u003ccode\u003e41b26ec\u003c/code\u003e\u003c/a\u003e Print ActiveHelp for bash along other completions (\u003ca href=\"https://redirect.github.com/spf13/cobra/issues/2076\"\u003e#2076\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/spf13/cobra/compare/v1.8.0...v1.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `go.uber.org/zap` from 1.26.0 to 1.27.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/zap/releases\"\u003ego.uber.org/zap's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.27.0\u003c/h2\u003e\n\u003cp\u003eEnhancements:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e[]: Add \u003ccode\u003eWithLazy\u003c/code\u003e method for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e[]: zaptest: Add \u003ccode\u003eNewTestingWriter\u003c/code\u003e for customizing TestingWriter with more flexibility than \u003ccode\u003eNewLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e[]: Add \u003ccode\u003eLog\u003c/code\u003e, \u003ccode\u003eLogw\u003c/code\u003e, \u003ccode\u003eLogln\u003c/code\u003e methods for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e[]: Add \u003ccode\u003eWithPanicHook\u003c/code\u003e option for testing panic logs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/defval\"\u003e\u003ccode\u003e@​defval\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/dimmo\"\u003e\u003ccode\u003e@​dimmo\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/arxeiss\"\u003e\u003ccode\u003e@​arxeiss\u003c/code\u003e\u003c/a\u003e, and \u003ca href=\"https://github.com/MKrupauskas\"\u003e\u003ccode\u003e@​MKrupauskas\u003c/code\u003e\u003c/a\u003e for their contributions to this release.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1378\"\u003euber-go/zap#1378\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1399\"\u003euber-go/zap#1399\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1406\"\u003euber-go/zap#1406\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1416\"\u003euber-go/zap#1416\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/zap/blob/master/CHANGELOG.md\"\u003ego.uber.org/zap's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.27.0 (20 Feb 2024)\u003c/h2\u003e\n\u003cp\u003eEnhancements:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e[]: Add \u003ccode\u003eWithLazy\u003c/code\u003e method for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e[]: zaptest: Add \u003ccode\u003eNewTestingWriter\u003c/code\u003e for customizing TestingWriter with more flexibility than \u003ccode\u003eNewLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e[]: Add \u003ccode\u003eLog\u003c/code\u003e, \u003ccode\u003eLogw\u003c/code\u003e, \u003ccode\u003eLogln\u003c/code\u003e methods for \u003ccode\u003eSugaredLogger\u003c/code\u003e.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e[]: Add \u003ccode\u003eWithPanicHook\u003c/code\u003e option for testing panic logs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/defval\"\u003e\u003ccode\u003e@​defval\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/dimmo\"\u003e\u003ccode\u003e@​dimmo\u003c/code\u003e\u003c/a\u003e, \u003ca href=\"https://github.com/arxeiss\"\u003e\u003ccode\u003e@​arxeiss\u003c/code\u003e\u003c/a\u003e, and \u003ca href=\"https://github.com/MKrupauskas\"\u003e\u003ccode\u003e@​MKrupauskas\u003c/code\u003e\u003c/a\u003e for their contributions to this release.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1378\"\u003e#1378\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1378\"\u003euber-go/zap#1378\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1399\"\u003euber-go/zap#1399\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1406\"\u003euber-go/zap#1406\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/uber-go/zap/pull/1416\"\u003euber-go/zap#1416\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/fcf8ee58669e358bbd6460bef5c2ee7a53c0803a\"\u003e\u003ccode\u003efcf8ee5\u003c/code\u003e\u003c/a\u003e Release v1.27.0 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1419\"\u003e#1419\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/e5a56ee593d51f611de3a73cf3140f1c1927d68e\"\u003e\u003ccode\u003ee5a56ee\u003c/code\u003e\u003c/a\u003e Add WithPanicHook logger option for panic log tests (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1416\"\u003e#1416\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/0e2aa4e0412dfb49d87f9ec96b47c8296189cfa3\"\u003e\u003ccode\u003e0e2aa4e\u003c/code\u003e\u003c/a\u003e assets: Fix logo color profile (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1418\"\u003e#1418\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/956a21c19cf77ea7a78f9f08ca44b6f77f95053a\"\u003e\u003ccode\u003e956a21c\u003c/code\u003e\u003c/a\u003e Add methods for logging with level as argument (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1406\"\u003e#1406\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/2a893f61347ef844d78dcb4ad3b454ee11ae7641\"\u003e\u003ccode\u003e2a893f6\u003c/code\u003e\u003c/a\u003e build(deps): bump golangci/golangci-lint-action from 3 to 4 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/e5745d6095ecc2497281569e8713835f2c4a029f\"\u003e\u003ccode\u003ee5745d6\u003c/code\u003e\u003c/a\u003e ci: Test with Go 1.22 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1409\"\u003e#1409\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/7db06bc9b095571d3dc3d4eebdfbe4dd9bd20405\"\u003e\u003ccode\u003e7db06bc\u003c/code\u003e\u003c/a\u003e zapslog: rename Option to HandlerOption (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1411\"\u003e#1411\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/35ded09102db8ce0b2eba3e87f54ba6ce14f2359\"\u003e\u003ccode\u003e35ded09\u003c/code\u003e\u003c/a\u003e zapslog: fix all with slogtest, support inline group, ignore empty group. (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/27b96e378909082d0bf2f0c5802a9f648150fe98\"\u003e\u003ccode\u003e27b96e3\u003c/code\u003e\u003c/a\u003e Make zaptest.NewTestingWriter public (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1399\"\u003e#1399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/zap/commit/70f61bb342203a50f8192b05f7faf40a0f809a91\"\u003e\u003ccode\u003e70f61bb\u003c/code\u003e\u003c/a\u003e zapslog: Bump zap from v1.24.0 to v1.26.0 (\u003ca href=\"https://redirect.github.com/uber-go/zap/issues/1404\"\u003e#1404\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/uber-go/zap/compare/v1.26.0...v1.27.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/1f71342c1ee78c126bcb69cd26ed8c2be7e016b3\"\u003e\u003ccode\u003e1f71342\u003c/code\u003e\u003c/a\u003e update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/4503567acadfc8967131e7708f241b77589eb28b\"\u003e\u003ccode\u003e4503567\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/73\"\u003e#73\u003c/a\u003e from whereswaldon/patch-1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/40e70a5010a4844b4c1030a31cebdd52b2e96589\"\u003e\u003ccode\u003e40e70a5\u003c/code\u003e\u003c/a\u003e [Windows] harden system DLL loading\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/603fb50de6b0dcd39ea6d96d9dad3477465519a4\"\u003e\u003ccode\u003e603fb50\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/71\"\u003e#71\u003c/a\u003e from hymkor/fork-20241118\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/664d917a3c0d89f11f7ded4642562bddb926a2b9\"\u003e\u003ccode\u003e664d917\u003c/code\u003e\u003c/a\u003e Fix: ESC[E and ESC[F with no arguments did not move the cursor on the legacy ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/2b733b5d5ca7f3959b874da32dd775822a35a1a2\"\u003e\u003ccode\u003e2b733b5\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/69\"\u003e#69\u003c/a\u003e from dolmen-go/merge-appengine-into-others\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/9473000136fc36f73d0784b0bc040888509a1fca\"\u003e\u003ccode\u003e9473000\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/68\"\u003e#68\u003c/a\u003e from dolmen-go/do-not-expose-Windows-Writer\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/3cc8472a2a21fcdd78c18d6a718d3b0bec3f789f\"\u003e\u003ccode\u003e3cc8472\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/mattn/go-colorable/issues/67\"\u003e#67\u003c/a\u003e from dolmen-go/ci-go1.20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/d9a68d594368e217e6261d4d830d0d64183466d6\"\u003e\u003ccode\u003ed9a68d5\u003c/code\u003e\u003c/a\u003e Merge colorable_appengine.go into colorable_others.go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mattn/go-colorable/commit/8e4a944b81b5e985b5a66e8e614c1755d1269747\"\u003e\u003ccode\u003e8e4a944\u003c/code\u003e\u003c/a\u003e Windows: do not export Writer\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/mattn/go-colorable/compare/v0.1.13...v0.1.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/rivo/uniseg` from 0.4.4 to 0.4.7\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/03509a98a092b522b2ff0de13e53513d18b3b837\"\u003e\u003ccode\u003e03509a9\u003c/code\u003e\u003c/a\u003e Fixed wrong width calculation for variation selectors combined with regular c...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/601bbb3750c2ab13fb449eaf6f97cab4036b5043\"\u003e\u003ccode\u003e601bbb3\u003c/code\u003e\u003c/a\u003e Clarified some performance statements.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/f302f7fdc43bf9489093294e5476b16b60b97517\"\u003e\u003ccode\u003ef302f7f\u003c/code\u003e\u003c/a\u003e Clarifications and improvements in the package documentation.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/0b9a92418f4b39f85888e0704118fed7c2d36fe9\"\u003e\u003ccode\u003e0b9a924\u003c/code\u003e\u003c/a\u003e Improved performance by using switch statements instead of maps for state tra...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/e258aa188603c0cba9bfc410088a8d754557aa5e\"\u003e\u003ccode\u003ee258aa1\u003c/code\u003e\u003c/a\u003e Switched from transition map to switch statement to improve performance.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/b74d4dcb2a8c8cb4cef9040f1960f556ca7d80a2\"\u003e\u003ccode\u003eb74d4dc\u003c/code\u003e\u003c/a\u003e Some performance improvements by fast-tracking property search on ASCII chara...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/97691fc6a37d466307f1fb8de27b7dc71be28a1c\"\u003e\u003ccode\u003e97691fc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/47\"\u003e#47\u003c/a\u003e from junegunn/eastasian-ambiguous\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/1f39ebcfad85753ef4c543645bbd6235ea2672f9\"\u003e\u003ccode\u003e1f39ebc\u003c/code\u003e\u003c/a\u003e Add comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/272e3f06671f1e84c92b501e371feb57283d88a4\"\u003e\u003ccode\u003e272e3f0\u003c/code\u003e\u003c/a\u003e Allow configuring the width of East Asian ambiguous width characters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rivo/uniseg/commit/3628fa14e3cd43899a3277293c4049e42511b597\"\u003e\u003ccode\u003e3628fa1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/rivo/uniseg/issues/42\"\u003e#42\u003c/a\u003e from meowgorithm/unicode-v15.0.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/rivo/uniseg/compare/v0.4.4...v0.4.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/spf13/pflag` from 1.0.5 to 1.0.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/spf13/pflag/releases\"\u003egithub.com/spf13/pflag's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd exported functions to preserve \u003ccode\u003epkg/flag\u003c/code\u003e compatibility by \u003ca href=\"https://github.com/mckern\"\u003e\u003ccode\u003e@​mckern\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/220\"\u003espf13/pflag#220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremove dead code for checking error nil by \u003ca href=\"https://github.com/yashbhutwala\"\u003e\u003ccode\u003e@​yashbhutwala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/282\"\u003espf13/pflag#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd IPNetSlice and unit tests by \u003ca href=\"https://github.com/rpothier\"\u003e\u003ccode\u003e@​rpothier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/170\"\u003espf13/pflag#170\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eallow for blank ip addresses by \u003ca href=\"https://github.com/duhruh\"\u003e\u003ccode\u003e@​duhruh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/316\"\u003espf13/pflag#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd github actions by \u003ca href=\"https://github.com/sagikazarmark\"\u003e\u003ccode\u003e@​sagikazarmark\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/419\"\u003espf13/pflag#419\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/mckern\"\u003e\u003ccode\u003e@​mckern\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/220\"\u003espf13/pflag#220\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/yashbhutwala\"\u003e\u003ccode\u003e@​yashbhutwala\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/282\"\u003espf13/pflag#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpothier\"\u003e\u003ccode\u003e@​rpothier\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/170\"\u003espf13/pflag#170\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/duhruh\"\u003e\u003ccode\u003e@​duhruh\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/316\"\u003espf13/pflag#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sagikazarmark\"\u003e\u003ccode\u003e@​sagikazarmark\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/spf13/pflag/pull/419\"\u003espf13/pflag#419\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\"\u003ehttps://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/5ca813443bd2a4d9f46a253ea0407d23b3790713\"\u003e\u003ccode\u003e5ca8134\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/spf13/pflag/issues/419\"\u003e#419\u003c/a\u003e from spf13/ci\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/100ab0eb250792014fc1594d94f7fb5c5f0dee37\"\u003e\u003ccode\u003e100ab0e\u003c/code\u003e\u003c/a\u003e disable unsupported dependency graph for now\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/a0f4ddd9fe01ac8fece07be6e3f3ae5dcd7ceec0\"\u003e\u003ccode\u003ea0f4ddd\u003c/code\u003e\u003c/a\u003e fix govet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/f48cbd1964b57ff7c17e2f233feb49c03efe6417\"\u003e\u003ccode\u003ef48cbd1\u003c/code\u003e\u003c/a\u003e add github actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/d5e0c0615acee7028e1e2740a11102313be88de1\"\u003e\u003ccode\u003ed5e0c06\u003c/code\u003e\u003c/a\u003e allow for blank ip addresses (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/316\"\u003e#316\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/85dd5c8bc61cfa382fecd072378089d4e856579d\"\u003e\u003ccode\u003e85dd5c8\u003c/code\u003e\u003c/a\u003e Add IPNetSlice and unit tests (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/170\"\u003e#170\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/6971c29c4a22981adeaee7f4b437c0cffe08c031\"\u003e\u003ccode\u003e6971c29\u003c/code\u003e\u003c/a\u003e remove dead code for checking error nil (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/spf13/pflag/commit/81378bbcd8a1005f72b1e8d7579e5dd7b2d612ab\"\u003e\u003ccode\u003e81378bb\u003c/code\u003e\u003c/a\u003e Add exported functions to preserve \u003ccode\u003epkg/flag\u003c/code\u003e compatibility (\u003ca href=\"https://redirect.github.com/spf13/pflag/issues/220\"\u003e#220\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/spf13/pflag/compare/v1.0.5...v1.0.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `go.uber.org/multierr` from 1.10.0 to 1.11.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/multierr/releases\"\u003ego.uber.org/multierr's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eErrors now supports any error that implements multiple-error interface.\u003c/li\u003e\n\u003cli\u003eAdd Every function to allow checking if all errors in the chain satisfies errors.Is against the target error.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/uber-go/multierr/blob/master/CHANGELOG.md\"\u003ego.uber.org/multierr's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003ev1.11.0 (2023-03-28)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eErrors\u003c/code\u003e now supports any error that implements multiple-error\ninterface.\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eEvery\u003c/code\u003e function to allow checking if all errors in the chain\nsatisfies \u003ccode\u003eerrors.Is\u003c/code\u003e against the target error.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/de75ae527b39a27afcb50a84427ec7b84021d5f4\"\u003e\u003ccode\u003ede75ae5\u003c/code\u003e\u003c/a\u003e Release v1.11.0 (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/79\"\u003e#79\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/d8067ab0035d5e0ece3cef8cce2c69fd92ce97ad\"\u003e\u003ccode\u003ed8067ab\u003c/code\u003e\u003c/a\u003e Support multierr.Every (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/78\"\u003e#78\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/d42b7a1b108badf09e0227b40dedc2f25848be19\"\u003e\u003ccode\u003ed42b7a1\u003c/code\u003e\u003c/a\u003e ci: Minimize permissions to workflows (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/uber-go/multierr/commit/faff69d9f00cd325d6d0181e7495a70c5f31994f\"\u003e\u003ccode\u003efaff69d\u003c/code\u003e\u003c/a\u003e Enable Errors support for any multi-error (\u003ca href=\"https://redirect.github.com/uber-go/multierr/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/uber-go/multierr/compare/v1.10.0...v1.11.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sys` from 0.15.0 to 0.29.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d4ac05dc8c4c953ec29cae3df56c0833f4010763\"\u003e\u003ccode\u003ed4ac05d\u003c/code\u003e\u003c/a\u003e windows: update NewLazyDLL, LoadDLL docs to point to NewLazySystemDLL\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/680bd24a5f379f8bd7b015f25e94865905dd8b34\"\u003e\u003ccode\u003e680bd24\u003c/code\u003e\u003c/a\u003e windows: remove unused errString type\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/a7f19e9c2041d17119bde681964de7f560cf41c0\"\u003e\u003ccode\u003ea7f19e9\u003c/code\u003e\u003c/a\u003e unix: add Dup3 on dragonfly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/fe16172d1123f5350a8c5585395465de6866de4c\"\u003e\u003ccode\u003efe16172\u003c/code\u003e\u003c/a\u003e unix: define IfMsghdr2, IfData64, and RtMsghdr2 on darwin\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/0a57dbcf35b2b0a3288884251b763684d3748e39\"\u003e\u003ccode\u003e0a57dbc\u003c/code\u003e\u003c/a\u003e unix: update to kernel Linux 6.12\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/3cf1e67d0c949e8e6da575b9a2ff8b09ac17d9c1\"\u003e\u003ccode\u003e3cf1e67\u003c/code\u003e\u003c/a\u003e unix: don't fail TestPpoll on EINTR\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d2cea7095ffebfecd082483022e0e13400ecf0d8\"\u003e\u003ccode\u003ed2cea70\u003c/code\u003e\u003c/a\u003e windows: add functions to get named pipe process IDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/a13946c675ce76b00da8b04680749446c36d55a5\"\u003e\u003ccode\u003ea13946c\u003c/code\u003e\u003c/a\u003e windows: regenerate zsyscall_windows.go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/e0753d46944376af67385bb4c7c419d13967bcd9\"\u003e\u003ccode\u003ee0753d4\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/c29efe38de3592b9ec11d314613d7a63126cddbf\"\u003e\u003ccode\u003ec29efe3\u003c/code\u003e\u003c/a\u003e windows: add iphlpapi functions for change notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/sys/compare/v0.15.0...v0.29.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.15.0 to 0.28.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/40b02d69cd8f2efc8aeb262071f74fb4319b6661\"\u003e\u003ccode\u003e40b02d6\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/442846aa8d80ebae61e0c2c58e041b92b9b33dc4\"\u003e\u003ccode\u003e442846a\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/b725e362a8129d135cfc48159c4c4117f2cdc3b6\"\u003e\u003ccode\u003eb725e36\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/54df7da90da86330bfdf9c8d1b1f0711d906e64f\"\u003e\u003ccode\u003e54df7da\u003c/code\u003e\u003c/a\u003e README: don't recommend go get\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/9d5441ab55ca2ec4afd8611a45a4bb5c5a957d32\"\u003e\u003ccode\u003e9d5441a\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/2f7b0dd7437f43f64ee482c4f85280a4ddad94ed\"\u003e\u003ccode\u003e2f7b0dd\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/f867b7695b98cb86bbc9568bc1b5a0d015fffbd4\"\u003e\u003ccode\u003ef867b76\u003c/code\u003e\u003c/a\u003e x/term: set missing VIRTUAL_TERMINAL_INPUT flag on Windows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/d59895469ac1327e92a3ee0ecb6dd868315fcd74\"\u003e\u003ccode\u003ed598954\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/d4346f0be292b658f9757739afbafc1882d1b78c\"\u003e\u003ccode\u003ed4346f0\u003c/code\u003e\u003c/a\u003e LICENSE: update per Google Legal\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/c976cb1d70cf59933953bec8a47c867e343c9eac\"\u003e\u003ccode\u003ec976cb1\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/term/compare/v0.15.0...v0.28.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/dacrab/craftops/pull/4","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/dacrab%2Fcraftops/issues/4","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4/packages"}},{"old_version":"0.2.0","new_version":"0.4.7","update_type":"minor","path":null,"pr_created_at":"2025-08-18T06:00:36.000Z","version_change":"0.2.0 → 0.4.7","issue":{"uuid":"3329280587","node_id":"PR_kwDOFFptbs6kCRMw","number":44,"state":"open","title":"chore(deps): bump the minor-updates group across 1 directory with 43 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":"CONTRIBUTOR","state_reason":null,"created_at":"2025-08-18T06:00:36.000Z","updated_at":"2025-08-18T06:00:36.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"minor-updates","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.36.5","new_version":"1.38.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.17","new_version":"1.31.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.83.0","new_version":"1.87.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.0","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.0","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/valyala/fasthttp","old_version":"1.63.0","new_version":"1.65.0","repository_url":"https://github.com/valyala/fasthttp"},{"name":"github.com/boombuler/barcode","old_version":"1.0.1-0.20190219062509-6c824513bacc","new_version":"1.1.0","repository_url":"https://github.com/boombuler/barcode"},{"name":"github.com/cpuguy83/go-md2man/v2","old_version":"2.0.6","new_version":"2.0.7","repository_url":"https://github.com/cpuguy83/go-md2man"},{"name":"github.com/gabriel-vasile/mimetype","old_version":"1.4.8","new_version":"1.4.9","repository_url":"https://github.com/gabriel-vasile/mimetype"},{"name":"github.com/go-viper/mapstructure/v2","old_version":"2.2.1","new_version":"2.4.0","repository_url":"https://github.com/go-viper/mapstructure"},{"name":"github.com/mattn/go-colorable","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/mattn/go-colorable"},{"name":"github.com/pelletier/go-toml/v2","old_version":"2.2.3","new_version":"2.2.4","repository_url":"https://github.com/pelletier/go-toml"},{"name":"github.com/philhofer/fwd","old_version":"1.1.3-0.20240916144458-20a13a1f6b7c","new_version":"1.2.0","repository_url":"https://github.com/philhofer/fwd"},{"name":"github.com/rivo/uniseg","old_version":"0.2.0","new_version":"0.4.7","repository_url":"https://github.com/rivo/uniseg"},{"name":"github.com/sagikazarmark/locafero","old_version":"0.7.0","new_version":"0.10.0","repository_url":"https://github.com/sagikazarmark/locafero"},{"name":"github.com/spf13/cast","old_version":"1.7.1","new_version":"1.9.2","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/pflag","old_version":"1.0.6","new_version":"1.0.7","repository_url":"https://github.com/spf13/pflag"},{"name":"github.com/tinylib/msgp","old_version":"1.2.5","new_version":"1.3.0","repository_url":"https://github.com/tinylib/msgp"},{"name":"go.uber.org/multierr","old_version":"1.10.0","new_version":"1.11.0","repository_url":"https://github.com/uber-go/multierr"},{"name":"google.golang.org/protobuf","old_version":"1.36.6","new_version":"1.36.7"}],"path":null,"ecosystem":"go"},"body":"Bumps the minor-updates group with 20 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.36.5` | `1.38.0` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.17` | `1.31.0` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.83.0` | `1.87.0` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.0` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.0` |\n| [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) | `1.63.0` | `1.65.0` |\n| [github.com/boombuler/barcode](https://github.com/boombuler/barcode) | `1.0.1-0.20190219062509-6c824513bacc` | `1.1.0` |\n| [github.com/cpuguy83/go-md2man/v2](https://github.com/cpuguy83/go-md2man) | `2.0.6` | `2.0.7` |\n| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.8` | `1.4.9` |\n| [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) | `2.2.1` | `2.4.0` |\n| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |\n| [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) | `2.2.3` | `2.2.4` |\n| [github.com/philhofer/fwd](https://github.com/philhofer/fwd) | `1.1.3-0.20240916144458-20a13a1f6b7c` | `1.2.0` |\n| [github.com/rivo/uniseg](https://github.com/rivo/uniseg) | `0.2.0` | `0.4.7` |\n| [github.com/sagikazarmark/locafero](https://github.com/sagikazarmark/locafero) | `0.7.0` | `0.10.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.7.1` | `1.9.2` |\n| [github.com/spf13/pflag](https://github.com/spf13/pflag) | `1.0.6` | `1.0.7` |\n| [github.com/tinylib/msgp](https://github.com/tinylib/msgp) | `1.2.5` | `1.3.0` |\n| [go.uber.org/multierr](https://github.com/uber-go/multierr) | `1.10.0` | `1.11.0` |\n| google.golang.org/protobuf | `1.36.6` | `1.36.7` |\n\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.36.5 to 1.38.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.36.5...v1.38.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.29.17 to 1.31.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f445866bcc850b67c71e36882488e10f7c782e3\"\u003e\u003ccode\u003e2f44586\u003c/code\u003e\u003c/a\u003e Release 2024-09-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/22d087682834495c3aebc0c0f1aa2db37c4785a6\"\u003e\u003ccode\u003e22d0876\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5454ab9dfb0bc726f1f79b8d807e81fc7124797a\"\u003e\u003ccode\u003e5454ab9\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/06150d96305d6b6c19db0a2e5d1c1f4fa4a95612\"\u003e\u003ccode\u003e06150d9\u003c/code\u003e\u003c/a\u003e add tracing and metrics support (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2798\"\u003e#2798\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/18f7b40ea83d7ee75092085609a808b68c4d2000\"\u003e\u003ccode\u003e18f7b40\u003c/code\u003e\u003c/a\u003e Release 2024-09-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e91c9c4e48a47fa92d82251dd6ba0f0edd4bff3d\"\u003e\u003ccode\u003ee91c9c4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6df0a09c479b5e8e59204eda1c6a481c311e5629\"\u003e\u003ccode\u003e6df0a09\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/98ae6886ccefe00db38a3088e273e524abf3b196\"\u003e\u003ccode\u003e98ae688\u003c/code\u003e\u003c/a\u003e Release 2024-09-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/222928c4e7cc17d406f6c24f2e69b6747e29d43e\"\u003e\u003ccode\u003e222928c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/887c4de750c99c575f37828f1a646cefadfc4aa7\"\u003e\u003ccode\u003e887c4de\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.29.17...v1.31.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.83.0 to 1.87.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.83.0...service/s3/v1.87.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.2.2 to 5.3.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.0\u003c/h2\u003e\n\u003cp\u003eThis release is almost identical to to \u003ccode\u003ev5.2.3\u003c/code\u003e but now correctly indicates Go 1.21 as minimum requirement.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eCreate CODEOWNERS by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/449\"\u003egolang-jwt/jwt#449\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump Go version to indicate correct minimum requirement by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/452\"\u003egolang-jwt/jwt#452\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.3...v5.3.0\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.2.3...v5.3.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.2.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump GitHub workflows and Go versions by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/438\"\u003egolang-jwt/jwt#438\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImplementing validation of multiple audiences by \u003ca href=\"https://github.com/oxisto\"\u003e\u003ccode\u003e@​oxisto\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/433\"\u003egolang-jwt/jwt#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 7 to 8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/440\"\u003egolang-jwt/jwt#440\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ereplaced interface{} to any by \u003ca href=\"https://github.com/aachex\"\u003e\u003ccode\u003e@​aachex\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/445\"\u003egolang-jwt/jwt#445\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bug in validation of multiple audiences by \u003ca href=\"https://github.com/sfinnman-cotn\"\u003e\u003ccode\u003e@​sfinnman-cotn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/441\"\u003egolang-jwt/jwt#441\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aachex\"\u003e\u003ccode\u003e@​aachex\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/445\"\u003egolang-jwt/jwt#445\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sfinnman-cotn\"\u003e\u003ccode\u003e@​sfinnman-cotn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/441\"\u003egolang-jwt/jwt#441\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.2...v5.2.3\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.2.2...v5.2.3\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e9547a11aa603c52a31e315cdcaa71d0f25b921a\"\u003e\u003ccode\u003ee9547a1\u003c/code\u003e\u003c/a\u003e Bump Go version to indicate correct minimum requirement (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/452\"\u003e#452\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/3839817bf313f2cfe58853dcbe542ffd06300831\"\u003e\u003ccode\u003e3839817\u003c/code\u003e\u003c/a\u003e Create CODEOWNERS (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/449\"\u003e#449\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d83e545cee83663ad15137c8615900a60447baad\"\u003e\u003ccode\u003ed83e545\u003c/code\u003e\u003c/a\u003e Fix bug in validation of multiple audiences (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/441\"\u003e#441\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/75740f19088857627364f255f3103a053071ca66\"\u003e\u003ccode\u003e75740f1\u003c/code\u003e\u003c/a\u003e replaced interface{} to any (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/445\"\u003e#445\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/048854f1b0ac96c0a843d52fc09d7878b853683f\"\u003e\u003ccode\u003e048854f\u003c/code\u003e\u003c/a\u003e Bump golangci/golangci-lint-action from 7 to 8 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/440\"\u003e#440\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/497a38ec597a28f8f7dd874deb28ad88fb65d0f7\"\u003e\u003ccode\u003e497a38e\u003c/code\u003e\u003c/a\u003e Implementing validation of multiple audiences (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/433\"\u003e#433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/12384ead1e03c0307ee57b05ee2e49cdaa8d30f4\"\u003e\u003ccode\u003e12384ea\u003c/code\u003e\u003c/a\u003e Bump GitHub workflows and Go versions (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/438\"\u003e#438\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.2.2...v5.3.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/prometheus/client_golang` from 1.22.0 to 1.23.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/prometheus/client_golang/releases\"\u003egithub.com/prometheus/client_golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.23.0 - 2025-07-30\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1812\"\u003e#1812\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1766\"\u003e#1766\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add exemplars for native histograms \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1686\"\u003e#1686\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] exp/api: Bubble up status code from writeResponse \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1823\"\u003e#1823\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[BUGFIX] exp/api: client prompt return on context cancellation \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1729\"\u003e#1729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md\"\u003egithub.com/prometheus/client_golang's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.23.0 / 2025-07-30\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1812\"\u003e#1812\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1766\"\u003e#1766\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[FEATURE] Add exemplars for native histograms \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1686\"\u003e#1686\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] exp/api: Bubble up status code from writeResponse \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1823\"\u003e#1823\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[BUGFIX] exp/api: client prompt return on context cancellation \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1729\"\u003e#1729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/e4b2208dd8cb6d1425f00250db842ec3c1e8749e\"\u003e\u003ccode\u003ee4b2208\u003c/code\u003e\u003c/a\u003e Cut v1.23.0 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1848\"\u003e#1848\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/d9492afd3a6f2e9782a7fc10363281bfd5b743bb\"\u003e\u003ccode\u003ed9492af\u003c/code\u003e\u003c/a\u003e cut v1.23.0-rc.1 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1842\"\u003e#1842\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/aeae8a0b4f54a8fa720d19b88638a2d048596f82\"\u003e\u003ccode\u003eaeae8a0\u003c/code\u003e\u003c/a\u003e Cut v1.23.0-rc.0 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1837\"\u003e#1837\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/b157309b723f0b8588ea604bb78dbbba196803f2\"\u003e\u003ccode\u003eb157309\u003c/code\u003e\u003c/a\u003e Update common Prometheus files (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1832\"\u003e#1832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/a704e287f467b79744c30af996b7d710d4c6900d\"\u003e\u003ccode\u003ea704e28\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1826\"\u003e#1826\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/c7743110ad2c599de3d8c23682d978a12f9f36d1\"\u003e\u003ccode\u003ec774311\u003c/code\u003e\u003c/a\u003e Fix errNotImplemented reference (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1835\"\u003e#1835\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/db4db7bb0065a76c75b7df6f61d2cf183ecfc473\"\u003e\u003ccode\u003edb4db7b\u003c/code\u003e\u003c/a\u003e Update runtime metrics for Go v1.23 and v1.24 (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1833\"\u003e#1833\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/99d380ebfe865ae2c973c80184bc97ac0d98f083\"\u003e\u003ccode\u003e99d380e\u003c/code\u003e\u003c/a\u003e Update common Prometheus files (\u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1831\"\u003e#1831\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/f3ef320dcde30f31188c577ad71e6480e91bf464\"\u003e\u003ccode\u003ef3ef320\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/prometheus/client_golang/issues/1828\"\u003e#1828\u003c/a\u003e from prometheus/dependabot/go_modules/exp/github.com...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/prometheus/client_golang/commit/520c91ae841ff7264b5379fe85e6215fc62734a6\"\u003e\u003ccode\u003e520c91a\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/prometheus/common in /exp\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/prometheus/client_golang/compare/v1.22.0...v1.23.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/valyala/fasthttp` from 1.63.0 to 1.65.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/valyala/fasthttp/releases\"\u003egithub.com/valyala/fasthttp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.65.0\u003c/h2\u003e\n\u003ch2\u003e‼️ ⚠️ backwards incompatibility! ⚠️ ‼️\u003c/h2\u003e\n\u003cp\u003eIn this version of fasthttp, headers delimited by just \u003ccode\u003e\\n\u003c/code\u003e (instead of \u003ccode\u003e\\r\\n\u003c/code\u003e) are no longer supported!\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eRewrite header parsing to improve spec compliance by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2030\"\u003evalyala/fasthttp#2030\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSimplify Client.Do function and lock usage by \u003ca href=\"https://github.com/byte0o\"\u003e\u003ccode\u003e@​byte0o\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2038\"\u003evalyala/fasthttp#2038\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump securego/gosec from 2.22.5 to 2.22.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2039\"\u003evalyala/fasthttp#2039\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix trailer security by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2043\"\u003evalyala/fasthttp#2043\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix RequestHeader.ContentLength() if disableSpecialHeader is true by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2042\"\u003evalyala/fasthttp#2042\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd reuseport support for Solaris by \u003ca href=\"https://github.com/jwntree\"\u003e\u003ccode\u003e@​jwntree\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2046\"\u003evalyala/fasthttp#2046\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest: replace atomic operations with atomic types by \u003ca href=\"https://github.com/alexandear\"\u003e\u003ccode\u003e@​alexandear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2048\"\u003evalyala/fasthttp#2048\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2049\"\u003evalyala/fasthttp#2049\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize fs to have 0 allocations by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2052\"\u003evalyala/fasthttp#2052\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump actions/checkout from 4 to 5 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2055\"\u003evalyala/fasthttp#2055\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jwntree\"\u003e\u003ccode\u003e@​jwntree\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2046\"\u003evalyala/fasthttp#2046\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.64.0...v1.65.0\"\u003ehttps://github.com/valyala/fasthttp/compare/v1.64.0...v1.65.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.64.0\u003c/h2\u003e\n\u003ch2\u003e⚠️ Deprecation warning! ⚠️\u003c/h2\u003e\n\u003cp\u003eIn the next version of fasthttp headers delimited by just \u003ccode\u003e\\n\u003c/code\u003e (instead of \u003ccode\u003e\\r\\n\u003c/code\u003e) are no longer supported!\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd warning for deprecated newline separator by \u003ca href=\"https://github.com/erikdubbelboer\"\u003e\u003ccode\u003e@​erikdubbelboer\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2031\"\u003evalyala/fasthttp#2031\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefact: eliminate duplication in Request/Response via struct embedding by \u003ca href=\"https://github.com/ksw2000\"\u003e\u003ccode\u003e@​ksw2000\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2027\"\u003evalyala/fasthttp#2027\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2034\"\u003evalyala/fasthttp#2034\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/crypto from 0.39.0 to 0.40.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2036\"\u003evalyala/fasthttp#2036\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): bump golang.org/x/net from 0.41.0 to 0.42.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/valyala/fasthttp/pull/2035\"\u003evalyala/fasthttp#2035\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.63.0...v1.64.0\"\u003ehttps://github.com/valyala/fasthttp/compare/v1.63.0...v1.64.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/f9d84d7c5242423b3ddac7ce6c671ff817274296\"\u003e\u003ccode\u003ef9d84d7\u003c/code\u003e\u003c/a\u003e Rewrite header parsing to improve spec compliance (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2030\"\u003e#2030\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/89010cb2c614d1b0454440ffd4fe54e9d08505b4\"\u003e\u003ccode\u003e89010cb\u003c/code\u003e\u003c/a\u003e chore(deps): bump actions/checkout from 4 to 5 (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2055\"\u003e#2055\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/1828bd4eee29b489a516b8c01446e621b3a6953e\"\u003e\u003ccode\u003e1828bd4\u003c/code\u003e\u003c/a\u003e Optimize fs to have 0 allocations (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2052\"\u003e#2052\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/81ebee8c79ae193cb2e30ed2b326ece3681278a8\"\u003e\u003ccode\u003e81ebee8\u003c/code\u003e\u003c/a\u003e Fix PeekKeys()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/c20414a496d520c50299276aab29b43261e54d7c\"\u003e\u003ccode\u003ec20414a\u003c/code\u003e\u003c/a\u003e Remove BenchmarkCoarseTimeNow\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/3f641c3246225546dc80ffbdffaafb7ac38e4b82\"\u003e\u003ccode\u003e3f641c3\u003c/code\u003e\u003c/a\u003e chore(deps): bump golang.org/x/net from 0.42.0 to 0.43.0 (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2049\"\u003e#2049\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/51b494732003f551d59bf466e3927d9986f96eae\"\u003e\u003ccode\u003e51b4947\u003c/code\u003e\u003c/a\u003e test: replace atomic operations with atomic types (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2048\"\u003e#2048\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/1d8fe19359b6f308806a2773713bfde7f13ddf29\"\u003e\u003ccode\u003e1d8fe19\u003c/code\u003e\u003c/a\u003e Add reuseport support for Solaris (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2046\"\u003e#2046\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/01d533ad1561d9f2b8878f14e2267e12fc37db1a\"\u003e\u003ccode\u003e01d533a\u003c/code\u003e\u003c/a\u003e Fix RequestHeader.ContentLength() if disableSpecialHeader is true (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2042\"\u003e#2042\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/valyala/fasthttp/commit/a1c842f19eda39be4b4a60b9d5989aa41e0ba166\"\u003e\u003ccode\u003ea1c842f\u003c/code\u003e\u003c/a\u003e Fix trailer security (\u003ca href=\"https://redirect.github.com/valyala/fasthttp/issues/2043\"\u003e#2043\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/valyala/fasthttp/compare/v1.63.0...v1.65.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.32.0 to 0.34.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/a35244d18d7756b12deca31a518c0fa1327d050a\"\u003e\u003ccode\u003ea35244d\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/4f53e0cd3924d70667107169374a480bfd208348\"\u003e\u003ccode\u003e4f53e0c\u003c/code\u003e\u003c/a\u003e term: allow multi-line bracketed paste to not create single line with verbati...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/27f29d8328742b97c08c2186027d32cdc438345c\"\u003e\u003ccode\u003e27f29d8\u003c/code\u003e\u003c/a\u003e term: remove duplicate flag and add comment on windows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/30da5dd58fc835bf6704fa7464ac3d23202d8685\"\u003e\u003ccode\u003e30da5dd\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/term/compare/v0.32.0...v0.34.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/text` from 0.26.0 to 0.28.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/425d715b4a85c7698cedf621412bb53794cbda53\"\u003e\u003ccode\u003e425d715\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/b6d26456dd3ff554a56f10b1e388db0f8ca862d1\"\u003e\u003ccode\u003eb6d2645\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/text/compare/v0.26.0...v0.28.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream` from 1.6.11 to 1.7.0\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/aws/protocol/eventstream's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2021-06-25)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated \u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e to latest version\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.7.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds configuration values for enabling endpoint discovery.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Keep Object-Lock headers a header when presigning Sigv4 signing requests\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/config\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/config/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds configuration setting for enabling endpoint discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/credentials\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/credentials/CHANGELOG.md#v130-2021-06-25\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fixed example usages of aws.CredentialsCache (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/pull/1275\"\u003e#1275\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/feature/cloudfront/sign\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/feature/cloudfront/sign/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add UnmarshalJSON for AWSEpochTime to correctly unmarshal AWSEpochTime, (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/pull/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/internal/configsources\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/internal/configsources/CHANGELOG.md#v100-2021-06-25\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: Release new modules\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amp\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amp/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amplify\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amplify/CHANGELOG.md#v130-2021-06-25\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/amplifybackend\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/amplifybackend/CHANGELOG.md#v120-2021-06-25\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/appflow/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appmesh\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/appmesh/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/chime\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/chime/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloud9\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloud9/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudformation/CHANGELOG.md#v160-2021-06-25\"\u003ev1.6.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudfront\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudfront/CHANGELOG.md#v160-2021-06-25\"\u003ev1.6.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudsearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudsearch/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudwatch/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudwatchevents\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cloudwatchevents/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codebuild\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/codebuild/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codegurureviewer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/codegurureviewer/CHANGELOG.md#v150-2021-06-25\"\u003ev1.5.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cognitoidentity\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cognitoidentity/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/v1.7.0/service/cognitoidentityprovider/CHANGELOG.md#v140-2021-06-25\"\u003ev1.4.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: API client updated\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/431a4088086d343b343000a5782557c6b298af4a\"\u003e\u003ccode\u003e431a408\u003c/code\u003e\u003c/a\u003e Release 2021-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5393f4a1e3625e51d736d8e46a9ab81e288a3101\"\u003e\u003ccode\u003e5393f4a\u003c/code\u003e\u003c/a\u003e Updated smithy-go dependency version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d96de3a427321579a75bde4d817adc171b67709c\"\u003e\u003ccode\u003ed96de3a\u003c/code\u003e\u003c/a\u003e Update API Models, adds change log for release, pins protocol test to exclude...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e216071ce657c2cc2f47cab02c4a2f691604ed88\"\u003e\u003ccode\u003ee216071\u003c/code\u003e\u003c/a\u003e aws/signer/v4: Keep Object-Lock headers a header in presigning signing reques...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/77ed784acdb0878934858937748e836c4dd308d4\"\u003e\u003ccode\u003e77ed784\u003c/code\u003e\u003c/a\u003e feature/cloudfront/sign: Add json Unmarshal for AWSEpochTime (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1298\"\u003e#1298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d00f3dafe5b5f21cc71e52e54a2c13896a59f706\"\u003e\u003ccode\u003ed00f3da\u003c/code\u003e\u003c/a\u003e credentials: Fix aws.CredentialsCache code usage examples (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1275\"\u003e#1275\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7cdbfce4db06bdd9d8628d456df91364ebe81e63\"\u003e\u003ccode\u003e7cdbfce\u003c/code\u003e\u003c/a\u003e Update README to point to the consolidated Changelog file (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd60ebc64a790cc61b765f2077e92a07a35c50e7\"\u003e\u003ccode\u003ecd60ebc\u003c/code\u003e\u003c/a\u003e feature/s3/manager: Fix typo in Downloader (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1304\"\u003e#1304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d868df6b055dd64c023bbe2a13648e97ee7d161\"\u003e\u003ccode\u003e1d868df\u003c/code\u003e\u003c/a\u003e Endpoint discovery support (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1263\"\u003e#1263\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/39470b26cb7481970166932134f1e048c663ad60\"\u003e\u003ccode\u003e39470b2\u003c/code\u003e\u003c/a\u003e Release 2021-06-11\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rum/v1.6.11...v1.7.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.70 to 1.18.4\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/credentials's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2022-12-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/appsync/CHANGELOG.md#v1170-2022-12-02\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Fixes the URI for the evaluatecode endpoint to include the /v1 prefix (ie. \u0026quot;/v1/dataplane-evaluatecode\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/ecs/CHANGELOG.md#v1201-2022-12-02\"\u003ev1.20.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon ECS\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fms\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/fms/CHANGELOG.md#v1210-2022-12-02\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Firewall Manager now supports Fortigate Cloud Native Firewall as a Service as a third-party policy type.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/mediaconvert/CHANGELOG.md#v1280-2022-12-02\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: The AWS Elemental MediaConvert SDK has added support for configurable ID3 eMSG box attributes and the ability to signal them with InbandEventStream tags in DASH and CMAF outputs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/medialive\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/medialive/CHANGELOG.md#v1250-2022-12-02\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updates to Event Signaling and Management (ESAM) API and documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/polly\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/polly/CHANGELOG.md#v1210-2022-12-02\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add language code for Finnish (fi-FI)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/proton/CHANGELOG.md#v1180-2022-12-02\"\u003ev1.18.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: CreateEnvironmentAccountConnection RoleArn input is now optional\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftserverless\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/redshiftserverless/CHANGELOG.md#v130-2022-12-02\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add Table Level Restore operations for Amazon Redshift Serverless. Add multi-port support for Amazon Redshift Serverless endpoints. Add Tagging support to Snapshots and Recovery Points in Amazon Redshift Serverless.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sns\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/sns/CHANGELOG.md#v1187-2022-12-02\"\u003ev1.18.7\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: This release adds the message payload-filtering feature to the SNS Subscribe, SetSubscriptionAttributes, and GetSubscriptionAttributes API actions\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-12-01)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/codecatalyst\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/codecatalyst/CHANGELOG.md#v100-2022-12-01\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds operations that support customers using the AWS Toolkits and Amazon CodeCatalyst, a unified software development service that helps developers develop, deploy, and maintain applications in the cloud. For more information, see the documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/comprehend\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/comprehend/CHANGELOG.md#v1200-2022-12-01\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Comprehend now supports semi-structured documents (such as PDF files or image files) as inputs for custom analysis using the synchronous APIs (ClassifyDocument and DetectEntities).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/gamelift\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/gamelift/CHANGELOG.md#v1160-2022-12-01\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: GameLift introduces a new feature, GameLift Anywhere. GameLift Anywhere allows you to integrate your own compute resources with GameLift. You can also use GameLift Anywhere to iteratively test your game servers without uploading the build to GameLift for every iteration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/pipes\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/pipes/CHANGELOG.md#v100-2022-12-01\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS introduces new Amazon EventBridge Pipes which allow you to connect sources (SQS, Kinesis, DDB, Kafka, MQ) to Targets (14+ EventBridge Targets) without any code, with filtering, batching, input transformation, and an optional Enrichment stage (Lambda, StepFunctions, ApiGateway, ApiDestinations)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sfn\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/sfn/CHANGELOG.md#v1160-2022-12-01\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the AWS Step Functions Map state in Distributed mode. The changes include a new MapRun resource and several new and modified APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-30)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/accessanalyzer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/accessanalyzer/CHANGELOG.md#v1180-2022-11-30\"\u003ev1.18.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for S3 cross account access points. IAM Access Analyzer will now produce public or cross account findings when it detects bucket delegation to external account access points.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/athena\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/athena/CHANGELOG.md#v1200-2022-11-30\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release includes support for using Apache Spark in Amazon Athena.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dataexchange\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.4/service/dataexchange/CHANGELOG.md#v1170-2022-11-30\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables data providers to license direct access to data in their Amazon S3 buckets or AWS Lake Formation data lakes through AWS Data Exchange. Subscribers get read-only access to the data and can use it in downstream AWS services, like Amazon Athena, without creating or managing copies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/93c3f1871b862d743e0bd2e2e7180246df3a9212\"\u003e\u003ccode\u003e93c3f18\u003c/code\u003e\u003c/a\u003e Release 2022-12-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7254028f8bc89095326d9e3657fdbc98b98cca94\"\u003e\u003ccode\u003e7254028\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f43ad83db1b3da1c2ea37857524148c91189cb4c\"\u003e\u003ccode\u003ef43ad83\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.13.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/77d257ee120e67d45a5de6f0d6478f313a21b92a\"\u003e\u003ccode\u003e77d257e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/779e29ff5a4bcebe1ab7088ab12c4c95ce06f8aa\"\u003e\u003ccode\u003e779e29f\u003c/code\u003e\u003c/a\u003e Release 2022-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f64d7d2b0a0033996b32ba9e1b18e5a923452b84\"\u003e\u003ccode\u003ef64d7d2\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9bc59f75ee4683ca886c3d701b49bb81db2efd4d\"\u003e\u003ccode\u003e9bc59f7\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d9c18aa2bdd4c237a4919452f58e29c20ba484cc\"\u003e\u003ccode\u003ed9c18aa\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0259b169b753daf77ad332c680a9ad1e3f56753d\"\u003e\u003ccode\u003e0259b16\u003c/code\u003e\u003c/a\u003e Release 2022-11-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ee0277f1abad4856afc13ced2bfb90a43dbd9d34\"\u003e\u003ccode\u003eee0277f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.17.70...config/v1.18.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/feature/ec2/imds` from 1.16.32 to 1.18.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2022-11-22)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/appflow/CHANGELOG.md#v1210-2022-11-22\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adding support for Amazon AppFlow to transfer the data to Amazon Redshift databases through Amazon Redshift Data API service. This feature will support the Redshift destination connector on both public and private accessible Amazon Redshift Clusters and Amazon Redshift Serverless.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/kinesisanalyticsv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/kinesisanalyticsv2/CHANGELOG.md#v1150-2022-11-22\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Support for Apache Flink 1.15 in Kinesis Data Analytics.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-21)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/route53\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/route53/CHANGELOG.md#v1250-2022-11-21\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon Route 53 now supports the Asia Pacific (Hyderabad) Region (ap-south-2) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-18.2)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ssmsap\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/ssmsap/CHANGELOG.md#v101-2022-11-182\"\u003ev1.0.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Removes old model file for ssm sap and uses the new model file to regenerate client\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2022-11-18)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appflow\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/appflow/CHANGELOG.md#v1200-2022-11-18\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AppFlow provides a new API called UpdateConnectorRegistration to update a custom connector that customers have previously registered. With this API, customers no longer need to unregister and then register a connector to make an update.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/auditmanager/CHANGELOG.md#v1210-2022-11-18\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a new feature for Audit Manager: Evidence finder. You can now use evidence finder to quickly query your evidence, and add the matching evidence results to an assessment report.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/chimesdkvoice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/chimesdkvoice/CHANGELOG.md#v100-2022-11-18\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon Chime Voice Connector, Voice Connector Group and PSTN Audio Service APIs are now available in the Amazon Chime SDK Voice namespace. See \u003ca href=\"https://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html\"\u003ehttps://docs.aws.amazon.com/chime-sdk/latest/dg/sdk-available-regions.html\u003c/a\u003e for more details.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudfront\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/cloudfront/CHANGELOG.md#v1210-2022-11-18\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: CloudFront API support for staging distributions and associated traffic management policies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/connect/CHANGELOG.md#v1380-2022-11-18\"\u003ev1.38.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added AllowedAccessControlTags and TagRestrictedResource for Tag Based Access Control on Amazon Connect Webpage\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dynamodb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/dynamodb/CHANGELOG.md#v1176-2022-11-18\"\u003ev1.17.6\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updated minor fixes for DynamoDB documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/dynamodbstreams\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/dynamodbstreams/CHANGELOG.md#v11325-2022-11-18\"\u003ev1.13.25\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updated minor fixes for DynamoDB documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/ec2/CHANGELOG.md#v1720-2022-11-18\"\u003ev1.72.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for copying an Amazon Machine Image's tags when copying an AMI.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/glue/CHANGELOG.md#v1350-2022-11-18\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWSGlue Crawler - Adding support for Table and Column level Comments with database level datatypes for JDBC based crawler.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iotroborunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.3/service/iotroborunner/CHANGELOG.md#v100-2022-11-18\"\u003ev1.0.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eRelease\u003c/strong\u003e: New AWS service client module\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7a32d707aff708a14e7e39927930a1fb2a3bd6f7\"\u003e\u003ccode\u003e7a32d70\u003c/code\u003e\u003c/a\u003e Release 2022-11-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0242bd53d7d653d5af25cb046b4e5cdd9085388d\"\u003e\u003ccode\u003e0242bd5\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/350cc3eb4e1b8bf3e3bd731deb5b43b092d3ac54\"\u003e\u003ccode\u003e350cc3e\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a227ddc7773d739b0cc40d576303d13415c49fbc\"\u003e\u003ccode\u003ea227ddc\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bec5c47e6039349d12ba39e33261630f90dfdd13\"\u003e\u003ccode\u003ebec5c47\u003c/code\u003e\u003c/a\u003e Release 2022-11-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0438d8f026b481eb3217b2d0012b28832ec529d0\"\u003e\u003ccode\u003e0438d8f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1ec853e23add4a10d313e23b08848ace880c1129\"\u003e\u003ccode\u003e1ec853e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b30f43183cc4c83d8ab6bde0c28256999a442c4b\"\u003e\u003ccode\u003eb30f431\u003c/code\u003e\u003c/a\u003e Release 2022-11-18.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4fadedce965266b4132b5f9040ede78897e40edd\"\u003e\u003ccode\u003e4fadedc\u003c/code\u003e\u003c/a\u003e Adding changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14ebfbd6f287d16eb1afdad9e1248bd108e70d56\"\u003e\u003ccode\u003e14ebfbd\u003c/code\u003e\u003c/a\u003e Remove old model files for ssm map.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/feature/ec2/imds/v1.16.32...config/v1.18.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/configsources` from 1.3.36 to 1.4.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/internal/configsources's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-02-20)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.17.5\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: fix int overflow bug on 32 bit architecture\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/auditmanager/CHANGELOG.md#v1240-2023-02-20\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a ServiceQuotaExceededException to the UpdateAssessmentFrameworkShare API operation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/connect/CHANGELOG.md#v1470-2023-02-20\"\u003ev1.47.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Reasons for failed diff has been approved by SDK Reviewer\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-17)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/apprunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/apprunner/CHANGELOG.md#v1170-2023-02-17\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release supports removing MaxSize limit for AutoScalingConfiguration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/glue/CHANGELOG.md#v1430-2023-02-17\"\u003ev1.43.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Release of Delta Lake Data Lake Format for Glue Studio Service\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-16)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/emr\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/emr/CHANGELOG.md#v1230-2023-02-16\"\u003ev1.23.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release provides customers the ability to define a timeout period for procuring capacity during a resize operation for Instance Fleet clusters. Customers can specify this timeout using the ResizeSpecifications parameter supported by RunJobFlow, ModifyInstanceFleet and AddInstanceFleet APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/grafana\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/grafana/CHANGELOG.md#v1120-2023-02-16\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: With this release Amazon Managed Grafana now supports inbound Network Access Control that helps you to restrict user access to your Grafana workspaces\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ivs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/ivs/CHANGELOG.md#v1203-2023-02-16\"\u003ev1.20.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Doc-only update. Updated text description in DeleteChannel, Stream, and StreamSummary.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wafv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/wafv2/CHANGELOG.md#v1251-2023-02-16\"\u003ev1.25.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Added a notice for account takeover prevention (ATP). The interface incorrectly lets you to configure ATP response inspection in regional web ACLs in Region US East (N. Virginia), without returning an error. ATP response inspection is only available in web ACLs that protect CloudFront distributions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-15)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/accessanalyzer\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/accessanalyzer/CHANGELOG.md#v1193-2023-02-15\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct error type parsing for restJson services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/account\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/account/CHANGELOG.md#v191-2023-02-15\"\u003ev1.9.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct error type parsing for restJson services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/acm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/acm/CHANGELOG.md#v1173-2023-02-15\"\u003ev1.17.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: When receiving an error response in restJson-based services, an incorrect error type may have been returned based on the content of the response. This has been fixed via PR \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2012\"\u003e#2012\u003c/a\u003e tracked in issue \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/1910\"\u003e#1910\u003c/a\u003e.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b1af56e48042111f0c367b639faaf87ba9bd3001\"\u003e\u003ccode\u003eb1af56e\u003c/code\u003e\u003c/a\u003e Release 2023-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4f504d9665de5f649db0b1d8b43da091f01fb6d7\"\u003e\u003ccode\u003e4f504d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c6191ffa5f47a5cacf09880387f69d96963b9a21\"\u003e\u003ccode\u003ec6191ff\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8e6fa271cad1a3e18bd04bacdea8d8dc170115ca\"\u003e\u003ccode\u003e8e6fa27\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2026\"\u003e#2026\u003c/a\u003e from aws/firstissue\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9af2842ca9258238ee5f72d85e5d61b12c4a7737\"\u003e\u003ccode\u003e9af2842\u003c/code\u003e\u003c/a\u003e Don't skip anonymous (embedded) fields with named tags (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2022\"\u003e#2022\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1ca1e1831b92e691f1c1d35204f914740ed1345e\"\u003e\u003ccode\u003e1ca1e18\u003c/code\u003e\u003c/a\u003e add changelog entry\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b19c337948f9867adb6295106bc13474c9ad6f6f\"\u003e\u003ccode\u003eb19c337\u003c/code\u003e\u003c/a\u003e fix int overflow on 32 bit architecture\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/50d82a9979e506d66de709e10c053d576a069ce7\"\u003e\u003ccode\u003e50d82a9\u003c/code\u003e\u003c/a\u003e Release 2023-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/19dc3750fd7698c2aeb98a15b8e3e1be1d4f9e6a\"\u003e\u003ccode\u003e19dc375\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8fe3523a2c614a4fc173910cd044b9826e336ecc\"\u003e\u003ccode\u003e8fe3523\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/internal/ini/v1.3.36...service/m2/v1.4.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/endpoints/v2` from 2.6.36 to 2.7.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ab2d66f8e3df0b6850a13986c7d8c2d23cbd822\"\u003e\u003ccode\u003e0ab2d66\u003c/code\u003e\u003c/a\u003e Release 2025-08-11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ae8100862e46c1ec9fc7a8f4a8c745928f571118\"\u003e\u003ccode\u003eae81008\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6cf56c18f9973dcebe9e1be40fbdb9291c4610ec\"\u003e\u003ccode\u003e6cf56c1\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e25292fe9b6bacc04a83e82c17e94cb1a0acdd9\"\u003e\u003ccode\u003e5e25292\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/14e9fb777684530dbf617624f37f33821d72b04a\"\u003e\u003ccode\u003e14e9fb7\u003c/code\u003e\u003c/a\u003e upgrade to smithy v1.61.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fcdf6abd15520856083261043702400afd060f3d\"\u003e\u003ccode\u003efcdf6ab\u003c/code\u003e\u003c/a\u003e regen\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/223029934bf4bd2bacace5c7f6d506e3bb60b62f\"\u003e\u003ccode\u003e2230299\u003c/code\u003e\u003c/a\u003e fix changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/76aa8d73a6c12220e48133ca2f817423bc912190\"\u003e\u003ccode\u003e76aa8d7\u003c/code\u003e\u003c/a\u003e feat: add support for per service options to Config (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3145\"\u003e#3145\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8afe3272e8a75b70d1b93cc3d27a4fb15ae6ce34\"\u003e\u003ccode\u003e8afe327\u003c/code\u003e\u003c/a\u003e Release 2025-08-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4d6e55d41fd68ed0157bc0622cf8e2a7987b9fc3\"\u003e\u003ccode\u003e4d6e55d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/internal/endpoints/v2.6.36...internal/endpoints/v2.7.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/internal/v4a` from 1.3.36 to 1.4.3\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/internal/v4a's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-02-20)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2\u003c/code\u003e: v1.17.5\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: fix int overflow bug on 32 bit architecture\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/auditmanager\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/auditmanager/CHANGELOG.md#v1240-2023-02-20\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release introduces a ServiceQuotaExceededException to the UpdateAssessmentFrameworkShare API operation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/connect/CHANGELOG.md#v1470-2023-02-20\"\u003ev1.47.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Reasons for failed diff has been approved by SDK Reviewer\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-17)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/apprunner\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/apprunner/CHANGELOG.md#v1170-2023-02-17\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release supports removing MaxSize limit for AutoScalingConfiguration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/glue\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/glue/CHANGELOG.md#v1430-2023-02-17\"\u003ev1.43.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Release of Delta Lake Data Lake Format for Glue Studio Service\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-02-16)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/emr\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/emr/CHANGELOG.md#v1230-2023-02-16\"\u003ev1.23.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release provides customers the ability to define a timeout period for procuring capacity during a resize operation for Instance Fleet clusters. Customers can specify this timeout using the ResizeSpecifications parameter supported by RunJobFlow, ModifyInstanceFleet and AddInstanceFleet APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/grafana\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/service/m2/v1.4.3/service/grafana/CHANGELOG.md#v1120-2023-02-16\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: With this release Amazon Managed Grafana now supports inbound Network Access Control that helps you t...\n\n_Description has been truncated_","html_url":"https://github.com/ScriptonBasestar/proxynd/pull/44","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ScriptonBasestar%2Fproxynd/issues/44","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/44/packages"}}]}