Skip to content

Commit 1178e9c

Browse files
committed
v4.5.1
Attempt to fix Svelte error: await_outside_boundary
1 parent bb60983 commit 1178e9c

File tree

9 files changed

+64
-30
lines changed

9 files changed

+64
-30
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# EventCalendar changelog
22

3+
## 4.5.1
4+
August 11, 2025
5+
* Attempt to fix `Svelte error: await_outside_boundary` ([530](https://github.com/vkurko/calendar/issues/530))
6+
37
## 4.5.0
48
June 27, 2025
59
* `viewDidMount` input parameter has been adjusted to match documentation ([522](https://github.com/vkurko/calendar/issues/522))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
243243

244244
The first step is to include the following lines of code in the `<head>` section of your page:
245245
```html
246-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.css">
247-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
248248
```
249249

250250
<details>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<link rel="manifest" href="site.webmanifest">
1313
<link rel="stylesheet" href="global.css?20231021">
1414

15-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.css">
16-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.js"></script>
15+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
16+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
1717

1818
<style>
1919
.ec-timeline .ec-time, .ec-timeline .ec-line {

package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "event-calendar",
33
"private": true,
4-
"version": "4.5.0",
4+
"version": "4.5.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -11,9 +11,9 @@
1111
"publish": "node ./scripts/publish.cjs"
1212
},
1313
"devDependencies": {
14-
"@sveltejs/vite-plugin-svelte": "^5.1.0",
15-
"sass": "^1.89.2",
16-
"svelte": "^5.34.8",
14+
"@sveltejs/vite-plugin-svelte": "^5.1.1",
15+
"sass": "^1.90.0",
16+
"svelte": "^5.38.0",
1717
"vite": "^6.3.5",
1818
"vite-plugin-banner": "^0.8.1"
1919
}

packages/build/README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@ Full-sized drag & drop JavaScript event calendar with resource & timeline views:
1111

1212
Inspired by [FullCalendar](https://fullcalendar.io/), it implements similar options.
1313

14+
### Featured sponsors
15+
16+
<table>
17+
<tr>
18+
<td>
19+
20+
[![@steveb85](https://avatars.githubusercontent.com/u/50031994?s=52&v=4)](https://github.com/steveb85)
21+
</td>
22+
<td>
23+
24+
:heavy_plus_sign: [Get on the list](https://github.com/sponsors/vkurko)
25+
</td>
26+
</tr>
27+
</table>
28+
1429
## Table of contents
1530
- [Usage](#usage)
1631
- [JavaScript module](#javascript-module)
@@ -228,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
228243

229244
The first step is to include the following lines of code in the `<head>` section of your page:
230245
```html
231-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.css">
232-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
233248
```
234249

235250
<details>

packages/build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-calendar/build",
3-
"version": "4.5.0",
3+
"version": "4.5.1",
44
"title": "Event Calendar",
55
"description": "Full-sized drag & drop event calendar with resource & timeline views",
66
"keywords": [

packages/core/README.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@ Full-sized drag & drop JavaScript event calendar with resource & timeline views:
1111

1212
Inspired by [FullCalendar](https://fullcalendar.io/), it implements similar options.
1313

14+
### Featured sponsors
15+
16+
<table>
17+
<tr>
18+
<td>
19+
20+
[![@steveb85](https://avatars.githubusercontent.com/u/50031994?s=52&v=4)](https://github.com/steveb85)
21+
</td>
22+
<td>
23+
24+
:heavy_plus_sign: [Get on the list](https://github.com/sponsors/vkurko)
25+
</td>
26+
</tr>
27+
</table>
28+
1429
## Table of contents
1530
- [Usage](#usage)
1631
- [JavaScript module](#javascript-module)
@@ -228,8 +243,8 @@ This bundle contains a version of the calendar that includes all plugins and is
228243

229244
The first step is to include the following lines of code in the `<head>` section of your page:
230245
```html
231-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.css">
232-
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.0/dist/event-calendar.min.js"></script>
246+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.css">
247+
<script src="https://cdn.jsdelivr.net/npm/@event-calendar/build@4.5.1/dist/event-calendar.min.js"></script>
233248
```
234249

235250
<details>

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@event-calendar/core",
3-
"version": "4.5.0",
3+
"version": "4.5.1",
44
"title": "Event Calendar Core package",
55
"description": "Full-sized drag & drop event calendar with resource & timeline views",
66
"keywords": [

0 commit comments

Comments
 (0)