chore(deps): bump github.com/pulumi/pulumi-terraform-bridge/v3 from 3.87.0 to 3.89.1 in /provider
Bumps github.com/pulumi/pulumi-terraform-bridge/v3 from 3.87.0 to 3.89.1.
Release notes
Sourced from github.com/pulumi/pulumi-terraform-bridge/v3's releases.
v3.89.1
What's Changed
- Skip sections by header with goldmark by
@guineveresaengerin pulumi/pulumi-terraform-bridge#2292- Add a goldmark parser extension for first class sections by
@iwahbein pulumi/pulumi-terraform-bridge#2306- Fix typechecking booleans by
@t0yv0in pulumi/pulumi-terraform-bridge#2310- Automated Pulumi/Pulumi upgrade by
@pulumi-botin pulumi/pulumi-terraform-bridge#2311- Test a special set diff case by
@t0yv0in pulumi/pulumi-terraform-bridge#2304- Typos and simplified logic by
@iwahbein pulumi/pulumi-terraform-bridge#2313- Enforce .Elem.Fields (instead of .Fields) for object types by
@iwahbein pulumi/pulumi-terraform-bridge#2309- Infer Map[string] when the Map's element type is unspecified by
@iwahbein pulumi/pulumi-terraform-bridge#2316Full Changelog: https://github.com/pulumi/pulumi-terraform-bridge/compare/v3.89.0...v3.89.1
v3.89.0
What's Changed
- Remove __defaults entry from PF inputs by
@corymhallin pulumi/pulumi-terraform-bridge#2243- Make the patch to objchange.ProposedNew explicit by
@t0yv0in pulumi/pulumi-terraform-bridge#2246- Terraform integration tests by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2162- Update bridge version for PF et al by
@guineveresaengerin pulumi/pulumi-terraform-bridge#2253- Use OpenTofu planner with Plugin Framework providers by
@t0yv0in pulumi/pulumi-terraform-bridge#2188- Remerge PF commit by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2255- Add a doc for numeric IDs by
@iwahbein pulumi/pulumi-terraform-bridge#2245- Improve the error messages for
checks.goby@iwahbein pulumi/pulumi-terraform-bridge#2250- Refactor the SDKv2 Integration tests to take a TF provider instead of a resource map by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2265- 2192 Regression test by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2273- Match upstream fix for Configure config to allow access to RawConfig by providers by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2263- Upgrade pu/pu to 3.127 by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2280- Translate installation examples by
@guineveresaengerin pulumi/pulumi-terraform-bridge#2214- Handle headers in code comments by
@iwahbein pulumi/pulumi-terraform-bridge#2285- Fix PRC big int creation by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2286- Integration test PF nested config by
@iwahbein pulumi/pulumi-terraform-bridge#2288- Apply config encoding at the ProviderWithContext level by
@iwahbein pulumi/pulumi-terraform-bridge#2258- Automated Pulumi/Pulumi upgrade by
@pulumi-botin pulumi/pulumi-terraform-bridge#2289Full Changelog: https://github.com/pulumi/pulumi-terraform-bridge/compare/v3.88.0...v3.89.0
v3.88.0
What's Changed
- Increment PF dependency version to v3.87.0 by
@iwahbein pulumi/pulumi-terraform-bridge#2194- Fix unknown collections of obj by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2061- Remove usage of plugin framework types in favor of interface types by
@guineveresaengerin pulumi/pulumi-terraform-bridge#2184- Automated Pulumi/Pulumi upgrade by
@pulumi-botin pulumi/pulumi-terraform-bridge#2196- Deprecate
tfplugin5by@iwahbein pulumi/pulumi-terraform-bridge#2197- Upgrade pulumi/pulumi reference to v3.125.0 by
@iwahbein pulumi/pulumi-terraform-bridge#2199- Fill in Parameterization Value by
@iwahbein pulumi/pulumi-terraform-bridge#2202- Fix flaky tests by disabling automatic plugin acquisition for all tests by
@VenelinMartinovin pulumi/pulumi-terraform-bridge#2190- Add automated install instructions to top of
installation-configuration.md. by@guineveresaengerin pulumi/pulumi-terraform-bridge#2207- Make PULUMI_BOT_TOKEN and CODECOV_TOKEN optional by
@iwahbein pulumi/pulumi-terraform-bridge#2209
... (truncated)
Commits
662459eInfer Map[string] when the Map's element type is unspecified (#2316)0f1e694Fix tf2pulumi renames8a98bfbEnforce validation with a custom generator823fd88Enforce .Elem.Fields (instead of .Fields) for object types992ffd4Simplify call totfbridge.IsMaxItemsOne95ee4a1Fix a typo in a comment: "entityDOcs" -> "entityDocs"d2e2253Fix a typo in a comment: "documention" -> "documentation"8b54f9bTest a special set diff case (#2304)6b55573Automated Pulumi/Pulumi upgrade (#2311)e468215Fix typechecking booleans (#2310)- Additional commits viewable in compare view
Dependabot 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.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
词表这个很蛋疼,牵扯到很多: 正则、分词、utf-8、bytes、unicode ,牵扯到的知识很多~~
同问,qwen的中文是怎么表达
def analyze_string_decode_to_chinese(input_string):
print("原始字符串:", input_string)
unicode_points = [ord(char) for char in input_string]
print("Unicode 码点:", unicode_points)
decoded_points = [point - 162 if point > 255 else point for point in unicode_points]
print("调整后的码点:", decoded_points)
try:
# 将调整后的码点转换为字节
byte_array = bytes(decoded_points)
# 直接使用 UTF-8 解码转换为字符串
decoded_string = byte_array.decode('utf-8')
print("解码后的字符串:", decoded_string)
except Exception as e:
print("解码失败:", e)
# 使用之前的测试字符串
test_string = 'ä½łæĺ¯'
analyze_string_decode_to_chinese(test_string)
This issue has been automatically marked as inactive due to lack of recent activity. Should you believe it remains unresolved and warrants attention, kindly leave a comment on this thread.
def analyze_string_decode_to_chinese(input_string): print("原始字符串:", input_string) unicode_points = [ord(char) for char in input_string] print("Unicode 码点:", unicode_points) decoded_points = [point - 162 if point > 255 else point for point in unicode_points] print("调整后的码点:", decoded_points) try: # 将调整后的码点转换为字节 byte_array = bytes(decoded_points) # 直接使用 UTF-8 解码转换为字符串 decoded_string = byte_array.decode('utf-8') print("解码后的字符串:", decoded_string) except Exception as e: print("解码失败:", e) # 使用之前的测试字符串 test_string = 'ä½łæĺ¯' analyze_string_decode_to_chinese(test_string)
大佬,试试“字”这个字呢,åŃĹ,转出来是塗
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.