Skip to content

Commit 159cd61

Browse files
committedMar 13, 2024
chore: add new package infra
1 parent 6470a70 commit 159cd61

38 files changed

+1292
-78
lines changed
 

Diff for: ‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ packages/schema-record/addon/
2525
packages/serializer/addon
2626
packages/store/addon
2727
packages/tracking/addon
28+
packages/ember/addon
2829

2930
# dependencies
3031
bower_components

Diff for: ‎packages/ember/.eslintrc.cjs

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
const imports = require('@warp-drive/internal-config/eslint/imports.cjs');
2+
const parser = require('@warp-drive/internal-config/eslint/parser.cjs');
3+
const isolation = require('@warp-drive/internal-config/eslint/isolation.cjs');
4+
const ignore = require('@warp-drive/internal-config/eslint/ignore.cjs');
5+
const node = require('@warp-drive/internal-config/eslint/node.cjs');
6+
const base = require('@warp-drive/internal-config/eslint/base.cjs');
7+
const typescript = require('@warp-drive/internal-config/eslint/typescript.cjs');
8+
9+
module.exports = {
10+
...parser.defaults(),
11+
12+
plugins: [...base.plugins(), ...imports.plugins()],
13+
extends: [...base.extend()],
14+
rules: Object.assign(
15+
base.rules(),
16+
imports.rules(),
17+
isolation.rules({
18+
allowedImports: ['@ember/debug'],
19+
}),
20+
{}
21+
),
22+
23+
ignorePatterns: ignore.ignoreRules(),
24+
25+
overrides: [node.config(), node.defaults(), typescript.defaults()],
26+
};

Diff for: ‎packages/ember/CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# @ember-data/request Changelog
2+
3+
For the full project changelog see [https://github.com/emberjs/data/blob/main/CHANGELOG.md](https://github.com/emberjs/data/blob/main/CHANGELOG.md)
4+
5+
## v5.3.1 (2024-02-24)
6+
7+
#### :memo: Documentation
8+
9+
* [#9072](https://github.com/emberjs/data/pull/9072) feat: advanced JSON:API queries & basic request example ([@runspired](https://github.com/runspired))
10+
* [#9068](https://github.com/emberjs/data/pull/9068) docs: unroll details sections ([@runspired](https://github.com/runspired))
11+
12+
#### :rocket: Enhancement
13+
14+
* [#9220](https://github.com/emberjs/data/pull/9220) feat: request infra improvements ([@runspired](https://github.com/runspired))
15+
* [#9072](https://github.com/emberjs/data/pull/9072) feat: advanced JSON:API queries & basic request example ([@runspired](https://github.com/runspired))
16+
* [#8935](https://github.com/emberjs/data/pull/8935) feat: (private) implement basic field support for schema-record ([@runspired](https://github.com/runspired))
17+
* [#8921](https://github.com/emberjs/data/pull/8921) feat: Improved Fetch Errors ([@runspired](https://github.com/runspired))
18+
19+
#### :bug: Bug Fix
20+
21+
* [#9203](https://github.com/emberjs/data/pull/9203) fix: Fetch handler hacks for Mirage (canary) ([@gitKrystan](https://github.com/gitKrystan))
22+
23+
#### :house: Internal
24+
25+
* [#9110](https://github.com/emberjs/data/pull/9110) Stricter typescript-eslint config ([@gitKrystan](https://github.com/gitKrystan))
26+
* [#9058](https://github.com/emberjs/data/pull/9058) Switch from eslint-plugin-prettier to running prettier directly ([@gitKrystan](https://github.com/gitKrystan))
27+
* [#9057](https://github.com/emberjs/data/pull/9057) Add eslint-plugin-n to eslint config for node files ([@gitKrystan](https://github.com/gitKrystan))
28+
* [#9055](https://github.com/emberjs/data/pull/9055) Fix ESLint for VSCode ([@gitKrystan](https://github.com/gitKrystan))
29+
* [#9051](https://github.com/emberjs/data/pull/9051) chore: use references for tsc, add checks to schema-record, bun to run scripts ([@runspired](https://github.com/runspired))
30+
* [#9032](https://github.com/emberjs/data/pull/9032) chore(types): split out lint and type commands to be per-package ([@runspired](https://github.com/runspired))
31+
* [#9050](https://github.com/emberjs/data/pull/9050) chore: use composite mode for tsc ([@runspired](https://github.com/runspired))
32+
* [#9049](https://github.com/emberjs/data/pull/9049) chore: incremental tsc builds ([@runspired](https://github.com/runspired))
33+
* [#9046](https://github.com/emberjs/data/pull/9046) chore: reduce number of things turbo builds for build ([@runspired](https://github.com/runspired))
34+
* [#9029](https://github.com/emberjs/data/pull/9029) chore: add @warp-drive/core as home for shared code ([@runspired](https://github.com/runspired))
35+
* [#9025](https://github.com/emberjs/data/pull/9025) chore: reconfigure request package type location ([@runspired](https://github.com/runspired))
36+
* [#8931](https://github.com/emberjs/data/pull/8931) chore: package infra for schema-record ([@runspired](https://github.com/runspired))
37+
* [#8906](https://github.com/emberjs/data/pull/8906) feat: expand mock-server capabilities, add to main tests ([@runspired](https://github.com/runspired))
38+
39+
#### Committers: (2)
40+
41+
Chris Thoburn ([@runspired](https://github.com/runspired))
42+
Krystan HuffMenne ([@gitKrystan](https://github.com/gitKrystan))
43+

Diff for: ‎packages/ember/LICENSE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
The MIT License (MIT)
2+
3+
Copyright (C) 2017-2023 Ember.js contributors
4+
Portions Copyright (C) 2011-2017 Tilde, Inc. and contributors.
5+
Portions Copyright (C) 2011 LivingSocial Inc.
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8+
9+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
10+
11+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Diff for: ‎packages/ember/NCC-1701-a-blue.svg

+4
Loading

Diff for: ‎packages/ember/NCC-1701-a.svg

+4
Loading

0 commit comments

Comments
 (0)