Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Oct 30, 2022

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
assemblyscript (source) 0.21.60.28.9 age adoption passing confidence

Release Notes

AssemblyScript/assemblyscript (assemblyscript)

v0.28.9

Compare Source

New features
Other

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

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
Copy link
Contributor Author

renovate bot commented Oct 30, 2022

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate
Copy link
Contributor Author

renovate bot commented Oct 30, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: [email protected]
npm ERR! Found: [email protected]
npm ERR! node_modules/rollup
npm ERR!   dev rollup@"3.2.3" from the root project
npm ERR!   peer rollup@">=1.26.3" from [email protected]
npm ERR!   node_modules/rollup-plugin-typescript2
npm ERR!     dev rollup-plugin-typescript2@"0.34.1" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer rollup@">=0.60.0 <3" from [email protected]
npm ERR! node_modules/rollup-plugin-babel
npm ERR!   dev rollup-plugin-babel@"4.4.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: [email protected]
npm ERR! node_modules/rollup
npm ERR!   peer rollup@">=0.60.0 <3" from [email protected]
npm ERR!   node_modules/rollup-plugin-babel
npm ERR!     dev rollup-plugin-babel@"4.4.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-04-11T04_36_02_507Z-debug-0.log

@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 666b09a to 5cc6cec Compare November 12, 2022 02:22
@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 5cc6cec to 94c7dc0 Compare November 13, 2022 03:42
@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 94c7dc0 to 064de04 Compare November 15, 2022 03:33
@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 064de04 to 3183609 Compare November 17, 2022 04:15
@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 3183609 to 200368d Compare December 6, 2022 02:57
@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 200368d to 0277a97 Compare December 15, 2022 02:29
@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 0277a97 to 4c21b01 Compare December 23, 2022 02:55
@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 4c21b01 to 8c7abfb Compare March 17, 2023 14:08
@renovate renovate bot changed the title Update dependency assemblyscript to v0.25.2 Update dependency assemblyscript to v0.27.1 Mar 17, 2023
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.1 Update dependency assemblyscript to v0.27.2 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 8c7abfb to 82b1b53 Compare April 17, 2023 12:09
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 82b1b53 to e01ff91 Compare May 28, 2023 12:24
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.2 Update dependency assemblyscript to v0.27.5 May 28, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from e01ff91 to 0faa820 Compare July 19, 2023 04:29
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.5 Update dependency assemblyscript to v0.27.6 Jul 19, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 0faa820 to 30f8270 Compare August 1, 2023 04:30
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.6 Update dependency assemblyscript to v0.27.7 Aug 1, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 30f8270 to a7082ec Compare August 2, 2023 04:09
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.7 Update dependency assemblyscript to v0.27.8 Aug 2, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from a7082ec to d38d880 Compare August 14, 2023 04:41
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.8 Update dependency assemblyscript to v0.27.9 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 3d16404 to eb9c94d Compare December 15, 2024 00:13
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from eb9c94d to 2c96225 Compare January 22, 2025 06:03
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.31 Update dependency assemblyscript to v0.27.32 Jan 22, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 2c96225 to e121567 Compare February 9, 2025 08:24
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.32 Update dependency assemblyscript to v0.27.34 Feb 9, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from e121567 to c5356b2 Compare March 11, 2025 07:06
@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 c5356b2 to f8ade62 Compare April 19, 2025 02:56
@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 f8ade62 to b0c277e Compare May 29, 2025 05:27
@renovate renovate bot changed the title Update dependency assemblyscript to v0.27.36 Update dependency assemblyscript to v0.28.0 May 29, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from b0c277e to 2e387d9 Compare May 30, 2025 02:23
@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 from 2e387d9 to f0a5fe7 Compare June 4, 2025 02:38
@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 f0a5fe7 to c46a686 Compare July 12, 2025 03:02
@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 c46a686 to c290d49 Compare August 6, 2025 04:21
@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 c290d49 to e12f6bf Compare August 31, 2025 09:10
@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 e12f6bf to 77f9053 Compare September 6, 2025 02:30
@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 77f9053 to f9cc9e7 Compare September 9, 2025 04:41
@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 f9cc9e7 to 6ed2031 Compare September 13, 2025 04:05
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.7 Update dependency assemblyscript to v0.28.8 Sep 13, 2025
@renovate renovate bot force-pushed the renovate/assemblyscript-0.x branch from 6ed2031 to 972d1d3 Compare October 18, 2025 04:29
@renovate renovate bot changed the title Update dependency assemblyscript to v0.28.8 Update dependency assemblyscript to v0.28.9 Oct 18, 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.

1 participant