Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version: 5.0.0 #2411

Merged
merged 47 commits into from
Jul 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e8ced07
chore: update min node version to 14.14.0
idoros Mar 27, 2022
77dd1aa
ci: remove node 18 from CI tests
idoros Mar 27, 2022
95e82f8
chore(core): remove deprecated meta fields
idoros Mar 27, 2022
0072496
refactor(core)!: change Stylable to accept named config
idoros Mar 27, 2022
57fd30d
Merge remote-tracking branch 'origin/master' into ido/stylable-v5
tzachbon Apr 12, 2022
852eb33
feat(cli): remove default `cjs` format (#2441)
tzachbon Apr 24, 2022
abd6aa8
feat(core): expose meta dependencies API (#2440)
tzachbon Apr 24, 2022
a3df008
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
idoros Apr 28, 2022
179bd24
refactor(core): remove deprecated public APIs (#2483)
idoros May 1, 2022
5e077f1
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
idoros May 1, 2022
a5d1b40
chore: remove custom state tag type (#2485)
idoros May 2, 2022
22df626
feat(cli): generate index file with other outputs; `IndexGenerator` r…
tzachbon May 2, 2022
6f3b5f2
chore(core): st-state with value interpolation intentions (#2486)
idoros May 8, 2022
6c87c5d
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
idoros May 8, 2022
82bdcae
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav May 12, 2022
31659fe
Merge branches 'ido/stylable-v5' and 'master' of github.com:wix/styla…
tomrav May 17, 2022
7221401
refactor(core)!: diagnostics severity and error codes (#2494)
tomrav May 17, 2022
0ae5e22
refactor: move prepare ast to transformer (#2496)
idoros May 18, 2022
4876192
Merge branches 'ido/stylable-v5' and 'master' of github.com:wix/styla…
tomrav May 19, 2022
970f1da
refactor(core)!: removed processed AST from meta (#2525)
tomrav May 23, 2022
f4120e8
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav May 29, 2022
6b254d0
fix(cli): no diagnostics emitted when building only ".d.ts" files
tomrav May 29, 2022
a35efee
Merge remote-tracking branch 'origin' into ido/stylable-v5
idoros May 31, 2022
8a8369f
chore(deps): upgrade deps to latest stable
tomrav May 31, 2022
46ff3cf
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav May 31, 2022
ac3b371
remove process-declaration-functions from index-internal
tomrav May 31, 2022
73e7538
feat(core): mixin reflection API (#2532)
idoros Jun 1, 2022
510085a
feat(core): override st-vars with transformer options (#2550)
idoros Jun 9, 2022
ef16339
feat(core): import analyze API (#2549)
idoros Jun 9, 2022
d6a7f17
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav Jun 26, 2022
bd67105
v5.0.0-rc.3
tomrav Jun 26, 2022
a84a631
fix requested stylable versions
tomrav Jun 26, 2022
89ea1cd
expose `createDefaultResolver` from core
idoros Jun 27, 2022
b31c447
feat(core): scope nest mixin rule api (#2581)
idoros Jun 28, 2022
88f2b72
feat(core): public API to get st-scope atrule (#2580)
idoros Jun 28, 2022
8359755
refactor!: simplify `stylable.transform` API (v5) (#2579)
idoros Jun 29, 2022
8576565
feat(core): public transform class API (#2578)
idoros Jun 29, 2022
19a805e
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav Jun 29, 2022
3d71176
chore(deps): upgrade to latest stable
tomrav Jun 29, 2022
60bbf07
v5.0.0-rc.4
tomrav Jun 29, 2022
d5dac15
chore: merge from master
barak007 Jul 6, 2022
f627323
Merge branch 'master' into ido/stylable-v5
idoros Jul 6, 2022
72bee89
5.0.0-rc.5
tomrav Jul 7, 2022
66da7cf
chore(deps): upgrade to latest stable
tomrav Jul 10, 2022
6a5e1b4
infra: add node v18 to test matrix
tomrav Jul 10, 2022
30a2617
Merge branch 'master' of github.com:wix/stylable into ido/stylable-v5
tomrav Jul 10, 2022
468a4cf
v5.0.0
tomrav Jul 10, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16, 14, 12]
node-version: [18, 16, 14]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
Expand Down
Loading