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: sveltejs/kit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @sveltejs/kit@1.0.0-next.415
Choose a base ref
...
head repository: sveltejs/kit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @sveltejs/kit@1.0.0-next.416
Choose a head ref
  • 4 commits
  • 15 files changed
  • 4 contributors

Commits on Aug 17, 2022

  1. [fix] remove session remnants from template (#5966)

    Session has been removed in #5946
    ignatiusmb authored Aug 17, 2022
    Copy the full SHA
    52e8987 View commit details
  2. Copy the full SHA
    64760cb View commit details
  3. Copy the full SHA
    3241f71 View commit details
  4. Version Packages (next) (#5969)

    Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
    github-actions[bot] and github-actions[bot] authored Aug 17, 2022
    Copy the full SHA
    2ccbd3c View commit details
5 changes: 5 additions & 0 deletions .changeset/blue-jobs-laugh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

remove session remnants
5 changes: 5 additions & 0 deletions .changeset/loud-moose-tap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@sveltejs/kit': patch
---

[fix] allow additional keys in svelte.config.js
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
@@ -60,6 +60,7 @@
"blue-bees-jump",
"blue-bulldogs-visit",
"blue-cats-mate",
"blue-jobs-laugh",
"blue-llamas-exist",
"blue-pans-warn",
"blue-parents-invite",
@@ -495,6 +496,7 @@
"long-turkeys-boil",
"loud-dancers-cough",
"loud-fishes-drum",
"loud-moose-tap",
"loud-parrots-sell",
"loud-seals-remember",
"loud-shirts-relax",
@@ -951,6 +953,7 @@
"stupid-owls-provide",
"stupid-schools-fail",
"sweet-parents-sell",
"sweet-timers-sip",
"swift-dingos-glow",
"swift-dots-cry",
"swift-horses-march",
5 changes: 5 additions & 0 deletions .changeset/sweet-timers-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'create-svelte': patch
---

remove outdated notes in `api.ts`
6 changes: 1 addition & 5 deletions packages/adapter-static/test/apps/spa/src/app.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/// <reference types="@sveltejs/kit" />

declare namespace App {
interface Session {
count: number;
}
}
declare namespace App {}
1 change: 0 additions & 1 deletion packages/adapter-static/test/apps/spa/src/global.d.ts

This file was deleted.

5 changes: 0 additions & 5 deletions packages/adapter-static/test/apps/spa/src/hooks.js

This file was deleted.

8 changes: 8 additions & 0 deletions packages/create-svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# create-svelte

## 2.0.0-next.154

### Patch Changes

- remove session remnants ([#5966](https://github.com/sveltejs/kit/pull/5966))

* remove outdated notes in `api.ts` ([#5964](https://github.com/sveltejs/kit/pull/5964))

## 2.0.0-next.153

### Patch Changes
2 changes: 1 addition & 1 deletion packages/create-svelte/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-svelte",
"version": "2.0.0-next.153",
"version": "2.0.0-next.154",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/kit",
2 changes: 0 additions & 2 deletions packages/create-svelte/templates/default/src/app.d.ts
Original file line number Diff line number Diff line change
@@ -11,6 +11,4 @@ declare namespace App {
// interface PrivateEnv {}

// interface PublicEnv {}

// interface Session {}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/*
This module is used by the /todos endpoint to
make calls to api.svelte.dev, which stores todos
for each user. The leading underscore indicates that this is
a private module, _not_ an endpoint — visiting /todos/_api
will net you a 404 response.
for each user.
(The data on the todo app will expire periodically; no
guarantees are made. Don't use it to organise your life.)
1 change: 0 additions & 1 deletion packages/create-svelte/templates/skeleton/src/app.d.ts
Original file line number Diff line number Diff line change
@@ -6,5 +6,4 @@ declare namespace App {
// interface Platform {}
// interface PrivateEnv {}
// interface PublicEnv {}
// interface Session {}
}
6 changes: 6 additions & 0 deletions packages/kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sveltejs/kit

## 1.0.0-next.416

### Patch Changes

- [fix] allow additional keys in svelte.config.js ([#5961](https://github.com/sveltejs/kit/pull/5961))

## 1.0.0-next.415

### Patch Changes
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sveltejs/kit",
"version": "1.0.0-next.415",
"version": "1.0.0-next.416",
"repository": {
"type": "git",
"url": "https://github.com/sveltejs/kit",
1 change: 1 addition & 0 deletions packages/kit/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -109,6 +109,7 @@ export interface Config {
extensions?: string[];
kit?: KitConfig;
preprocess?: any;
[key: string]: any;
}

export interface KitConfig {