Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: remcohaszing/estree-util-value-to-estree
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.3.2
Choose a base ref
...
head repository: remcohaszing/estree-util-value-to-estree
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.4.0
Choose a head ref
  • 10 commits
  • 16 files changed
  • 1 contributor

Commits on Apr 4, 2025

  1. Fix __proto__ property emit

    The `__proto__` property is a special use case. It can be defined as a
    computed property in an object expression, or via `defineProperty`. If
    it’s assigned via a non-computed property in an object expression or via
    a regular property assignment, even computed, this sets the prototype of
    the object instead. This makes the generated code potentially vulnerable
    to prototype pollution.
    remcohaszing committed Apr 4, 2025
    Configuration menu
    Copy the full SHA
    d0c394f View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2025

  1. Use singular Object.defineProperty if possible

    If multiple properties are defined, we still use
    `Object.defineProperties`. Else we now use `Object.defineProperty`.
    remcohaszing committed Apr 6, 2025
    Configuration menu
    Copy the full SHA
    652e019 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    559fce2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1854f86 View commit details
    Browse the repository at this point in the history
  4. 3.3.3

    remcohaszing committed Apr 6, 2025
    Configuration menu
    Copy the full SHA
    cb5305c View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2025

  1. Configuration menu
    Copy the full SHA
    f56b0fa View commit details
    Browse the repository at this point in the history

Commits on May 7, 2025

  1. Add support for Float16Array

    This is only supported in environments where Float16Array is available.
    remcohaszing committed May 7, 2025
    Configuration menu
    Copy the full SHA
    471b4fe View commit details
    Browse the repository at this point in the history
  2. Declare there are no side effects in package.json

    This helps bundlers with tree shaking.
    remcohaszing committed May 7, 2025
    Configuration menu
    Copy the full SHA
    23b636f View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. Update dev dependencies

    remcohaszing committed May 9, 2025
    Configuration menu
    Copy the full SHA
    252291c View commit details
    Browse the repository at this point in the history
  2. 3.4.0

    remcohaszing committed May 9, 2025
    Configuration menu
    Copy the full SHA
    a07715c View commit details
    Browse the repository at this point in the history
Loading