pulumi-fly icon indicating copy to clipboard operation
pulumi-fly copied to clipboard

chore(deps): bump github.com/pulumi/pulumi-terraform-bridge/v3 from 3.87.0 to 3.89.1 in /provider

Open dependabot[bot] opened this issue 1 year ago • 0 comments

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

Full Changelog: https://github.com/pulumi/pulumi-terraform-bridge/compare/v3.89.0...v3.89.1

v3.89.0

What's Changed

Full Changelog: https://github.com/pulumi/pulumi-terraform-bridge/compare/v3.88.0...v3.89.0

v3.88.0

What's Changed

... (truncated)

Commits
  • 662459e Infer Map[string] when the Map's element type is unspecified (#2316)
  • 0f1e694 Fix tf2pulumi renames
  • 8a98bfb Enforce validation with a custom generator
  • 823fd88 Enforce .Elem.Fields (instead of .Fields) for object types
  • 992ffd4 Simplify call to tfbridge.IsMaxItemsOne
  • 95ee4a1 Fix a typo in a comment: "entityDOcs" -> "entityDocs"
  • d2e2253 Fix a typo in a comment: "documention" -> "documentation"
  • 8b54f9b Test a special set diff case (#2304)
  • 6b55573 Automated Pulumi/Pulumi upgrade (#2311)
  • e468215 Fix typechecking booleans (#2310)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)
  • @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)
  • @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)

dependabot[bot] avatar Aug 18 '24 08:08 dependabot[bot]

词表这个很蛋疼,牵扯到很多: 正则、分词、utf-8、bytes、unicode ,牵扯到的知识很多~~

gg22mm avatar Jun 21 '24 10:06 gg22mm

同问,qwen的中文是怎么表达

ailungoal avatar Jul 19 '24 02:07 ailungoal

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)

PaperPlaneDeemo avatar Jul 22 '24 02:07 PaperPlaneDeemo

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.

github-actions[bot] avatar Aug 21 '24 08:08 github-actions[bot]

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)

大佬,试试“字”这个字呢,åŃĹ,转出来是塗

FloatFrank avatar Oct 20 '24 11:10 FloatFrank

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.

github-actions[bot] avatar Feb 23 '25 08:02 github-actions[bot]