Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Type
/
to search
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
michaellgraves
/
JSONKit
Public
forked from
johnezang/JSONKit
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Commits
Breadcrumbs
History for
JSONKit
JSONKit.m
on
master
User selector
All users
All time
Commit history
Commits on Jul 12, 2012
Add a `#ifdef` to silence a `clang` static analyzer false positive warning.
Show description for 8215763
johnezang
committed
8215763
View commit details
Copy full SHA for 8215763
View code at this point
Browse repository at this point
Commits on Jun 24, 2012
Silences some warnings that newer versions of the compiler(s) complain about.
Show description for 5663f2d
johnezang
committed
5663f2d
View commit details
Copy full SHA for 5663f2d
View code at this point
Browse repository at this point
Commits on Mar 22, 2012
Minor changes to hashing and cache aging algorithms.
Show description for 02b983f
johnezang
committed
02b983f
View commit details
Copy full SHA for 02b983f
View code at this point
Browse repository at this point
Commits on Nov 17, 2011
Changed cast to NSDictionary per John's request
soffes
committed
395ab9a
View commit details
Copy full SHA for 395ab9a
View code at this point
Browse repository at this point
Surpress "multiple methods named" error
Show description for c494f8d
soffes
committed
c494f8d
View commit details
Copy full SHA for c494f8d
View code at this point
Browse repository at this point
Commits on Sep 23, 2011
Fixes issues #9, #15, #40, aka "crashes on 64-bit Lion / 10.7 ABI".
Show description for c2ef692
johnezang
committed
c2ef692
View commit details
Copy full SHA for c2ef692
View code at this point
Browse repository at this point
Merge pull request #46 from jparise/cache-collisions
Show description for 660546f
johnezang
committed
660546f
View commit details
Copy full SHA for 660546f
View code at this point
Browse repository at this point
Commits on Sep 22, 2011
Fix ambiguous method (initWithObjects:count:) compilation errors under Clang 3.0.
atnan
committed
3624e0f
View commit details
Copy full SHA for 3624e0f
View code at this point
Browse repository at this point
Commits on Aug 31, 2011
Use memcmp() instead of strncmp() to compare cache buckets.
Show description for c34c374
jparise
committed
c34c374
View commit details
Copy full SHA for c34c374
View code at this point
Browse repository at this point
Commits on Jun 16, 2011
Added note about Automatic Reference Counting (ARC) to README.md and some preprocessor-foo to JSONKit.m to check if JSONKit is being compiled with ARC / `-fobjc-arc` and #error if it is.
johnezang
committed
c2146ff
View commit details
Copy full SHA for c2146ff
View code at this point
Browse repository at this point
Commits on May 21, 2011
Moved the +load logic from JSONDecoder in to jk_collectionClassLoadTimeInitialization(). Missed the JSONDecoder +load stuff on the last commit. Related to issue #23.
johnezang
committed
cab1ea8
View commit details
Copy full SHA for cab1ea8
View code at this point
Browse repository at this point
Workarounds for issue #19 (the clang stuff) and issue #23. For issue #23, the code in the collection classes `+load` was removed and placed in a function with the `__attribute__ ((constructor))` a…
Show description for f403357
johnezang
committed
f403357
View commit details
Copy full SHA for f403357
View code at this point
Browse repository at this point
Commits on May 4, 2011
Pacify Xcode 4.1.
Jordan Breeding
committed
0ef031d
View commit details
Copy full SHA for 0ef031d
View code at this point
Browse repository at this point
Commits on May 2, 2011
Adds a serializing option to backslash escape forward slashes. This is for issue #21.
johnezang
committed
b8359c6
View commit details
Copy full SHA for b8359c6
View code at this point
Browse repository at this point
Commits on Apr 25, 2011
Change a NSException from exceptionWithName: to raise:. Closes #20.
johnezang
committed
e1cb174
View commit details
Copy full SHA for e1cb174
View code at this point
Browse repository at this point
Commits on Apr 22, 2011
Fixes a bug when removing items from a JKDictionary. Since JKDictionary is implemented using a hash table that uses linear probing, the removal function needs to "re-add" items that follow the rem…
Show description for 862fa4d
johnezang
committed
862fa4d
View commit details
Copy full SHA for 862fa4d
View code at this point
Browse repository at this point
Commits on Mar 31, 2011
When commiting the fix for hash % dictionary->capacity, some local, in progress edits made it in to the commit. This change backs them out.
johnezang
committed
2e6ccf4
View commit details
Copy full SHA for 2e6ccf4
View code at this point
Browse repository at this point
Commits on Mar 28, 2011
Fixes a bug when trying to retrieve a key from a dictionary that contains no items (div by zero: (keyHash % dictionary->capacity))
johnezang
committed
18a0a3a
View commit details
Copy full SHA for 18a0a3a
View code at this point
Browse repository at this point
Modified the JSONKit so that it is dual licensed under either the BSD or Apache v2.0 license. This was motivated by the discussion at https://github.com/facebook/three20/pull/465
johnezang
committed
3c6ff50
View commit details
Copy full SHA for 3c6ff50
View code at this point
Browse repository at this point
Commits on Mar 25, 2011
Two major changes and one minor change in this commit.
Show description for daf18f3
johnezang
committed
daf18f3
View commit details
Copy full SHA for daf18f3
View code at this point
Browse repository at this point
Commits on Mar 23, 2011
This commit includes the "Serialize a single NSString" feature/pull request from issue #4 and issue #11. Also replaces jk_encode() function with the JKSerializer class. This is a forward looking …
Show description for 8d0cb58
johnezang
committed
8d0cb58
View commit details
Copy full SHA for 8d0cb58
View code at this point
Browse repository at this point
Commits on Mar 22, 2011
Fix a couple of potential memory leaks in extremely unlikely and rare circumstances. Modify the primary parsing initial token matcher to use a if/else if/else if structure instead of switch()/case…
Show description for 2cf72ad
johnezang
committed
2cf72ad
View commit details
Copy full SHA for 2cf72ad
View code at this point
Browse repository at this point
Minor tidies.
johnezang
committed
c01ba7e
View commit details
Copy full SHA for c01ba7e
View code at this point
Browse repository at this point
Commits on Mar 21, 2011
Catch a few additional NSInvalidArgument exception cases that the Ccoca collection classes catch.
johnezang
committed
ff46986
View commit details
Copy full SHA for ff46986
View code at this point
Browse repository at this point
Minor change to the method swizzling functions. It doesn't make a difference in the way we use it, but this corrects it so that it is more 'correct'.
johnezang
committed
e414e1f
View commit details
Copy full SHA for e414e1f
View code at this point
Browse repository at this point
Changed the way jk_encode_write1 is handled so that the optimizer is able to do a better job. Also modified jk_encode_printf to fix a potential bug wrt/ va_end, and used a va_copy() to make a copy…
Show description for 1a8a0b8
johnezang
committed
1a8a0b8
View commit details
Copy full SHA for 1a8a0b8
View code at this point
Browse repository at this point
Commits on Mar 17, 2011
Update README.md with additional information and bring it up to date with the 1.4 changes.
johnezang
committed
f3ed599
View commit details
Copy full SHA for f3ed599
View code at this point
Browse repository at this point
Adds support for JKSerializeOptionPretty. Silences a clang analyzer warning.
johnezang
committed
f520db7
View commit details
Copy full SHA for f520db7
View code at this point
Browse repository at this point
Additional assertion checks wrt/ issue #9. Issue #9 looks like it could be a stack smash? The assertion checks make sure we're only copying legal values and not writing past a buffer by accident.
Show description for 7054853
johnezang
committed
7054853
View commit details
Copy full SHA for 7054853
View code at this point
Browse repository at this point
Commits on Mar 11, 2011
Fixes a bug. See issue #8.
johnezang
committed
524b9d7
View commit details
Copy full SHA for 524b9d7
View code at this point
Browse repository at this point
Commits on Mar 6, 2011
Significantly improve writing/serializing performance by caching the offset in the buffer for the last conversion for an object.
johnezang
committed
b243e08
View commit details
Copy full SHA for b243e08
View code at this point
Browse repository at this point
Commits on Mar 4, 2011
JSONKit v1.4 can now return mutable collection objects. See the CHANGELOG.md for more info.
johnezang
committed
33f8aea
View commit details
Copy full SHA for 33f8aea
View code at this point
Browse repository at this point
Commits on Mar 3, 2011
Some changes to the way cache aging is handled that improves L1 cache locality. Changes some of the convience functions so that they leave as little autorelease pending allocations hanging around …
Show description for b58e082
johnezang
committed
b58e082
View commit details
Copy full SHA for b58e082
View code at this point
Browse repository at this point
Commits on Feb 28, 2011
Initial push of JSONKit v1.4. May not be the final v1.4 commit. See CHANGELOG.md for info. The biggest news is JSONKit is anywhere from 30% to 60% faster than JSONKit v1.3 for reading / parsing …
johnezang
committed
e58f2a6
View commit details
Copy full SHA for e58f2a6
View code at this point
Browse repository at this point
Commits on Feb 21, 2011
Fixed a bug wrt/ not correctly handling < 0x20 characters in strings when the slow string parsing path was active.
johnezang
committed
b612564
View commit details
Copy full SHA for b612564
View code at this point
Browse repository at this point
Previous
Next
You can’t perform that action at this time.