Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency assemblyscript to v0.27.30 #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 16, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
assemblyscript (source) 0.19.23 -> 0.27.30 age adoption passing confidence

Release Notes

AssemblyScript/assemblyscript (assemblyscript)

v0.27.30

Compare Source

Bug fixes
  • strictly check operator overload ambiguity (#​2762) (dfc8a65)
    Operator overload is an internal mechanism, it can support to compare user-defined class, but it need to be limited.
    a == b and b == a should run the same function and get the same result in semantic level. Allowing ambiguity is bug prone.
  • report error for mulitple union type (#​2872) (1847c8f)
Other

v0.27.29

Compare Source

Bug fixes
Other

v0.27.28

Compare Source

Bug fixes
  • detect execution environment when loading wasm module (#​2855) (78963c5)
Other
  • chore: temporary disable std/math.release.wat check in aarch64 osx (#​2856) (be49610)

v0.27.27

Compare Source

Bug fixes
  • for statement increment will be processed in correct context (#​2839) (64cba2e)
Other

v0.27.26

Compare Source

Bug fixes
  • ignore this (#​2834) (b640ff2)
    This is a dummy commit to create a new release.
Other
  • Compile incrementors in for loops within the initializer's flow (#​2826) (9102c05)
    It turns out that incrementors were compiled with the body's flow, which
    meant that the incrementor had access to local variables declared in the
    body. Now, incrementors no longer have access to such variables.

    Fixes #​2825.

  • Binaryen on transform (#​2832) (9605c03)

    • Expose binaryen instance on transform

    • Fix invalid import in generated output

v0.27.25

Compare Source

Bug fixes

v0.27.24

Compare Source

Bug fixes

v0.27.23

Compare Source

Bug fixes
Other
  • Update Binaryen (#​2811) (dc547a8)
    This version of binaryen.js has the requisite 4 GiB max memory change.
    Fixes #​2810.

v0.27.22

Compare Source

New features

v0.27.21

Compare Source

Bug fixes

v0.27.20

Compare Source

Bug fixes
  • Improve date parsing (fractional seconds, UTC offsets) (#​2803) (d142ac8)

v0.27.19

Compare Source

Bug fixes

v0.27.18

Compare Source

Bug fixes
Other

v0.27.17

Compare Source

Bug fixes
  • placeholder commit for aspublish (#​2789) (f055bff)
    The commit that fixed the regression didn't start with "fix:" and such,
    so this commit accounts for that instead.
Other

v0.27.16

Compare Source

Bug fixes
Other

v0.27.15

Compare Source

Bug fixes
  • add diagnose for non-declarative statements in namespace (#​2765) (0b8abe4)

v0.27.14

Compare Source

Bug fixes
Other

v0.27.13

Compare Source

Bug fixes

v0.27.12

Compare Source

Bug fixes

v0.27.11

Compare Source

Bug fixes
Other

v0.27.10

Compare Source

Bug fixes

v0.27.9

Compare Source

Bug fixes

v0.27.8

Compare Source

Bug fixes

v0.27.7

Compare Source

Bug fixes
Other

v0.27.6

Compare Source

Bug fixes

v0.27.5

Compare Source

Bug fixes

v0.27.4

Compare Source

Bug fixes

v0.27.3

Compare Source

Bug fixes
Other

v0.27.2

Compare Source

New features
Bug fixes
  • Update Binaryen to 112.0.0-nightly.20230411 (#​2683) (f7571a4)
    Emscripten lowered the default stack size of emitted modules to 64kb recently, easily producing stack overflows in the optimizer. This version of Binaryen increases stack size to the previous 5mb again.
Other

v0.27.1

Compare Source

Bug fixes
  • Move compilation of instanceof helpers post override discovery (#​2661) (9497c3d)
Other

v0.27.0

Compare Source

Breaking changes
  • Check global uses more strictly (#​2632) (5cbbf84)
    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) (941b0e1)
Other

v0.26.7

Compare Source

Bug fixes

v0.26.6

Compare Source

Bug fixes
Other
  • Add parse methods to portable. Also fix couple type definitions (#​2627) (4535263)

v0.26.5

Compare Source

Bug fixes
Other

v0.26.4

Compare Source

Bug fixes

v0.26.3

Compare Source

New features

v0.26.2

Compare Source

Bug fixes
Other

v0.26.1

Compare Source

Bug fixes
  • Mitigate endless loop in (invalid) override discovery (d46bfeb)
  • Check ASI upon unusual trailing expressions (#​2252) (282d924)
Other
  • [NFC] Simplify lookup tables with reinterprect casts (#​2609) (c9297db)

v0.26.0

Compare Source

Breaking changes
  • Add LUB computation for class types (#​2594) (4b3b390)
    Binary and ternary expressions now compute and evaluate to the least upper bound of two not identical class type inputs in the absence of a better fitting contextual type. Technically a breaking change, yet likely without noticeable effects on existing code.
Bug fixes
  • Defuse assert in lookupPropertyAccessExpression after prior error (82812de)
  • Support trailing comma in function type parameters (#​2608) (1ff71e5)
Other

v0.25.2

Compare Source

New features
  • Add --uncheckedBehavior to customize the use of unchecked() (#​2575) (7a35ff8)
Bug fixes
Other

v0.25.1

Compare Source

Bug fixes
Other

v0.25.0

Compare Source

Breaking changes
  • Fix variable initialization checks / revise flow logic (#​2578) (6717de0)
    Initialization of global variables sometimes wasn't guaranteed before, allowing unsafe behavior if initialization indeed wasn't performed before access. To mitigate, variables from now on require either an initializer, a primitive type with a trivial default value (typically 0), a nullable type (if a reference, defaulting to null) or otherwise annotation with definitive assignment (i.e. let someObject!: ..., then inserting a runtime check upon access).
Other

v0.24.1

Compare Source

Bug fixes

v0.24.0

Compare Source

Breaking changes
  • Implicitly inherit from Object (#​2559) (688dcd2)
    Constant class ids of String, ArrayBuffer etc. moved one value up, with Object now represented by ID=0.

v0.23.1

Compare Source

Bug fixes

v0.23.0

Compare Source

Breaking changes
  • Remove no longer used half of RTTI (#​2555) (a565d73)
    RTTI at __rtti_base no longer contains base class ids and now is just type flags.
  • Make class fields a special kind of property (#​2548) (0fd4db2)
    Element kinds FIELD and FIELD_PROTOTYPE and elements Field and FieldPrototype have been removed. Instead, Property inherit previous Field functionality, indicated by property.isField.
Other

v0.22.0

Compare Source

Breaking changes
  • Refactor enum identifiers to TitleCase and apply some changes in AST nodes (#​2501) (a7d10ba)
Other

v0.21.7

Compare Source

Bug fixes
Other

v0.21.6

Compare Source

Bug fixes
Other

v0.21.5

Compare Source

Bug fixes
Other

v0.21.4

Compare Source

Bug fixes
Other

v0.21.3

Compare Source

New features
  • Add warning about NaN invariant and -0.0 for direct comparisons (#​2475) (6c79e39)
Bug fixes
Other

v0.21.2

Compare Source

New features
  • Introduce new parse methods for builtin value types. Deprecate XX.parseInt/parseFloat (#​2465) (12b3f35)
Bug fixes
  • Element access operator should derive index type properly from overloaded signature (#​2468) (141e350)
  • Fix number of lines for f32x4.shuffle definition (#​2459) (61317b4)
Other

v0.21.1

Compare Source

Bug fixes
  • handle void to void during convertExpression (#​2412) (707fc7a)
  • Fix resolveNamedType cannot resolve type parameter in contextual element (#​2448) (b044b71)
Other

v0.21.0

Compare Source

Breaking changes
New features
Bug fixes

Configuration

📅 Schedule: Branch creation - "on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 8cc45af to fc18655 Compare October 21, 2022 02:07
@renovate renovate bot changed the title Update dependency assemblyscript to v0.21.6 Update dependency assemblyscript to v0.21.7 Oct 21, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from fc18655 to b286aa8 Compare October 24, 2022 04:48
@renovate renovate bot changed the title Update dependency assemblyscript to v0.21.7 Update dependency assemblyscript to v0.22.0 Oct 24, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from b286aa8 to 1ca9daa Compare October 26, 2022 07:26
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 1ca9daa to e62e2bf Compare November 12, 2022 02:25
@renovate renovate bot changed the title Update dependency assemblyscript to v0.22.0 Update dependency assemblyscript to v0.23.0 Nov 12, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from e62e2bf to 3b95e99 Compare November 13, 2022 03:44
@renovate renovate bot changed the title Update dependency assemblyscript to v0.23.0 Update dependency assemblyscript to v0.23.1 Nov 13, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 3b95e99 to 7690a45 Compare November 15, 2022 03:58
@renovate renovate bot changed the title Update dependency assemblyscript to v0.23.1 Update dependency assemblyscript to v0.24.0 Nov 15, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7690a45 to 2344a07 Compare November 17, 2022 02:30
@renovate renovate bot changed the title Update dependency assemblyscript to v0.24.0 Update dependency assemblyscript to v0.24.1 Nov 17, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 2344a07 to e2260ec Compare December 6, 2022 01:28
@renovate renovate bot changed the title Update dependency assemblyscript to v0.24.1 Update dependency assemblyscript to v0.25.0 Dec 6, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from e2260ec to aff4240 Compare December 15, 2022 02:52
@renovate renovate bot changed the title Update dependency assemblyscript to v0.25.0 Update dependency assemblyscript to v0.25.1 Dec 15, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from aff4240 to 16efa64 Compare December 23, 2022 03:30
@renovate renovate bot changed the title Update dependency assemblyscript to v0.25.1 Update dependency assemblyscript to v0.25.2 Dec 23, 2022
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 16efa64 to 7af9e12 Compare December 23, 2022 09:19
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7af9e12 to 7b4da6a Compare January 7, 2023 03:54
@renovate renovate bot changed the title Update dependency assemblyscript to v0.25.2 Update dependency assemblyscript to v0.26.0 Jan 7, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 7b4da6a to a30fbf5 Compare January 9, 2023 04:30
@renovate renovate bot changed the title Update dependency assemblyscript to v0.26.0 Update dependency assemblyscript to v0.26.1 Jan 9, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from a30fbf5 to f6f2ca4 Compare January 13, 2023 01:36
@renovate renovate bot changed the title Update dependency assemblyscript to v0.26.1 Update dependency assemblyscript to v0.26.2 Jan 13, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from f6f2ca4 to 956e8d3 Compare January 14, 2023 04:25
@renovate renovate bot changed the title Update dependency assemblyscript to v0.26.2 Update dependency assemblyscript to v0.26.3 Jan 14, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 956e8d3 to a17f6e7 Compare January 18, 2023 06:29
@renovate renovate bot changed the title Update dependency assemblyscript to v0.26.3 Update dependency assemblyscript to v0.26.4 Jan 18, 2023
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.15 Update dependency assemblyscript to v0.27.16 Nov 9, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 087d1bc to 99a81ec Compare November 9, 2023 22:04
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.16 Update dependency assemblyscript to v0.27.17 Nov 9, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 99a81ec to 5c94d0a Compare November 15, 2023 03:21
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.17 Update dependency assemblyscript to v0.27.18 Nov 15, 2023
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.18 Update dependency assemblyscript to v0.27.19 Nov 18, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch 2 times, most recently from caecfd9 to d9aa985 Compare November 21, 2023 02:36
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.19 Update dependency assemblyscript to v0.27.20 Nov 21, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from d9aa985 to 5925bc7 Compare November 22, 2023 04:27
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.20 Update dependency assemblyscript to v0.27.21 Nov 22, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 5925bc7 to dd52eab Compare November 24, 2023 02:01
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.21 Update dependency assemblyscript to v0.27.22 Nov 24, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from dd52eab to 72c4602 Compare January 16, 2024 01:46
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.22 Update dependency assemblyscript to v0.27.23 Jan 16, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 72c4602 to 73b4866 Compare January 31, 2024 03:43
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.23 Update dependency assemblyscript to v0.27.24 Jan 31, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 73b4866 to 05173ac Compare March 9, 2024 02:04
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.24 Update dependency assemblyscript to v0.27.25 Mar 9, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 05173ac to 524ad8b Compare April 3, 2024 03:55
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.25 Update dependency assemblyscript to v0.27.26 Apr 3, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 524ad8b to 622e8b1 Compare April 11, 2024 02:31
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.26 Update dependency assemblyscript to v0.27.27 Apr 11, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 622e8b1 to 94da001 Compare June 22, 2024 04:11
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.27 Update dependency assemblyscript to v0.27.28 Jun 22, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 94da001 to e144fa0 Compare July 7, 2024 04:23
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.28 Update dependency assemblyscript to v0.27.29 Jul 7, 2024
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from e144fa0 to 9bf6248 Compare September 27, 2024 03:12
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.29 Update dependency assemblyscript to v0.27.30 Sep 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants