Thanks to visit codestin.com
Credit goes to github.com

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: netlify/primitives
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: static-v3.0.9
Choose a base ref
...
head repository: netlify/primitives
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: static-v3.0.10
Choose a head ref
  • 14 commits
  • 55 files changed
  • 10 contributors

Commits on Aug 19, 2025

  1. chore(deps): update actions/checkout action to v5 (#428)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    15f885b View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency @eslint/compat to v1.3.2 (#392)

    * chore(deps): update dependency @eslint/compat to v1.3.2
    
    * Removes unnecessary type coercions
    
    Simplifies code by removing redundant Boolean() wrapper and toString() call where the values are already in the expected format.
    
    * Improves TypeScript type safety and annotations
    
    Adds explicit type annotations to improve code clarity and prevent potential type-related issues.
    
    Updates server property type to use InstanceType for better type inference, adds Request type annotation to callback parameter, casts image buffer to BodyInit for Response constructor compatibility, and adds type-only import modifier to Logger import.
    
    * Formats import statement for better readability
    
    Restructures the multi-line import from @netlify/dev-utils to follow consistent code formatting standards with proper line breaks and indentation.
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: jake champion <[email protected]>
    renovate[bot] and JakeChampion authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    80724e6 View commit details
    Browse the repository at this point in the history
  3. chore(deps): update dependency typescript to v5.9.2 (#425)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    fa4da00 View commit details
    Browse the repository at this point in the history
  4. fix(deps): update dependency @netlify/zip-it-and-ship-it to ^14.1.3 (#…

    …418)
    
    * fix(deps): update dependency @netlify/zip-it-and-ship-it to ^14.1.3
    
    * Adds @nuxt/devtools-kit as direct dev dependency
    
    Moves @nuxt/devtools-kit from nested dependency to top-level dev dependency in the Nuxt module package.
    
    Enables direct access to devtools kit APIs and utilities without relying on transitive dependency resolution through @nuxt/devtools.
    
    ---------
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: jake champion <[email protected]>
    renovate[bot] and JakeChampion authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    c08dfc9 View commit details
    Browse the repository at this point in the history
  5. chore(deps): update dependency eslint-plugin-n to v17.21.3 (#421)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    9354811 View commit details
    Browse the repository at this point in the history
  6. fix(deps): update dependency @netlify/edge-functions-bootstrap to ^2.…

    …16.0 (#410)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Aug 19, 2025
    Configuration menu
    Copy the full SHA
    4ddfeec View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2025

  1. fix: don't reüse used request in otel fetch (#435)

    * Add failing test for fetch
    
    * Stop reüsing a used request
    
    * Update fetch.test.ts
    
    Co-authored-by: Jake Champion <[email protected]>
    
    ---------
    
    Co-authored-by: Jake Champion <[email protected]>
    chee and JakeChampion authored Aug 26, 2025
    Configuration menu
    Copy the full SHA
    6d755f6 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2025

  1. chore: release main (#433)

    Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
    token-generator-app[bot] authored Aug 27, 2025
    Configuration menu
    Copy the full SHA
    422f31a View commit details
    Browse the repository at this point in the history
  2. ci: allow triggering npm release with workflow_dispatch (#439)

    * ci: allow triggering npm release with workflow_dispatch
    
    * chore: format
    pieh authored Aug 27, 2025
    Configuration menu
    Copy the full SHA
    7ed5b4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    64b4fb4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    793b853 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2025

  1. fix: restore missing Netlify global type in @netlify/functions (#434

    )
    
    * chore: fix existing vitest type tests
    
    These weren't asserting anything, and vitest type tests weren't enabled.
    
    * build: add missing `skipLibCheck`
    
    This is a tough one to explain. This was a latent issue due to a confluence of things:
    - we don't explicitly do type checking in this repo
    - instead we rely implicitly on the fact that we use tsup in part to build `.dts` files, which
      performs type checking
    - but tsup type checking behaves slightly differently than just running `tsc` in various little
      ways, largely because it's scoped per entrypoint
    - we weren't setting `skipLibCheck: true` in the `tsconfig.json`, which seemed reasonable as there
      were no errors inside `node_modules/`
    - now when I went to set up vitest type tests, this started type checking some stuff under the hood,
      and this failed with type errors inside `node_modules/`, despite it using our `tsconfig.json`
    - it turns out this is because the tsup type checking approach was not encountering these errors;
      you can confirm this by running `npx --package=typescript tsc --noEmit` in `packages/functions/`
    
    So, TL;DR: we had a latent necessity for `skipLibCheck` obscured by our weird implicit type checking via `tsup --dts`.
    
    ---------
    
    Co-authored-by: copilot-swe-agent[bot] <[email protected]>
    Co-authored-by: serhalp <[email protected]>
    Co-authored-by: Philippe Serhal <[email protected]>
    3 people authored Aug 28, 2025
    Configuration menu
    Copy the full SHA
    2e028b9 View commit details
    Browse the repository at this point in the history
  2. fix(vite-plugin): pass environmentVariables option to NetlifyDev (#442)

    * fix(vite-plugin): pass environmentVariables option to NetlifyDev
    ascorbic authored Aug 28, 2025
    Configuration menu
    Copy the full SHA
    214ac26 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2025

  1. chore: release main (#441)

    Co-authored-by: token-generator-app[bot] <82042599+token-generator-app[bot]@users.noreply.github.com>
    token-generator-app[bot] authored Aug 29, 2025
    Configuration menu
    Copy the full SHA
    2f2beb4 View commit details
    Browse the repository at this point in the history
Loading