jedisct1 / as-wasi

An AssemblyScript API layer for WASI system calls.
MIT License
253 stars 18 forks source link

Bump assemblyscript from 0.21.7 to 0.27.0 #149

Open dependabot[bot] opened 1 year ago

dependabot[bot] commented 1 year ago

Bumps assemblyscript from 0.21.7 to 0.27.0.

Release notes

Sourced from assemblyscript's releases.

v0.27.0

Breaking changes

  • Check global uses more strictly (#2632) (5cbbf844ecfda16c54b156734baccd9dfc2fe9f2) Use of global variables (in the Wasm sense) is now checked more strictly to prevent undesirable execution order. If the compiler detects that it is possible that a variable might not have been initialized when accessed, a diagnostic is produced. It cannot be ruled out that some amount of existing code will be affected, since such checks are performed at runtime in JS but are proven at compile time in AS. If encountered, the fix is to move the variable's declaration up, say before the first invocation of a function (that might call another function) accessing the variable, so it is guaranteed that it is initialized before its first use.

Bug fixes

  • Update this and return type in generated child class constructor (#2635) (941b0e1aed16c50dd80fc66112275f4f5c4b6089)

Other

  • Check that builtins are implemented (#2636) (e22a599ce68f376def12590331898d39f10f7611)
  • Modernize issue templates (5823c0e75e5d6a0ba7eea4acfc1d92d6aef6fe9d)

v0.26.7

Bug fixes

  • Detect recursive types early (#2634) (bcfb5e8d6489459fc7c98ee318a0dff2bb738a25)

v0.26.6

Bug fixes

  • Handle all possible element kinds when walking exports (#2631) (e06c7bc2d266a0ccc0534ae6925ba8c55b97369c)
  • Diagnose not yet implemented 'in' operator (#2629) (7ccadf068749f7e8d660fa8796093dd70d94d48f)

Other

  • Add parse methods to portable. Also fix couple type definitions (#2627) (45352637bcac8f5b2dc1cb3e43609af7f3782e47)

v0.26.5

Bug fixes

  • Correctly analyze ParenthesizedExpression and FunctionExpression in parser (#2605) (#2620) (c0a0fd09603de385f84d64b3cc46e9e340ba803f)

Other

  • Add reorder-globals pass to pass pipeline (#2625) (eb603485f87044551dbaf7c79c2285363f935edb)
  • Fix typos (#2621) (849a13c9c235befc934e57d342e1ce97b5e5d9da)

v0.26.4

Bug fixes

  • Also support null | T in parser (#2507) (b08fe23bae904ac0c288e8b48214ad4d18497cda)

v0.26.3

New features

  • Provide an easily reusable Web SDK (#2615) (6a7aaefc93ef8b755658dfea003b4e6a45614bf4)

... (truncated)

Commits
  • 5cbbf84 Check global uses more strictly (#2632)
  • 941b0e1 fix: Update this and return type in generated child class constructor (#2635)
  • e22a599 Check that builtins are implemented (#2636)
  • 5823c0e Modernize issue templates
  • bcfb5e8 fix: Detect recursive types early (#2634)
  • e06c7bc fix: Handle all possible element kinds when walking exports (#2631)
  • 7ccadf0 fix: Diagnose not yet implemented 'in' operator (#2629)
  • 4535263 Add parse methods to portable. Also fix couple type definitions (#2627)
  • eb60348 Add reorder-globals pass to pass pipeline (#2625)
  • 860ee20 Unify badges style
  • 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 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)