Skip to content

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.28.8 age adoption passing confidence

Release Notes

AssemblyScript/assemblyscript (assemblyscript)

v0.28.8

Compare Source

New features

v0.28.7

Compare Source

Bug fixes

v0.28.6

Compare Source

New features

v0.28.5

Compare Source

Bug fixes

v0.28.4

Compare Source

Bug fixes
  • make asinit exit if package.json has a "type" not equal to "module" (#​2938) (6cd638e)
Other
  • chore: refactor ensureConstructor with CommonNames instead of raw string (#​2935) (69cc1cb)

v0.28.3

Compare Source

Bug fixes

v0.28.2

Compare Source

New features
Bug fixes
Other

v0.28.1

Compare Source

Bug fixes

v0.28.0

Compare Source

Breaking changes
Bug fixes
  • remove unused tmp local in array literal generated code (#​2917) (da77630)
  • builtin_call_indirect does not manage GC obj correctly (#​2924) (91976df)

v0.27.37

Compare Source

Bug fixes
  • Math.pow constant optimization behaves inconsistently in different versions of node (#​2920) (ae8c46c)
    use the pow function compiled by AS bootstrap to optimize the constant propagation of pow

v0.27.36

Compare Source

Bug fixes

v0.27.35

Compare Source

New features
Other

v0.27.34

Compare Source

Bug fixes

v0.27.33

Compare Source

New features
Other

v0.27.32

Compare Source

New features
Other
  • chore: enhance comment for extract_lane functions to include "idx" argument needs to be compile time constant (#​2890) (40850fe)

v0.27.31

Compare Source

New features
  • include runtime from current directory instead of lib (#​2884) (285afb1)
Other

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
  • **Ensure function locals are not in closures (

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 force-pushed the renovate/assemblyscript-0.x branch from 3a33fa1 to d7661d2 Compare February 8, 2025 05:02
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.32 Update dependency assemblyscript to v0.27.33 Feb 8, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from d7661d2 to f3abacf Compare February 9, 2025 04:51
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.33 Update dependency assemblyscript to v0.27.34 Feb 9, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from f3abacf to a05c3a7 Compare March 11, 2025 02:58
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.34 Update dependency assemblyscript to v0.27.35 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from a05c3a7 to 87d8086 Compare April 19, 2025 03:04
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.35 Update dependency assemblyscript to v0.27.36 Apr 19, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 87d8086 to 5325b66 Compare May 29, 2025 02:43
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.36 Update dependency assemblyscript to v0.27.37 May 29, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 5325b66 to df0cb9b Compare May 29, 2025 06:31
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.37 Update dependency assemblyscript to v0.28.0 May 29, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from df0cb9b to e671396 Compare May 30, 2025 05:39
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.0 Update dependency assemblyscript to v0.28.1 May 30, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch 2 times, most recently from d828621 to dbf9dd4 Compare June 4, 2025 05:29
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.1 Update dependency assemblyscript to v0.28.2 Jun 4, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from dbf9dd4 to 0dc134a Compare July 12, 2025 05:14
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.2 Update dependency assemblyscript to v0.28.3 Jul 12, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 0dc134a to 6b3a24c Compare August 6, 2025 02:11
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.3 Update dependency assemblyscript to v0.28.4 Aug 6, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 6b3a24c to 64430c1 Compare August 31, 2025 08:54
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.4 Update dependency assemblyscript to v0.28.5 Aug 31, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 64430c1 to 5e2664a Compare September 6, 2025 04:55
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.5 Update dependency assemblyscript to v0.28.6 Sep 6, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 5e2664a to b2c81a4 Compare September 9, 2025 05:39
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.6 Update dependency assemblyscript to v0.28.7 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from b2c81a4 to bba04ec Compare September 13, 2025 09:03
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.7 Update dependency assemblyscript to v0.28.8 Sep 13, 2025
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