Skip to content

Commit 15360d0

Browse files
authored
Merge pull request #172 from avh4/release/3.7.0
Merge release branch to main Release/3.7.0
2 parents d3e1d0e + 74e4f67 commit 15360d0

File tree

17 files changed

+731
-453
lines changed

17 files changed

+731
-453
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 3.7.0
2+
3+
New features:
4+
5+
- `clickLink` now works for internal links when testing a `Browser.application`
6+
- `clickLink` now works for links with aria-label
7+
- `clickLink` now works for links containing img with alt text
8+
- `pushUrl` now works properly for relative urls with query and/or fragment
9+
- Added `SimulatedEffect.Task.sequence`
10+
11+
112
## 3.6.3
213

314
Bug fixes:

PUBLISHING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
- `git switch -c release/<new version>`
2+
- Optionally update javascript dependencies with `npx npm-check-updates` and commit changes
23
- `npx elm bump`
34
- Update CHANGELOG.md (replace "main" with the new version number, and review the notes for the new version)
45
- Commit changes

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ import MyProgram exposing (Flags, Msg, Model) -- just an imaginary example
7979
start : String -> Flags -> ProgramTest Model Msg (Cmd Msg)
8080
start initialUrl flags =
8181
ProgramTest.createApplication
82-
{ onUrlChange = MyProgram.OnRouteChange
82+
{ onUrlChange = MyProgram.OnUrlChange
83+
, onUrlRequest = MyProgram.OnUrlRequest
8384
, init =
8485
-- NOTE: the type of MyProgram.init is:
8586
-- MyProgram.Flags -> Navigation.Location -> (MyProgram.Model, Cmd MyProgram.Msg)

elm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "avh4/elm-program-test",
44
"summary": "Test Elm programs",
55
"license": "MIT",
6-
"version": "3.6.3",
6+
"version": "3.7.0",
77
"exposed-modules": [
88
"ProgramTest",
99
"SimulatedEffect.Cmd",

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"devDependencies": {
3-
"@vue/babel-preset-app": "^4.5.15",
3+
"@vue/babel-preset-app": "^5.0.8",
44
"chokidar-cli": "^3.0.0",
5-
"concurrently": "^7.0.0",
5+
"concurrently": "^7.3.0",
66
"elm-doc-preview": "^5.0.5",
7-
"elm-test": "^0.19.1-revision7",
8-
"elm-tooling": "^1.7.0",
9-
"vuepress": "^1.9.5"
7+
"elm-test": "^0.19.1-revision9",
8+
"elm-tooling": "^1.8.0",
9+
"vuepress": "^1.9.7"
1010
},
1111
"scripts": {
1212
"postinstall": "elm-tooling install",

0 commit comments

Comments
 (0)