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

Skip to content

Commit c1962ab

Browse files
Merge branch 'master' of github.com:gopherjs/gopherjs into go1.20update
2 parents 81cc1d7 + 9ee2474 commit c1962ab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+2294
-926
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ jobs:
4848
windows_smoke:
4949
name: Window Smoke
5050
runs-on: windows-latest
51-
env:
52-
# Windows does not support source maps.
53-
SOURCE_MAP_SUPPORT: false
5451
steps:
5552
- uses: actions/checkout@v4
5653
with:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ GopherJS compiles Go code ([go.dev](https://go.dev/)) to pure JavaScript code. I
1515

1616
### What's new?
1717

18+
- 2025-08-19: Go 1.19 beta2 is [released](https://github.com/gopherjs/gopherjs/releases/tag/v1.19.0-beta2), with full generics support!
1819
- 2024-02-24: Go 1.19 support is [available](https://github.com/gopherjs/gopherjs/releases/tag/v1.19.0-beta1)!
1920
- 2022-08-18: Go 1.18 support is [available](https://github.com/gopherjs/gopherjs/releases/tag/v1.18.0-beta2%2Bgo1.18.5)!
2021
- 2021-09-19: Go 1.17 support is available!
@@ -124,7 +125,7 @@ package main
124125
import "github.com/gopherjs/gopherjs/js"
125126

126127
func main() {
127-
js.Global.Set("pet", map[string]interface{}{
128+
js.Global.Set("pet", map[string]any{
128129
"New": New,
129130
})
130131
}

0 commit comments

Comments
 (0)